@openloaf-saas/sdk 0.1.39 → 0.1.40
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 +210 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1022,6 +1022,64 @@ declare class SaaSContract {
|
|
|
1022
1022
|
updatedAt?: string | undefined;
|
|
1023
1023
|
};
|
|
1024
1024
|
}>;
|
|
1025
|
+
readonly v3CapabilitiesOverview: Endpoint<{
|
|
1026
|
+
category?: "text" | "image" | "audio" | "video" | "tools" | undefined;
|
|
1027
|
+
} | undefined, {
|
|
1028
|
+
success: true;
|
|
1029
|
+
data: {
|
|
1030
|
+
feature: string;
|
|
1031
|
+
description: string;
|
|
1032
|
+
category: string;
|
|
1033
|
+
variants: {
|
|
1034
|
+
id: string;
|
|
1035
|
+
name: string;
|
|
1036
|
+
description: string;
|
|
1037
|
+
}[];
|
|
1038
|
+
}[];
|
|
1039
|
+
}>;
|
|
1040
|
+
readonly v3CapabilitiesDetail: (variantId: string) => Endpoint<void, {
|
|
1041
|
+
success: true;
|
|
1042
|
+
data: {
|
|
1043
|
+
feature: string;
|
|
1044
|
+
featureDescription: string;
|
|
1045
|
+
category: string;
|
|
1046
|
+
variantId: string;
|
|
1047
|
+
variantName: string;
|
|
1048
|
+
creditsPerCall: number;
|
|
1049
|
+
billingType: string;
|
|
1050
|
+
minMembershipLevel: string;
|
|
1051
|
+
invocation: {
|
|
1052
|
+
method: string;
|
|
1053
|
+
endpoint: string;
|
|
1054
|
+
contentType: string;
|
|
1055
|
+
authRequired: boolean;
|
|
1056
|
+
executionMode: string;
|
|
1057
|
+
bodyTemplate: Record<string, unknown>;
|
|
1058
|
+
};
|
|
1059
|
+
inputs: {
|
|
1060
|
+
role: string;
|
|
1061
|
+
accept: string;
|
|
1062
|
+
label: string;
|
|
1063
|
+
description: string;
|
|
1064
|
+
required: boolean;
|
|
1065
|
+
maxLength?: number | undefined;
|
|
1066
|
+
acceptFormats?: string[] | undefined;
|
|
1067
|
+
}[];
|
|
1068
|
+
params: {
|
|
1069
|
+
key: string;
|
|
1070
|
+
type: string;
|
|
1071
|
+
label: string;
|
|
1072
|
+
description: string;
|
|
1073
|
+
advanced: boolean;
|
|
1074
|
+
required: boolean;
|
|
1075
|
+
default?: unknown;
|
|
1076
|
+
options?: {
|
|
1077
|
+
value: string | number | boolean;
|
|
1078
|
+
label: string;
|
|
1079
|
+
}[] | undefined;
|
|
1080
|
+
}[];
|
|
1081
|
+
};
|
|
1082
|
+
}>;
|
|
1025
1083
|
readonly v3TextChat: Endpoint<{
|
|
1026
1084
|
[x: string]: unknown;
|
|
1027
1085
|
variant: string;
|
|
@@ -2622,6 +2680,66 @@ declare const aiEndpoints: {
|
|
|
2622
2680
|
updatedAt?: string | undefined;
|
|
2623
2681
|
};
|
|
2624
2682
|
}>;
|
|
2683
|
+
/** Get capabilities overview (simplified, for AI agent discovery). */
|
|
2684
|
+
readonly v3CapabilitiesOverview: Endpoint<{
|
|
2685
|
+
category?: "text" | "image" | "audio" | "video" | "tools" | undefined;
|
|
2686
|
+
} | undefined, {
|
|
2687
|
+
success: true;
|
|
2688
|
+
data: {
|
|
2689
|
+
feature: string;
|
|
2690
|
+
description: string;
|
|
2691
|
+
category: string;
|
|
2692
|
+
variants: {
|
|
2693
|
+
id: string;
|
|
2694
|
+
name: string;
|
|
2695
|
+
description: string;
|
|
2696
|
+
}[];
|
|
2697
|
+
}[];
|
|
2698
|
+
}>;
|
|
2699
|
+
/** Get variant detail by ID (full params, inputs, invocation info). */
|
|
2700
|
+
readonly v3CapabilitiesDetail: (variantId: string) => Endpoint<void, {
|
|
2701
|
+
success: true;
|
|
2702
|
+
data: {
|
|
2703
|
+
feature: string;
|
|
2704
|
+
featureDescription: string;
|
|
2705
|
+
category: string;
|
|
2706
|
+
variantId: string;
|
|
2707
|
+
variantName: string;
|
|
2708
|
+
creditsPerCall: number;
|
|
2709
|
+
billingType: string;
|
|
2710
|
+
minMembershipLevel: string;
|
|
2711
|
+
invocation: {
|
|
2712
|
+
method: string;
|
|
2713
|
+
endpoint: string;
|
|
2714
|
+
contentType: string;
|
|
2715
|
+
authRequired: boolean;
|
|
2716
|
+
executionMode: string;
|
|
2717
|
+
bodyTemplate: Record<string, unknown>;
|
|
2718
|
+
};
|
|
2719
|
+
inputs: {
|
|
2720
|
+
role: string;
|
|
2721
|
+
accept: string;
|
|
2722
|
+
label: string;
|
|
2723
|
+
description: string;
|
|
2724
|
+
required: boolean;
|
|
2725
|
+
maxLength?: number | undefined;
|
|
2726
|
+
acceptFormats?: string[] | undefined;
|
|
2727
|
+
}[];
|
|
2728
|
+
params: {
|
|
2729
|
+
key: string;
|
|
2730
|
+
type: string;
|
|
2731
|
+
label: string;
|
|
2732
|
+
description: string;
|
|
2733
|
+
advanced: boolean;
|
|
2734
|
+
required: boolean;
|
|
2735
|
+
default?: unknown;
|
|
2736
|
+
options?: {
|
|
2737
|
+
value: string | number | boolean;
|
|
2738
|
+
label: string;
|
|
2739
|
+
}[] | undefined;
|
|
2740
|
+
}[];
|
|
2741
|
+
};
|
|
2742
|
+
}>;
|
|
2625
2743
|
/** Submit a v3 text chat request (OpenAI-compatible, streaming SSE or JSON). */
|
|
2626
2744
|
readonly v3TextChat: Endpoint<{
|
|
2627
2745
|
[x: string]: unknown;
|
|
@@ -4521,6 +4639,74 @@ declare const v3ToolExecuteResponseSchema: z.ZodObject<{
|
|
|
4521
4639
|
success: z.ZodLiteral<true>;
|
|
4522
4640
|
data: z.ZodUnknown;
|
|
4523
4641
|
}, z.core.$strip>;
|
|
4642
|
+
/** Capabilities overview response. */
|
|
4643
|
+
declare const v3CapabilitiesOverviewResponseSchema: z.ZodObject<{
|
|
4644
|
+
success: z.ZodLiteral<true>;
|
|
4645
|
+
data: z.ZodArray<z.ZodObject<{
|
|
4646
|
+
feature: z.ZodString;
|
|
4647
|
+
description: z.ZodString;
|
|
4648
|
+
category: z.ZodString;
|
|
4649
|
+
variants: z.ZodArray<z.ZodObject<{
|
|
4650
|
+
id: z.ZodString;
|
|
4651
|
+
name: z.ZodString;
|
|
4652
|
+
description: z.ZodString;
|
|
4653
|
+
}, z.core.$strip>>;
|
|
4654
|
+
}, z.core.$strip>>;
|
|
4655
|
+
}, z.core.$strip>;
|
|
4656
|
+
/** Overview request (optional category query param). */
|
|
4657
|
+
declare const v3CapabilitiesOverviewRequestSchema: z.ZodOptional<z.ZodObject<{
|
|
4658
|
+
category: z.ZodOptional<z.ZodEnum<{
|
|
4659
|
+
text: "text";
|
|
4660
|
+
image: "image";
|
|
4661
|
+
audio: "audio";
|
|
4662
|
+
video: "video";
|
|
4663
|
+
tools: "tools";
|
|
4664
|
+
}>>;
|
|
4665
|
+
}, z.core.$strip>>;
|
|
4666
|
+
/** Capabilities detail response. */
|
|
4667
|
+
declare const v3CapabilitiesDetailResponseSchema: z.ZodObject<{
|
|
4668
|
+
success: z.ZodLiteral<true>;
|
|
4669
|
+
data: z.ZodObject<{
|
|
4670
|
+
feature: z.ZodString;
|
|
4671
|
+
featureDescription: z.ZodString;
|
|
4672
|
+
category: z.ZodString;
|
|
4673
|
+
variantId: z.ZodString;
|
|
4674
|
+
variantName: z.ZodString;
|
|
4675
|
+
creditsPerCall: z.ZodNumber;
|
|
4676
|
+
billingType: z.ZodString;
|
|
4677
|
+
minMembershipLevel: z.ZodString;
|
|
4678
|
+
invocation: z.ZodObject<{
|
|
4679
|
+
method: z.ZodString;
|
|
4680
|
+
endpoint: z.ZodString;
|
|
4681
|
+
contentType: z.ZodString;
|
|
4682
|
+
authRequired: z.ZodBoolean;
|
|
4683
|
+
executionMode: z.ZodString;
|
|
4684
|
+
bodyTemplate: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
4685
|
+
}, z.core.$strip>;
|
|
4686
|
+
inputs: z.ZodArray<z.ZodObject<{
|
|
4687
|
+
role: z.ZodString;
|
|
4688
|
+
accept: z.ZodString;
|
|
4689
|
+
label: z.ZodString;
|
|
4690
|
+
description: z.ZodString;
|
|
4691
|
+
required: z.ZodBoolean;
|
|
4692
|
+
maxLength: z.ZodOptional<z.ZodNumber>;
|
|
4693
|
+
acceptFormats: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4694
|
+
}, z.core.$strip>>;
|
|
4695
|
+
params: z.ZodArray<z.ZodObject<{
|
|
4696
|
+
key: z.ZodString;
|
|
4697
|
+
type: z.ZodString;
|
|
4698
|
+
label: z.ZodString;
|
|
4699
|
+
description: z.ZodString;
|
|
4700
|
+
default: z.ZodOptional<z.ZodUnknown>;
|
|
4701
|
+
options: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4702
|
+
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>;
|
|
4703
|
+
label: z.ZodString;
|
|
4704
|
+
}, z.core.$strip>>>;
|
|
4705
|
+
advanced: z.ZodBoolean;
|
|
4706
|
+
required: z.ZodBoolean;
|
|
4707
|
+
}, z.core.$strip>>;
|
|
4708
|
+
}, z.core.$strip>;
|
|
4709
|
+
}, z.core.$strip>;
|
|
4524
4710
|
/** Single param schema entry (UI metadata). */
|
|
4525
4711
|
type V3ParamSchema = z.infer<typeof paramSchemaSchema>;
|
|
4526
4712
|
/** Input slot declaration. */
|
|
@@ -4569,6 +4755,12 @@ type V3TextChatRequest = z.infer<typeof v3TextChatRequestSchema>;
|
|
|
4569
4755
|
type V3ToolExecuteRequest = z.infer<typeof v3ToolExecuteRequestSchema>;
|
|
4570
4756
|
/** v3 tool execute response. */
|
|
4571
4757
|
type V3ToolExecuteResponse = z.infer<typeof v3ToolExecuteResponseSchema>;
|
|
4758
|
+
/** Capabilities overview request. */
|
|
4759
|
+
type V3CapabilitiesOverviewRequest = z.infer<typeof v3CapabilitiesOverviewRequestSchema>;
|
|
4760
|
+
/** Capabilities overview response. */
|
|
4761
|
+
type V3CapabilitiesOverviewResponse = z.infer<typeof v3CapabilitiesOverviewResponseSchema>;
|
|
4762
|
+
/** Capabilities detail response. */
|
|
4763
|
+
type V3CapabilitiesDetailResponse = z.infer<typeof v3CapabilitiesDetailResponseSchema>;
|
|
4572
4764
|
/** Schema for task status SSE event data (lightweight, only taskId + status). */
|
|
4573
4765
|
declare const v3TaskSSEEventSchema: z.ZodObject<{
|
|
4574
4766
|
taskId: z.ZodString;
|
|
@@ -4724,6 +4916,16 @@ declare class AiClient {
|
|
|
4724
4916
|
updatedAt?: string | undefined;
|
|
4725
4917
|
};
|
|
4726
4918
|
}>;
|
|
4919
|
+
/**
|
|
4920
|
+
* Fetch capabilities overview (simplified list for AI agent discovery).
|
|
4921
|
+
* 公开接口,无需认证。支持 category 过滤。
|
|
4922
|
+
*/
|
|
4923
|
+
capabilitiesOverview(category?: "image" | "video" | "audio" | "text" | "tools"): Promise<V3CapabilitiesOverviewResponse>;
|
|
4924
|
+
/**
|
|
4925
|
+
* Fetch variant detail by ID (full params, inputs, invocation info).
|
|
4926
|
+
* 公开接口,无需认证。
|
|
4927
|
+
*/
|
|
4928
|
+
capabilitiesDetail(variantId: string): Promise<V3CapabilitiesDetailResponse>;
|
|
4727
4929
|
/** Fetch image capabilities (features + variants) via v3 API. */
|
|
4728
4930
|
imageCapabilities(): Promise<{
|
|
4729
4931
|
success: true;
|
|
@@ -6176,6 +6378,9 @@ type index$9_MediaFeatureId = MediaFeatureId;
|
|
|
6176
6378
|
type index$9_ModelProviderId = ModelProviderId;
|
|
6177
6379
|
type index$9_V3BasicSuccess = V3BasicSuccess;
|
|
6178
6380
|
type index$9_V3CapabilitiesData = V3CapabilitiesData;
|
|
6381
|
+
type index$9_V3CapabilitiesDetailResponse = V3CapabilitiesDetailResponse;
|
|
6382
|
+
type index$9_V3CapabilitiesOverviewRequest = V3CapabilitiesOverviewRequest;
|
|
6383
|
+
type index$9_V3CapabilitiesOverviewResponse = V3CapabilitiesOverviewResponse;
|
|
6179
6384
|
type index$9_V3CapabilitiesResponse = V3CapabilitiesResponse;
|
|
6180
6385
|
type index$9_V3CreditEstimate = V3CreditEstimate;
|
|
6181
6386
|
type index$9_V3EstimatePriceRequest = V3EstimatePriceRequest;
|
|
@@ -6230,6 +6435,9 @@ declare const index$9_inputSlotSchema: typeof inputSlotSchema;
|
|
|
6230
6435
|
declare const index$9_paramSchemaSchema: typeof paramSchemaSchema;
|
|
6231
6436
|
declare const index$9_v3BasicSuccessSchema: typeof v3BasicSuccessSchema;
|
|
6232
6437
|
declare const index$9_v3CapabilitiesDataSchema: typeof v3CapabilitiesDataSchema;
|
|
6438
|
+
declare const index$9_v3CapabilitiesDetailResponseSchema: typeof v3CapabilitiesDetailResponseSchema;
|
|
6439
|
+
declare const index$9_v3CapabilitiesOverviewRequestSchema: typeof v3CapabilitiesOverviewRequestSchema;
|
|
6440
|
+
declare const index$9_v3CapabilitiesOverviewResponseSchema: typeof v3CapabilitiesOverviewResponseSchema;
|
|
6233
6441
|
declare const index$9_v3CapabilitiesResponseSchema: typeof v3CapabilitiesResponseSchema;
|
|
6234
6442
|
declare const index$9_v3CreditEstimateSchema: typeof v3CreditEstimateSchema;
|
|
6235
6443
|
declare const index$9_v3EstimatePriceRequestSchema: typeof v3EstimatePriceRequestSchema;
|
|
@@ -6252,7 +6460,7 @@ declare const index$9_v3ToolExecuteResponseSchema: typeof v3ToolExecuteResponseS
|
|
|
6252
6460
|
declare const index$9_v3UploadResponseSchema: typeof v3UploadResponseSchema;
|
|
6253
6461
|
declare const index$9_v3VariantSchema: typeof v3VariantSchema;
|
|
6254
6462
|
declare namespace index$9 {
|
|
6255
|
-
export { index$9_AI_MODEL_CAPABILITY_INPUT_KEYS as AI_MODEL_CAPABILITY_INPUT_KEYS, index$9_AI_MODEL_CAPABILITY_OUTPUT_KEYS as AI_MODEL_CAPABILITY_OUTPUT_KEYS, index$9_AI_MODEL_TAGS as AI_MODEL_TAGS, index$9_AI_MODEL_TAG_LABELS as AI_MODEL_TAG_LABELS, type index$9_AiChatCompletionsRequest as AiChatCompletionsRequest, type index$9_AiChatModel as AiChatModel, type index$9_AiChatModelsResponse as AiChatModelsResponse, type index$9_AiChatSessionMetadata as AiChatSessionMetadata, index$9_AiClient as AiClient, type index$9_AiClientMetadata as AiClientMetadata, type index$9_AiFileUploadOptions as AiFileUploadOptions, type index$9_AiFileUploadResponse as AiFileUploadResponse, type index$9_AiModel as AiModel, type index$9_AiModelCapabilities as AiModelCapabilities, type index$9_AiModelCapabilitiesInput as AiModelCapabilitiesInput, type index$9_AiModelCapabilitiesOutput as AiModelCapabilitiesOutput, type index$9_AiModelCapabilityInputKey as AiModelCapabilityInputKey, type index$9_AiModelCapabilityOutputKey as AiModelCapabilityOutputKey, type index$9_AiModelTag as AiModelTag, type index$9_AiModelsUpdatedAtData as AiModelsUpdatedAtData, type index$9_AiModelsUpdatedAtResponse as AiModelsUpdatedAtResponse, type index$9_AiProviderTemplate as AiProviderTemplate, type index$9_AiProviderTemplateModel as AiProviderTemplateModel, type index$9_AiProviderTemplatesResponse as AiProviderTemplatesResponse, type index$9_AiResponsesRequest as AiResponsesRequest, index$9_MEDIA_FEATURES as MEDIA_FEATURES, index$9_MODEL_PROVIDERS as MODEL_PROVIDERS, type index$9_MediaFeatureId as MediaFeatureId, type index$9_ModelProviderId as ModelProviderId, type index$9_V3BasicSuccess as V3BasicSuccess, type index$9_V3CapabilitiesData as V3CapabilitiesData, type index$9_V3CapabilitiesResponse as V3CapabilitiesResponse, type index$9_V3CreditEstimate as V3CreditEstimate, type index$9_V3EstimatePriceRequest as V3EstimatePriceRequest, type index$9_V3EstimatePriceResponse as V3EstimatePriceResponse, type index$9_V3Feature as V3Feature, type index$9_V3GenerateRequest as V3GenerateRequest, type index$9_V3InputSlot as V3InputSlot, type index$9_V3ParamSchema as V3ParamSchema, type index$9_V3QueueRequest as V3QueueRequest, type index$9_V3QueueResponse as V3QueueResponse, type index$9_V3QueueTicket as V3QueueTicket, type index$9_V3TaskCreated as V3TaskCreated, type index$9_V3TaskGroupResponse as V3TaskGroupResponse, type index$9_V3TaskItem as V3TaskItem, type index$9_V3TaskResponse as V3TaskResponse, type index$9_V3TaskSSEEvent as V3TaskSSEEvent, type index$9_V3TextChatRequest as V3TextChatRequest, type index$9_V3TextGenerateRequest as V3TextGenerateRequest, type index$9_V3TextGenerateResponse as V3TextGenerateResponse, type index$9_V3ToolExecuteRequest as V3ToolExecuteRequest, type index$9_V3ToolExecuteResponse as V3ToolExecuteResponse, type index$9_V3UploadResponse as V3UploadResponse, type index$9_V3Variant as V3Variant, index$9_aiChatCompletionsRequestSchema as aiChatCompletionsRequestSchema, index$9_aiChatModelSchema as aiChatModelSchema, index$9_aiChatModelsPayloadSchema as aiChatModelsPayloadSchema, index$9_aiChatModelsResponseSchema as aiChatModelsResponseSchema, index$9_aiChatModelsSuccessSchema as aiChatModelsSuccessSchema, index$9_aiChatSessionMetadataSchema as aiChatSessionMetadataSchema, index$9_aiClientMetadataSchema as aiClientMetadataSchema, index$9_aiEndpoints as aiEndpoints, index$9_aiErrorResponseSchema as aiErrorResponseSchema, index$9_aiModelCapabilitiesInputSchema as aiModelCapabilitiesInputSchema, index$9_aiModelCapabilitiesOutputSchema as aiModelCapabilitiesOutputSchema, index$9_aiModelCapabilitiesSchema as aiModelCapabilitiesSchema, index$9_aiModelCapabilityCommonSchema as aiModelCapabilityCommonSchema, index$9_aiModelParameterFieldSchema as aiModelParameterFieldSchema, index$9_aiModelParamsSchema as aiModelParamsSchema, index$9_aiModelSchema as aiModelSchema, index$9_aiModelsRequestSchema as aiModelsRequestSchema, index$9_aiModelsUpdatedAtDataSchema as aiModelsUpdatedAtDataSchema, index$9_aiModelsUpdatedAtResponseSchema as aiModelsUpdatedAtResponseSchema, index$9_aiModelsUpdatedAtSuccessSchema as aiModelsUpdatedAtSuccessSchema, index$9_aiProviderTemplateModelSchema as aiProviderTemplateModelSchema, index$9_aiProviderTemplateSchema as aiProviderTemplateSchema, index$9_aiProviderTemplatesPayloadSchema as aiProviderTemplatesPayloadSchema, index$9_aiProviderTemplatesRequestSchema as aiProviderTemplatesRequestSchema, index$9_aiProviderTemplatesResponseSchema as aiProviderTemplatesResponseSchema, index$9_aiProviderTemplatesSuccessSchema as aiProviderTemplatesSuccessSchema, index$9_aiResponsesRequestSchema as aiResponsesRequestSchema, index$9_inputSlotSchema as inputSlotSchema, index$9_paramSchemaSchema as paramSchemaSchema, index$9_v3BasicSuccessSchema as v3BasicSuccessSchema, index$9_v3CapabilitiesDataSchema as v3CapabilitiesDataSchema, index$9_v3CapabilitiesResponseSchema as v3CapabilitiesResponseSchema, index$9_v3CreditEstimateSchema as v3CreditEstimateSchema, index$9_v3EstimatePriceRequestSchema as v3EstimatePriceRequestSchema, index$9_v3EstimatePriceResponseSchema as v3EstimatePriceResponseSchema, index$9_v3FeatureSchema as v3FeatureSchema, index$9_v3GenerateRequestSchema as v3GenerateRequestSchema, index$9_v3QueueRequestSchema as v3QueueRequestSchema, index$9_v3QueueResponseSchema as v3QueueResponseSchema, index$9_v3QueueTicketSchema as v3QueueTicketSchema, index$9_v3TaskCreatedSchema as v3TaskCreatedSchema, index$9_v3TaskGroupResponseSchema as v3TaskGroupResponseSchema, index$9_v3TaskItemSchema as v3TaskItemSchema, index$9_v3TaskResponseSchema as v3TaskResponseSchema, index$9_v3TaskSSEEventSchema as v3TaskSSEEventSchema, index$9_v3TextChatRequestSchema as v3TextChatRequestSchema, index$9_v3TextGenerateRequestSchema as v3TextGenerateRequestSchema, index$9_v3TextGenerateResponseSchema as v3TextGenerateResponseSchema, index$9_v3ToolExecuteRequestSchema as v3ToolExecuteRequestSchema, index$9_v3ToolExecuteResponseSchema as v3ToolExecuteResponseSchema, index$9_v3UploadResponseSchema as v3UploadResponseSchema, index$9_v3VariantSchema as v3VariantSchema };
|
|
6463
|
+
export { index$9_AI_MODEL_CAPABILITY_INPUT_KEYS as AI_MODEL_CAPABILITY_INPUT_KEYS, index$9_AI_MODEL_CAPABILITY_OUTPUT_KEYS as AI_MODEL_CAPABILITY_OUTPUT_KEYS, index$9_AI_MODEL_TAGS as AI_MODEL_TAGS, index$9_AI_MODEL_TAG_LABELS as AI_MODEL_TAG_LABELS, type index$9_AiChatCompletionsRequest as AiChatCompletionsRequest, type index$9_AiChatModel as AiChatModel, type index$9_AiChatModelsResponse as AiChatModelsResponse, type index$9_AiChatSessionMetadata as AiChatSessionMetadata, index$9_AiClient as AiClient, type index$9_AiClientMetadata as AiClientMetadata, type index$9_AiFileUploadOptions as AiFileUploadOptions, type index$9_AiFileUploadResponse as AiFileUploadResponse, type index$9_AiModel as AiModel, type index$9_AiModelCapabilities as AiModelCapabilities, type index$9_AiModelCapabilitiesInput as AiModelCapabilitiesInput, type index$9_AiModelCapabilitiesOutput as AiModelCapabilitiesOutput, type index$9_AiModelCapabilityInputKey as AiModelCapabilityInputKey, type index$9_AiModelCapabilityOutputKey as AiModelCapabilityOutputKey, type index$9_AiModelTag as AiModelTag, type index$9_AiModelsUpdatedAtData as AiModelsUpdatedAtData, type index$9_AiModelsUpdatedAtResponse as AiModelsUpdatedAtResponse, type index$9_AiProviderTemplate as AiProviderTemplate, type index$9_AiProviderTemplateModel as AiProviderTemplateModel, type index$9_AiProviderTemplatesResponse as AiProviderTemplatesResponse, type index$9_AiResponsesRequest as AiResponsesRequest, index$9_MEDIA_FEATURES as MEDIA_FEATURES, index$9_MODEL_PROVIDERS as MODEL_PROVIDERS, type index$9_MediaFeatureId as MediaFeatureId, type index$9_ModelProviderId as ModelProviderId, type index$9_V3BasicSuccess as V3BasicSuccess, type index$9_V3CapabilitiesData as V3CapabilitiesData, type index$9_V3CapabilitiesDetailResponse as V3CapabilitiesDetailResponse, type index$9_V3CapabilitiesOverviewRequest as V3CapabilitiesOverviewRequest, type index$9_V3CapabilitiesOverviewResponse as V3CapabilitiesOverviewResponse, type index$9_V3CapabilitiesResponse as V3CapabilitiesResponse, type index$9_V3CreditEstimate as V3CreditEstimate, type index$9_V3EstimatePriceRequest as V3EstimatePriceRequest, type index$9_V3EstimatePriceResponse as V3EstimatePriceResponse, type index$9_V3Feature as V3Feature, type index$9_V3GenerateRequest as V3GenerateRequest, type index$9_V3InputSlot as V3InputSlot, type index$9_V3ParamSchema as V3ParamSchema, type index$9_V3QueueRequest as V3QueueRequest, type index$9_V3QueueResponse as V3QueueResponse, type index$9_V3QueueTicket as V3QueueTicket, type index$9_V3TaskCreated as V3TaskCreated, type index$9_V3TaskGroupResponse as V3TaskGroupResponse, type index$9_V3TaskItem as V3TaskItem, type index$9_V3TaskResponse as V3TaskResponse, type index$9_V3TaskSSEEvent as V3TaskSSEEvent, type index$9_V3TextChatRequest as V3TextChatRequest, type index$9_V3TextGenerateRequest as V3TextGenerateRequest, type index$9_V3TextGenerateResponse as V3TextGenerateResponse, type index$9_V3ToolExecuteRequest as V3ToolExecuteRequest, type index$9_V3ToolExecuteResponse as V3ToolExecuteResponse, type index$9_V3UploadResponse as V3UploadResponse, type index$9_V3Variant as V3Variant, index$9_aiChatCompletionsRequestSchema as aiChatCompletionsRequestSchema, index$9_aiChatModelSchema as aiChatModelSchema, index$9_aiChatModelsPayloadSchema as aiChatModelsPayloadSchema, index$9_aiChatModelsResponseSchema as aiChatModelsResponseSchema, index$9_aiChatModelsSuccessSchema as aiChatModelsSuccessSchema, index$9_aiChatSessionMetadataSchema as aiChatSessionMetadataSchema, index$9_aiClientMetadataSchema as aiClientMetadataSchema, index$9_aiEndpoints as aiEndpoints, index$9_aiErrorResponseSchema as aiErrorResponseSchema, index$9_aiModelCapabilitiesInputSchema as aiModelCapabilitiesInputSchema, index$9_aiModelCapabilitiesOutputSchema as aiModelCapabilitiesOutputSchema, index$9_aiModelCapabilitiesSchema as aiModelCapabilitiesSchema, index$9_aiModelCapabilityCommonSchema as aiModelCapabilityCommonSchema, index$9_aiModelParameterFieldSchema as aiModelParameterFieldSchema, index$9_aiModelParamsSchema as aiModelParamsSchema, index$9_aiModelSchema as aiModelSchema, index$9_aiModelsRequestSchema as aiModelsRequestSchema, index$9_aiModelsUpdatedAtDataSchema as aiModelsUpdatedAtDataSchema, index$9_aiModelsUpdatedAtResponseSchema as aiModelsUpdatedAtResponseSchema, index$9_aiModelsUpdatedAtSuccessSchema as aiModelsUpdatedAtSuccessSchema, index$9_aiProviderTemplateModelSchema as aiProviderTemplateModelSchema, index$9_aiProviderTemplateSchema as aiProviderTemplateSchema, index$9_aiProviderTemplatesPayloadSchema as aiProviderTemplatesPayloadSchema, index$9_aiProviderTemplatesRequestSchema as aiProviderTemplatesRequestSchema, index$9_aiProviderTemplatesResponseSchema as aiProviderTemplatesResponseSchema, index$9_aiProviderTemplatesSuccessSchema as aiProviderTemplatesSuccessSchema, index$9_aiResponsesRequestSchema as aiResponsesRequestSchema, index$9_inputSlotSchema as inputSlotSchema, index$9_paramSchemaSchema as paramSchemaSchema, index$9_v3BasicSuccessSchema as v3BasicSuccessSchema, index$9_v3CapabilitiesDataSchema as v3CapabilitiesDataSchema, index$9_v3CapabilitiesDetailResponseSchema as v3CapabilitiesDetailResponseSchema, index$9_v3CapabilitiesOverviewRequestSchema as v3CapabilitiesOverviewRequestSchema, index$9_v3CapabilitiesOverviewResponseSchema as v3CapabilitiesOverviewResponseSchema, index$9_v3CapabilitiesResponseSchema as v3CapabilitiesResponseSchema, index$9_v3CreditEstimateSchema as v3CreditEstimateSchema, index$9_v3EstimatePriceRequestSchema as v3EstimatePriceRequestSchema, index$9_v3EstimatePriceResponseSchema as v3EstimatePriceResponseSchema, index$9_v3FeatureSchema as v3FeatureSchema, index$9_v3GenerateRequestSchema as v3GenerateRequestSchema, index$9_v3QueueRequestSchema as v3QueueRequestSchema, index$9_v3QueueResponseSchema as v3QueueResponseSchema, index$9_v3QueueTicketSchema as v3QueueTicketSchema, index$9_v3TaskCreatedSchema as v3TaskCreatedSchema, index$9_v3TaskGroupResponseSchema as v3TaskGroupResponseSchema, index$9_v3TaskItemSchema as v3TaskItemSchema, index$9_v3TaskResponseSchema as v3TaskResponseSchema, index$9_v3TaskSSEEventSchema as v3TaskSSEEventSchema, index$9_v3TextChatRequestSchema as v3TextChatRequestSchema, index$9_v3TextGenerateRequestSchema as v3TextGenerateRequestSchema, index$9_v3TextGenerateResponseSchema as v3TextGenerateResponseSchema, index$9_v3ToolExecuteRequestSchema as v3ToolExecuteRequestSchema, index$9_v3ToolExecuteResponseSchema as v3ToolExecuteResponseSchema, index$9_v3UploadResponseSchema as v3UploadResponseSchema, index$9_v3VariantSchema as v3VariantSchema };
|
|
6256
6464
|
}
|
|
6257
6465
|
|
|
6258
6466
|
declare const aiToolsEndpoints: {
|
|
@@ -8436,4 +8644,4 @@ declare function createTrpcClient(options: TrpcClientOptions): _trpc_client.TRPC
|
|
|
8436
8644
|
transformer: false;
|
|
8437
8645
|
}, _trpc_server.TRPCDecorateCreateRouterOptions<_trpc_server.TRPCCreateRouterOptions>>>;
|
|
8438
8646
|
|
|
8439
|
-
export { AI_MODEL_CAPABILITY_INPUT_KEYS, AI_MODEL_CAPABILITY_OUTPUT_KEYS, AI_MODEL_TAGS, AI_MODEL_TAG_LABELS, type AiChatCompletionsRequest, type AiChatModel, type AiChatModelsResponse, type AiChatSessionMetadata, AiClient, type AiClientMetadata, type AiFileUploadOptions, type AiFileUploadResponse, type AiModel, type AiModelCapabilities, type AiModelCapabilitiesInput, type AiModelCapabilitiesOutput, type AiModelCapabilityInputKey, type AiModelCapabilityOutputKey, type AiModelTag, type AiModelsUpdatedAtData, type AiModelsUpdatedAtResponse, type AiProviderTemplate, type AiProviderTemplateModel, type AiProviderTemplatesResponse, type AiResponsesRequest, AiToolsClient, 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, type CreateEmbedOptions, type EmbedEventMap, type EmbedInstance, 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, MEDIA_FEATURES, MODEL_PROVIDERS, type MarketSkillEntry, type MediaFeatureId, type ModelProviderId, type OrderStatusRequest, type OrderStatusResponse, PaymentClient, type RechargeRequest, type RechargeResponse, type RecommendActionsRequest, type RecommendActionsResponse, RedeemCodeClient, type RedeemCodeRecordItem, type RedeemCodeRecordsRequest, type RedeemCodeRecordsResponse, type RedeemCodeRedeemRequest, type RedeemCodeRedeemResponse, type RedeemCodeSummary, type RefundRequest, type RefundResponse, type ResponseType, SaaSClient, type SaaSClientOptions, SaaSContract, SaaSHttpError, SaaSNetworkError, SaaSSchemaError, type SkillArchiveFormat, type SkillListItem, type SkillMarketCheckUpdatesRequest, type SkillMarketCheckUpdatesResponse, SkillMarketClient, type SkillMarketDetailResponse, type SkillMarketListRequest, type SkillMarketListResponse, type SkillMarketRateRequest, type SkillMarketRateResponse, type SkillOwnerSummary, type SkillSource, type SkillStatus, type SkillType, type SkillVersionSummary, type SkillVisibility, SkillsClient, type SkillsDetailResponse, type SkillsDownloadResponse, type SkillsListRequest, type SkillsListResponse, type SubscribeRequest, type SubscribeResponse, type SummarizeRequest, type SummarizeResponse, type TrpcClientOptions, type UpgradeRequest, type UpgradeResponse, UserClient, type UserMembershipLevel, type UserSelf, type UserSelfRequest, type UserSelfResponse, type V3BasicSuccess, type V3CapabilitiesData, type V3CapabilitiesResponse, type V3CreditEstimate, type V3EstimatePriceRequest, type V3EstimatePriceResponse, type V3Feature, type V3GenerateRequest, type V3InputSlot, type V3ParamSchema, type V3QueueRequest, type V3QueueResponse, type V3QueueTicket, type V3TaskCreated, type V3TaskGroupResponse, type V3TaskItem, type V3TaskResponse, type V3TaskSSEEvent, type V3TextChatRequest, type V3TextGenerateRequest, type V3TextGenerateResponse, type V3ToolExecuteRequest, type V3ToolExecuteResponse, type V3UploadResponse, type V3Variant, aiChatCompletionsRequestSchema, aiChatModelSchema, aiChatModelsPayloadSchema, aiChatModelsResponseSchema, aiChatModelsSuccessSchema, aiChatSessionMetadataSchema, aiClientMetadataSchema, aiEndpoints, aiErrorResponseSchema, aiModelCapabilitiesInputSchema, aiModelCapabilitiesOutputSchema, aiModelCapabilitiesSchema, aiModelCapabilityCommonSchema, aiModelParameterFieldSchema, aiModelParamsSchema, aiModelSchema, aiModelsRequestSchema, aiModelsUpdatedAtDataSchema, aiModelsUpdatedAtResponseSchema, aiModelsUpdatedAtSuccessSchema, index$9 as aiModule, aiProviderTemplateModelSchema, aiProviderTemplateSchema, aiProviderTemplatesPayloadSchema, aiProviderTemplatesRequestSchema, aiProviderTemplatesResponseSchema, aiProviderTemplatesSuccessSchema, aiResponsesRequestSchema, aiToolsEndpoints, index$8 as aiToolsModule, analyzeSkillsRequestSchema, analyzeSkillsResponseSchema, authEndpoints, authExchangeRequestSchema, authExchangeResponseSchema, authLogoutRequestSchema, authLogoutResponseSchema, index$7 as authModule, authRefreshErrorSchema, authRefreshRequestSchema, authRefreshResponseSchema, authRefreshSuccessSchema, authRefreshUserSchema, auxiliaryEndpoints, auxiliaryInferRequestSchema, auxiliaryInferResponseSchema, index$6 as auxiliaryModule, auxiliaryQuotaResponseSchema, contract, createEmbed, createPricingEmbed, createRechargeEmbed, createTrpcClient, feedbackDetailPayloadSchema, feedbackDetailRequestSchema, feedbackDetailResponseSchema, feedbackEndpoints, feedbackItemSchema, feedbackListPayloadSchema, feedbackListRequestSchema, feedbackListResponseSchema, index$5 as feedbackModule, feedbackSaasStatusSchema, feedbackSourceSchema, feedbackSubmitErrorSchema, feedbackSubmitRequestSchema, feedbackSubmitResponseSchema, feedbackTypeSchema, inputSlotSchema, marketSkillEntrySchema, mergeHeaders, normalizeHeaders, orderStatusRequestSchema, orderStatusResponseSchema, paramSchemaSchema, paymentEndpoints, index$4 as paymentModule, rechargeRequestSchema, rechargeResponseSchema, recommendActionsRequestSchema, recommendActionsResponseSchema, redeemCodeEndpoints, redeemCodeMembershipLevelSchema, index$3 as redeemCodeModule, redeemCodeRecordItemSchema, redeemCodeRecordsRequestSchema, redeemCodeRecordsResponseSchema, redeemCodeRedeemRequestSchema, redeemCodeRedeemResponseSchema, redeemCodeSummarySchema, refundRequestSchema, refundResponseSchema, request, skillArchiveFormatSchema, skillListItemSchema, skillMarketCheckUpdatesRequestSchema, skillMarketCheckUpdatesResponseSchema, skillMarketDetailResponseSchema, skillMarketEndpoints, skillMarketListRequestSchema, skillMarketListResponseSchema, index$2 as skillMarketModule, skillMarketRateRequestSchema, skillMarketRateResponseSchema, skillOwnerSummarySchema, skillSourceSchema, skillStatusSchema, skillTypeSchema, skillVersionSummarySchema, skillVisibilitySchema, skillsDetailRequestSchema, skillsDetailResponseSchema, skillsDownloadResponseSchema, skillsEndpoints, skillsListRequestSchema, skillsListResponseSchema, index$1 as skillsModule, subscribeRequestSchema, subscribeResponseSchema, summarizeRequestSchema, summarizeResponseSchema, upgradeRequestSchema, upgradeResponseSchema, userEndpoints, userMembershipLevelSchema, index as userModule, userSelfRequestSchema, userSelfResponseSchema, userSelfSchema, v3BasicSuccessSchema, v3CapabilitiesDataSchema, v3CapabilitiesResponseSchema, v3CreditEstimateSchema, v3EstimatePriceRequestSchema, v3EstimatePriceResponseSchema, v3FeatureSchema, v3GenerateRequestSchema, v3QueueRequestSchema, v3QueueResponseSchema, v3QueueTicketSchema, v3TaskCreatedSchema, v3TaskGroupResponseSchema, v3TaskItemSchema, v3TaskResponseSchema, v3TaskSSEEventSchema, v3TextChatRequestSchema, v3TextGenerateRequestSchema, v3TextGenerateResponseSchema, v3ToolExecuteRequestSchema, v3ToolExecuteResponseSchema, v3UploadResponseSchema, v3VariantSchema };
|
|
8647
|
+
export { AI_MODEL_CAPABILITY_INPUT_KEYS, AI_MODEL_CAPABILITY_OUTPUT_KEYS, AI_MODEL_TAGS, AI_MODEL_TAG_LABELS, type AiChatCompletionsRequest, type AiChatModel, type AiChatModelsResponse, type AiChatSessionMetadata, AiClient, type AiClientMetadata, type AiFileUploadOptions, type AiFileUploadResponse, type AiModel, type AiModelCapabilities, type AiModelCapabilitiesInput, type AiModelCapabilitiesOutput, type AiModelCapabilityInputKey, type AiModelCapabilityOutputKey, type AiModelTag, type AiModelsUpdatedAtData, type AiModelsUpdatedAtResponse, type AiProviderTemplate, type AiProviderTemplateModel, type AiProviderTemplatesResponse, type AiResponsesRequest, AiToolsClient, 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, type CreateEmbedOptions, type EmbedEventMap, type EmbedInstance, 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, MEDIA_FEATURES, MODEL_PROVIDERS, type MarketSkillEntry, type MediaFeatureId, type ModelProviderId, type OrderStatusRequest, type OrderStatusResponse, PaymentClient, type RechargeRequest, type RechargeResponse, type RecommendActionsRequest, type RecommendActionsResponse, RedeemCodeClient, type RedeemCodeRecordItem, type RedeemCodeRecordsRequest, type RedeemCodeRecordsResponse, type RedeemCodeRedeemRequest, type RedeemCodeRedeemResponse, type RedeemCodeSummary, type RefundRequest, type RefundResponse, type ResponseType, SaaSClient, type SaaSClientOptions, SaaSContract, SaaSHttpError, SaaSNetworkError, SaaSSchemaError, type SkillArchiveFormat, type SkillListItem, type SkillMarketCheckUpdatesRequest, type SkillMarketCheckUpdatesResponse, SkillMarketClient, type SkillMarketDetailResponse, type SkillMarketListRequest, type SkillMarketListResponse, type SkillMarketRateRequest, type SkillMarketRateResponse, type SkillOwnerSummary, type SkillSource, type SkillStatus, type SkillType, type SkillVersionSummary, type SkillVisibility, SkillsClient, type SkillsDetailResponse, type SkillsDownloadResponse, type SkillsListRequest, type SkillsListResponse, type SubscribeRequest, type SubscribeResponse, type SummarizeRequest, type SummarizeResponse, type TrpcClientOptions, type UpgradeRequest, type UpgradeResponse, UserClient, type UserMembershipLevel, type UserSelf, type UserSelfRequest, type UserSelfResponse, type V3BasicSuccess, type V3CapabilitiesData, type V3CapabilitiesDetailResponse, type V3CapabilitiesOverviewRequest, type V3CapabilitiesOverviewResponse, type V3CapabilitiesResponse, type V3CreditEstimate, type V3EstimatePriceRequest, type V3EstimatePriceResponse, type V3Feature, type V3GenerateRequest, type V3InputSlot, type V3ParamSchema, type V3QueueRequest, type V3QueueResponse, type V3QueueTicket, type V3TaskCreated, type V3TaskGroupResponse, type V3TaskItem, type V3TaskResponse, type V3TaskSSEEvent, type V3TextChatRequest, type V3TextGenerateRequest, type V3TextGenerateResponse, type V3ToolExecuteRequest, type V3ToolExecuteResponse, type V3UploadResponse, type V3Variant, aiChatCompletionsRequestSchema, aiChatModelSchema, aiChatModelsPayloadSchema, aiChatModelsResponseSchema, aiChatModelsSuccessSchema, aiChatSessionMetadataSchema, aiClientMetadataSchema, aiEndpoints, aiErrorResponseSchema, aiModelCapabilitiesInputSchema, aiModelCapabilitiesOutputSchema, aiModelCapabilitiesSchema, aiModelCapabilityCommonSchema, aiModelParameterFieldSchema, aiModelParamsSchema, aiModelSchema, aiModelsRequestSchema, aiModelsUpdatedAtDataSchema, aiModelsUpdatedAtResponseSchema, aiModelsUpdatedAtSuccessSchema, index$9 as aiModule, aiProviderTemplateModelSchema, aiProviderTemplateSchema, aiProviderTemplatesPayloadSchema, aiProviderTemplatesRequestSchema, aiProviderTemplatesResponseSchema, aiProviderTemplatesSuccessSchema, aiResponsesRequestSchema, aiToolsEndpoints, index$8 as aiToolsModule, analyzeSkillsRequestSchema, analyzeSkillsResponseSchema, authEndpoints, authExchangeRequestSchema, authExchangeResponseSchema, authLogoutRequestSchema, authLogoutResponseSchema, index$7 as authModule, authRefreshErrorSchema, authRefreshRequestSchema, authRefreshResponseSchema, authRefreshSuccessSchema, authRefreshUserSchema, auxiliaryEndpoints, auxiliaryInferRequestSchema, auxiliaryInferResponseSchema, index$6 as auxiliaryModule, auxiliaryQuotaResponseSchema, contract, createEmbed, createPricingEmbed, createRechargeEmbed, createTrpcClient, feedbackDetailPayloadSchema, feedbackDetailRequestSchema, feedbackDetailResponseSchema, feedbackEndpoints, feedbackItemSchema, feedbackListPayloadSchema, feedbackListRequestSchema, feedbackListResponseSchema, index$5 as feedbackModule, feedbackSaasStatusSchema, feedbackSourceSchema, feedbackSubmitErrorSchema, feedbackSubmitRequestSchema, feedbackSubmitResponseSchema, feedbackTypeSchema, inputSlotSchema, marketSkillEntrySchema, mergeHeaders, normalizeHeaders, orderStatusRequestSchema, orderStatusResponseSchema, paramSchemaSchema, paymentEndpoints, index$4 as paymentModule, rechargeRequestSchema, rechargeResponseSchema, recommendActionsRequestSchema, recommendActionsResponseSchema, redeemCodeEndpoints, redeemCodeMembershipLevelSchema, index$3 as redeemCodeModule, redeemCodeRecordItemSchema, redeemCodeRecordsRequestSchema, redeemCodeRecordsResponseSchema, redeemCodeRedeemRequestSchema, redeemCodeRedeemResponseSchema, redeemCodeSummarySchema, refundRequestSchema, refundResponseSchema, request, skillArchiveFormatSchema, skillListItemSchema, skillMarketCheckUpdatesRequestSchema, skillMarketCheckUpdatesResponseSchema, skillMarketDetailResponseSchema, skillMarketEndpoints, skillMarketListRequestSchema, skillMarketListResponseSchema, index$2 as skillMarketModule, skillMarketRateRequestSchema, skillMarketRateResponseSchema, skillOwnerSummarySchema, skillSourceSchema, skillStatusSchema, skillTypeSchema, skillVersionSummarySchema, skillVisibilitySchema, skillsDetailRequestSchema, skillsDetailResponseSchema, skillsDownloadResponseSchema, skillsEndpoints, skillsListRequestSchema, skillsListResponseSchema, index$1 as skillsModule, subscribeRequestSchema, subscribeResponseSchema, summarizeRequestSchema, summarizeResponseSchema, upgradeRequestSchema, upgradeResponseSchema, userEndpoints, userMembershipLevelSchema, index as userModule, userSelfRequestSchema, userSelfResponseSchema, userSelfSchema, v3BasicSuccessSchema, v3CapabilitiesDataSchema, v3CapabilitiesDetailResponseSchema, v3CapabilitiesOverviewRequestSchema, v3CapabilitiesOverviewResponseSchema, v3CapabilitiesResponseSchema, v3CreditEstimateSchema, v3EstimatePriceRequestSchema, v3EstimatePriceResponseSchema, v3FeatureSchema, v3GenerateRequestSchema, v3QueueRequestSchema, v3QueueResponseSchema, v3QueueTicketSchema, v3TaskCreatedSchema, v3TaskGroupResponseSchema, v3TaskItemSchema, v3TaskResponseSchema, v3TaskSSEEventSchema, v3TextChatRequestSchema, v3TextGenerateRequestSchema, v3TextGenerateResponseSchema, v3ToolExecuteRequestSchema, v3ToolExecuteResponseSchema, v3UploadResponseSchema, v3VariantSchema };
|