@openloaf-saas/sdk 0.1.32 → 0.1.33

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 CHANGED
@@ -1061,7 +1061,83 @@ declare class SaaSContract {
1061
1061
  pageCount: number;
1062
1062
  }>;
1063
1063
  };
1064
- /** Skill market endpoints. */
1064
+ /** Skill marketplace endpoints. */
1065
+ readonly skillMarket: {
1066
+ readonly list: Endpoint<{
1067
+ page: number;
1068
+ pageSize: number;
1069
+ lang?: string | undefined;
1070
+ category?: string | undefined;
1071
+ search?: string | undefined;
1072
+ sort?: "rating" | "popular" | "newest" | undefined;
1073
+ repoId?: string | undefined;
1074
+ }, {
1075
+ skills: {
1076
+ id: string;
1077
+ folderName: string;
1078
+ name: string;
1079
+ description: string;
1080
+ tags: string[];
1081
+ repoLabel: string;
1082
+ isOfficial: boolean;
1083
+ downloadCount: number;
1084
+ rating: number;
1085
+ ratingCount: number;
1086
+ version: string;
1087
+ updatedAt: string;
1088
+ summary?: string | undefined;
1089
+ icon?: string | undefined;
1090
+ category?: string | null | undefined;
1091
+ qualityScore?: number | null | undefined;
1092
+ }[];
1093
+ total: number;
1094
+ pageCount: number;
1095
+ }>;
1096
+ readonly detail: (skillId: string) => Endpoint<{
1097
+ lang?: string | undefined;
1098
+ }, {
1099
+ id: string;
1100
+ folderName: string;
1101
+ name: string;
1102
+ description: string;
1103
+ tags: string[];
1104
+ repoLabel: string;
1105
+ isOfficial: boolean;
1106
+ downloadCount: number;
1107
+ rating: number;
1108
+ ratingCount: number;
1109
+ version: string;
1110
+ updatedAt: string;
1111
+ pathInRepo: string;
1112
+ repoUrl: string;
1113
+ fullContent: string;
1114
+ createdAt: string;
1115
+ summary?: string | undefined;
1116
+ icon?: string | undefined;
1117
+ category?: string | null | undefined;
1118
+ qualityScore?: number | null | undefined;
1119
+ }>;
1120
+ readonly checkUpdates: Endpoint<{
1121
+ installed: {
1122
+ skillId: string;
1123
+ version: string;
1124
+ }[];
1125
+ }, {
1126
+ updates: {
1127
+ skillId: string;
1128
+ hasUpdate: boolean;
1129
+ }[];
1130
+ }>;
1131
+ readonly rate: (skillId: string) => Endpoint<{
1132
+ rating: number;
1133
+ comment?: string | undefined;
1134
+ }, {
1135
+ ok: boolean;
1136
+ rating: number | null;
1137
+ ratingCount: number;
1138
+ }>;
1139
+ };
1140
+ /** Skill management endpoints. */
1065
1141
  readonly skills: {
1066
1142
  readonly list: Endpoint<{
1067
1143
  page: number;
@@ -5360,109 +5436,109 @@ declare const MODEL_PROVIDERS: {
5360
5436
  /** Model provider identifier type. */
5361
5437
  type ModelProviderId = keyof typeof MODEL_PROVIDERS;
5362
5438
 
5363
- declare const index$8_AI_MODEL_CAPABILITY_INPUT_KEYS: typeof AI_MODEL_CAPABILITY_INPUT_KEYS;
5364
- declare const index$8_AI_MODEL_CAPABILITY_OUTPUT_KEYS: typeof AI_MODEL_CAPABILITY_OUTPUT_KEYS;
5365
- declare const index$8_AI_MODEL_TAGS: typeof AI_MODEL_TAGS;
5366
- declare const index$8_AI_MODEL_TAG_LABELS: typeof AI_MODEL_TAG_LABELS;
5367
- type index$8_AiChatCompletionsRequest = AiChatCompletionsRequest;
5368
- type index$8_AiChatModel = AiChatModel;
5369
- type index$8_AiChatModelsResponse = AiChatModelsResponse;
5370
- type index$8_AiChatSessionMetadata = AiChatSessionMetadata;
5371
- type index$8_AiClient = AiClient;
5372
- declare const index$8_AiClient: typeof AiClient;
5373
- type index$8_AiClientMetadata = AiClientMetadata;
5374
- type index$8_AiFileUploadOptions = AiFileUploadOptions;
5375
- type index$8_AiFileUploadResponse = AiFileUploadResponse;
5376
- type index$8_AiModel = AiModel;
5377
- type index$8_AiModelCapabilities = AiModelCapabilities;
5378
- type index$8_AiModelCapabilitiesInput = AiModelCapabilitiesInput;
5379
- type index$8_AiModelCapabilitiesOutput = AiModelCapabilitiesOutput;
5380
- type index$8_AiModelCapabilityInputKey = AiModelCapabilityInputKey;
5381
- type index$8_AiModelCapabilityOutputKey = AiModelCapabilityOutputKey;
5382
- type index$8_AiModelTag = AiModelTag;
5383
- type index$8_AiModelsUpdatedAtData = AiModelsUpdatedAtData;
5384
- type index$8_AiModelsUpdatedAtResponse = AiModelsUpdatedAtResponse;
5385
- type index$8_AiProviderTemplate = AiProviderTemplate;
5386
- type index$8_AiProviderTemplateModel = AiProviderTemplateModel;
5387
- type index$8_AiProviderTemplatesResponse = AiProviderTemplatesResponse;
5388
- type index$8_AiResponsesRequest = AiResponsesRequest;
5389
- declare const index$8_MEDIA_FEATURES: typeof MEDIA_FEATURES;
5390
- declare const index$8_MODEL_PROVIDERS: typeof MODEL_PROVIDERS;
5391
- type index$8_MediaFeatureId = MediaFeatureId;
5392
- type index$8_ModelProviderId = ModelProviderId;
5393
- type index$8_V3BasicSuccess = V3BasicSuccess;
5394
- type index$8_V3CapabilitiesData = V3CapabilitiesData;
5395
- type index$8_V3CapabilitiesResponse = V3CapabilitiesResponse;
5396
- type index$8_V3CreditEstimate = V3CreditEstimate;
5397
- type index$8_V3EstimatePriceRequest = V3EstimatePriceRequest;
5398
- type index$8_V3EstimatePriceResponse = V3EstimatePriceResponse;
5399
- type index$8_V3Feature = V3Feature;
5400
- type index$8_V3GenerateRequest = V3GenerateRequest;
5401
- type index$8_V3InputSlot = V3InputSlot;
5402
- type index$8_V3ParamSchema = V3ParamSchema;
5403
- type index$8_V3QueueRequest = V3QueueRequest;
5404
- type index$8_V3QueueResponse = V3QueueResponse;
5405
- type index$8_V3QueueTicket = V3QueueTicket;
5406
- type index$8_V3TaskCreated = V3TaskCreated;
5407
- type index$8_V3TaskGroupResponse = V3TaskGroupResponse;
5408
- type index$8_V3TaskItem = V3TaskItem;
5409
- type index$8_V3TaskResponse = V3TaskResponse;
5410
- type index$8_V3TaskSSEEvent = V3TaskSSEEvent;
5411
- type index$8_V3TextGenerateRequest = V3TextGenerateRequest;
5412
- type index$8_V3TextGenerateResponse = V3TextGenerateResponse;
5413
- type index$8_V3UploadResponse = V3UploadResponse;
5414
- type index$8_V3Variant = V3Variant;
5415
- declare const index$8_aiChatCompletionsRequestSchema: typeof aiChatCompletionsRequestSchema;
5416
- declare const index$8_aiChatModelSchema: typeof aiChatModelSchema;
5417
- declare const index$8_aiChatModelsPayloadSchema: typeof aiChatModelsPayloadSchema;
5418
- declare const index$8_aiChatModelsResponseSchema: typeof aiChatModelsResponseSchema;
5419
- declare const index$8_aiChatModelsSuccessSchema: typeof aiChatModelsSuccessSchema;
5420
- declare const index$8_aiChatSessionMetadataSchema: typeof aiChatSessionMetadataSchema;
5421
- declare const index$8_aiClientMetadataSchema: typeof aiClientMetadataSchema;
5422
- declare const index$8_aiEndpoints: typeof aiEndpoints;
5423
- declare const index$8_aiErrorResponseSchema: typeof aiErrorResponseSchema;
5424
- declare const index$8_aiModelCapabilitiesInputSchema: typeof aiModelCapabilitiesInputSchema;
5425
- declare const index$8_aiModelCapabilitiesOutputSchema: typeof aiModelCapabilitiesOutputSchema;
5426
- declare const index$8_aiModelCapabilitiesSchema: typeof aiModelCapabilitiesSchema;
5427
- declare const index$8_aiModelCapabilityCommonSchema: typeof aiModelCapabilityCommonSchema;
5428
- declare const index$8_aiModelParameterFieldSchema: typeof aiModelParameterFieldSchema;
5429
- declare const index$8_aiModelParamsSchema: typeof aiModelParamsSchema;
5430
- declare const index$8_aiModelSchema: typeof aiModelSchema;
5431
- declare const index$8_aiModelsRequestSchema: typeof aiModelsRequestSchema;
5432
- declare const index$8_aiModelsUpdatedAtDataSchema: typeof aiModelsUpdatedAtDataSchema;
5433
- declare const index$8_aiModelsUpdatedAtResponseSchema: typeof aiModelsUpdatedAtResponseSchema;
5434
- declare const index$8_aiModelsUpdatedAtSuccessSchema: typeof aiModelsUpdatedAtSuccessSchema;
5435
- declare const index$8_aiProviderTemplateModelSchema: typeof aiProviderTemplateModelSchema;
5436
- declare const index$8_aiProviderTemplateSchema: typeof aiProviderTemplateSchema;
5437
- declare const index$8_aiProviderTemplatesPayloadSchema: typeof aiProviderTemplatesPayloadSchema;
5438
- declare const index$8_aiProviderTemplatesRequestSchema: typeof aiProviderTemplatesRequestSchema;
5439
- declare const index$8_aiProviderTemplatesResponseSchema: typeof aiProviderTemplatesResponseSchema;
5440
- declare const index$8_aiProviderTemplatesSuccessSchema: typeof aiProviderTemplatesSuccessSchema;
5441
- declare const index$8_aiResponsesRequestSchema: typeof aiResponsesRequestSchema;
5442
- declare const index$8_inputSlotSchema: typeof inputSlotSchema;
5443
- declare const index$8_paramSchemaSchema: typeof paramSchemaSchema;
5444
- declare const index$8_v3BasicSuccessSchema: typeof v3BasicSuccessSchema;
5445
- declare const index$8_v3CapabilitiesDataSchema: typeof v3CapabilitiesDataSchema;
5446
- declare const index$8_v3CapabilitiesResponseSchema: typeof v3CapabilitiesResponseSchema;
5447
- declare const index$8_v3CreditEstimateSchema: typeof v3CreditEstimateSchema;
5448
- declare const index$8_v3EstimatePriceRequestSchema: typeof v3EstimatePriceRequestSchema;
5449
- declare const index$8_v3EstimatePriceResponseSchema: typeof v3EstimatePriceResponseSchema;
5450
- declare const index$8_v3FeatureSchema: typeof v3FeatureSchema;
5451
- declare const index$8_v3GenerateRequestSchema: typeof v3GenerateRequestSchema;
5452
- declare const index$8_v3QueueRequestSchema: typeof v3QueueRequestSchema;
5453
- declare const index$8_v3QueueResponseSchema: typeof v3QueueResponseSchema;
5454
- declare const index$8_v3QueueTicketSchema: typeof v3QueueTicketSchema;
5455
- declare const index$8_v3TaskCreatedSchema: typeof v3TaskCreatedSchema;
5456
- declare const index$8_v3TaskGroupResponseSchema: typeof v3TaskGroupResponseSchema;
5457
- declare const index$8_v3TaskItemSchema: typeof v3TaskItemSchema;
5458
- declare const index$8_v3TaskResponseSchema: typeof v3TaskResponseSchema;
5459
- declare const index$8_v3TaskSSEEventSchema: typeof v3TaskSSEEventSchema;
5460
- declare const index$8_v3TextGenerateRequestSchema: typeof v3TextGenerateRequestSchema;
5461
- declare const index$8_v3TextGenerateResponseSchema: typeof v3TextGenerateResponseSchema;
5462
- declare const index$8_v3UploadResponseSchema: typeof v3UploadResponseSchema;
5463
- declare const index$8_v3VariantSchema: typeof v3VariantSchema;
5464
- declare namespace index$8 {
5465
- export { index$8_AI_MODEL_CAPABILITY_INPUT_KEYS as AI_MODEL_CAPABILITY_INPUT_KEYS, index$8_AI_MODEL_CAPABILITY_OUTPUT_KEYS as AI_MODEL_CAPABILITY_OUTPUT_KEYS, index$8_AI_MODEL_TAGS as AI_MODEL_TAGS, index$8_AI_MODEL_TAG_LABELS as AI_MODEL_TAG_LABELS, type index$8_AiChatCompletionsRequest as AiChatCompletionsRequest, type index$8_AiChatModel as AiChatModel, type index$8_AiChatModelsResponse as AiChatModelsResponse, type index$8_AiChatSessionMetadata as AiChatSessionMetadata, index$8_AiClient as AiClient, type index$8_AiClientMetadata as AiClientMetadata, type index$8_AiFileUploadOptions as AiFileUploadOptions, type index$8_AiFileUploadResponse as AiFileUploadResponse, type index$8_AiModel as AiModel, type index$8_AiModelCapabilities as AiModelCapabilities, type index$8_AiModelCapabilitiesInput as AiModelCapabilitiesInput, type index$8_AiModelCapabilitiesOutput as AiModelCapabilitiesOutput, type index$8_AiModelCapabilityInputKey as AiModelCapabilityInputKey, type index$8_AiModelCapabilityOutputKey as AiModelCapabilityOutputKey, type index$8_AiModelTag as AiModelTag, type index$8_AiModelsUpdatedAtData as AiModelsUpdatedAtData, type index$8_AiModelsUpdatedAtResponse as AiModelsUpdatedAtResponse, type index$8_AiProviderTemplate as AiProviderTemplate, type index$8_AiProviderTemplateModel as AiProviderTemplateModel, type index$8_AiProviderTemplatesResponse as AiProviderTemplatesResponse, type index$8_AiResponsesRequest as AiResponsesRequest, index$8_MEDIA_FEATURES as MEDIA_FEATURES, index$8_MODEL_PROVIDERS as MODEL_PROVIDERS, type index$8_MediaFeatureId as MediaFeatureId, type index$8_ModelProviderId as ModelProviderId, type index$8_V3BasicSuccess as V3BasicSuccess, type index$8_V3CapabilitiesData as V3CapabilitiesData, type index$8_V3CapabilitiesResponse as V3CapabilitiesResponse, type index$8_V3CreditEstimate as V3CreditEstimate, type index$8_V3EstimatePriceRequest as V3EstimatePriceRequest, type index$8_V3EstimatePriceResponse as V3EstimatePriceResponse, type index$8_V3Feature as V3Feature, type index$8_V3GenerateRequest as V3GenerateRequest, type index$8_V3InputSlot as V3InputSlot, type index$8_V3ParamSchema as V3ParamSchema, type index$8_V3QueueRequest as V3QueueRequest, type index$8_V3QueueResponse as V3QueueResponse, type index$8_V3QueueTicket as V3QueueTicket, type index$8_V3TaskCreated as V3TaskCreated, type index$8_V3TaskGroupResponse as V3TaskGroupResponse, type index$8_V3TaskItem as V3TaskItem, type index$8_V3TaskResponse as V3TaskResponse, type index$8_V3TaskSSEEvent as V3TaskSSEEvent, type index$8_V3TextGenerateRequest as V3TextGenerateRequest, type index$8_V3TextGenerateResponse as V3TextGenerateResponse, type index$8_V3UploadResponse as V3UploadResponse, type index$8_V3Variant as V3Variant, index$8_aiChatCompletionsRequestSchema as aiChatCompletionsRequestSchema, index$8_aiChatModelSchema as aiChatModelSchema, index$8_aiChatModelsPayloadSchema as aiChatModelsPayloadSchema, index$8_aiChatModelsResponseSchema as aiChatModelsResponseSchema, index$8_aiChatModelsSuccessSchema as aiChatModelsSuccessSchema, index$8_aiChatSessionMetadataSchema as aiChatSessionMetadataSchema, index$8_aiClientMetadataSchema as aiClientMetadataSchema, index$8_aiEndpoints as aiEndpoints, index$8_aiErrorResponseSchema as aiErrorResponseSchema, index$8_aiModelCapabilitiesInputSchema as aiModelCapabilitiesInputSchema, index$8_aiModelCapabilitiesOutputSchema as aiModelCapabilitiesOutputSchema, index$8_aiModelCapabilitiesSchema as aiModelCapabilitiesSchema, index$8_aiModelCapabilityCommonSchema as aiModelCapabilityCommonSchema, index$8_aiModelParameterFieldSchema as aiModelParameterFieldSchema, index$8_aiModelParamsSchema as aiModelParamsSchema, index$8_aiModelSchema as aiModelSchema, index$8_aiModelsRequestSchema as aiModelsRequestSchema, index$8_aiModelsUpdatedAtDataSchema as aiModelsUpdatedAtDataSchema, index$8_aiModelsUpdatedAtResponseSchema as aiModelsUpdatedAtResponseSchema, index$8_aiModelsUpdatedAtSuccessSchema as aiModelsUpdatedAtSuccessSchema, index$8_aiProviderTemplateModelSchema as aiProviderTemplateModelSchema, index$8_aiProviderTemplateSchema as aiProviderTemplateSchema, index$8_aiProviderTemplatesPayloadSchema as aiProviderTemplatesPayloadSchema, index$8_aiProviderTemplatesRequestSchema as aiProviderTemplatesRequestSchema, index$8_aiProviderTemplatesResponseSchema as aiProviderTemplatesResponseSchema, index$8_aiProviderTemplatesSuccessSchema as aiProviderTemplatesSuccessSchema, index$8_aiResponsesRequestSchema as aiResponsesRequestSchema, index$8_inputSlotSchema as inputSlotSchema, index$8_paramSchemaSchema as paramSchemaSchema, index$8_v3BasicSuccessSchema as v3BasicSuccessSchema, index$8_v3CapabilitiesDataSchema as v3CapabilitiesDataSchema, index$8_v3CapabilitiesResponseSchema as v3CapabilitiesResponseSchema, index$8_v3CreditEstimateSchema as v3CreditEstimateSchema, index$8_v3EstimatePriceRequestSchema as v3EstimatePriceRequestSchema, index$8_v3EstimatePriceResponseSchema as v3EstimatePriceResponseSchema, index$8_v3FeatureSchema as v3FeatureSchema, index$8_v3GenerateRequestSchema as v3GenerateRequestSchema, index$8_v3QueueRequestSchema as v3QueueRequestSchema, index$8_v3QueueResponseSchema as v3QueueResponseSchema, index$8_v3QueueTicketSchema as v3QueueTicketSchema, index$8_v3TaskCreatedSchema as v3TaskCreatedSchema, index$8_v3TaskGroupResponseSchema as v3TaskGroupResponseSchema, index$8_v3TaskItemSchema as v3TaskItemSchema, index$8_v3TaskResponseSchema as v3TaskResponseSchema, index$8_v3TaskSSEEventSchema as v3TaskSSEEventSchema, index$8_v3TextGenerateRequestSchema as v3TextGenerateRequestSchema, index$8_v3TextGenerateResponseSchema as v3TextGenerateResponseSchema, index$8_v3UploadResponseSchema as v3UploadResponseSchema, index$8_v3VariantSchema as v3VariantSchema };
5439
+ declare const index$9_AI_MODEL_CAPABILITY_INPUT_KEYS: typeof AI_MODEL_CAPABILITY_INPUT_KEYS;
5440
+ declare const index$9_AI_MODEL_CAPABILITY_OUTPUT_KEYS: typeof AI_MODEL_CAPABILITY_OUTPUT_KEYS;
5441
+ declare const index$9_AI_MODEL_TAGS: typeof AI_MODEL_TAGS;
5442
+ declare const index$9_AI_MODEL_TAG_LABELS: typeof AI_MODEL_TAG_LABELS;
5443
+ type index$9_AiChatCompletionsRequest = AiChatCompletionsRequest;
5444
+ type index$9_AiChatModel = AiChatModel;
5445
+ type index$9_AiChatModelsResponse = AiChatModelsResponse;
5446
+ type index$9_AiChatSessionMetadata = AiChatSessionMetadata;
5447
+ type index$9_AiClient = AiClient;
5448
+ declare const index$9_AiClient: typeof AiClient;
5449
+ type index$9_AiClientMetadata = AiClientMetadata;
5450
+ type index$9_AiFileUploadOptions = AiFileUploadOptions;
5451
+ type index$9_AiFileUploadResponse = AiFileUploadResponse;
5452
+ type index$9_AiModel = AiModel;
5453
+ type index$9_AiModelCapabilities = AiModelCapabilities;
5454
+ type index$9_AiModelCapabilitiesInput = AiModelCapabilitiesInput;
5455
+ type index$9_AiModelCapabilitiesOutput = AiModelCapabilitiesOutput;
5456
+ type index$9_AiModelCapabilityInputKey = AiModelCapabilityInputKey;
5457
+ type index$9_AiModelCapabilityOutputKey = AiModelCapabilityOutputKey;
5458
+ type index$9_AiModelTag = AiModelTag;
5459
+ type index$9_AiModelsUpdatedAtData = AiModelsUpdatedAtData;
5460
+ type index$9_AiModelsUpdatedAtResponse = AiModelsUpdatedAtResponse;
5461
+ type index$9_AiProviderTemplate = AiProviderTemplate;
5462
+ type index$9_AiProviderTemplateModel = AiProviderTemplateModel;
5463
+ type index$9_AiProviderTemplatesResponse = AiProviderTemplatesResponse;
5464
+ type index$9_AiResponsesRequest = AiResponsesRequest;
5465
+ declare const index$9_MEDIA_FEATURES: typeof MEDIA_FEATURES;
5466
+ declare const index$9_MODEL_PROVIDERS: typeof MODEL_PROVIDERS;
5467
+ type index$9_MediaFeatureId = MediaFeatureId;
5468
+ type index$9_ModelProviderId = ModelProviderId;
5469
+ type index$9_V3BasicSuccess = V3BasicSuccess;
5470
+ type index$9_V3CapabilitiesData = V3CapabilitiesData;
5471
+ type index$9_V3CapabilitiesResponse = V3CapabilitiesResponse;
5472
+ type index$9_V3CreditEstimate = V3CreditEstimate;
5473
+ type index$9_V3EstimatePriceRequest = V3EstimatePriceRequest;
5474
+ type index$9_V3EstimatePriceResponse = V3EstimatePriceResponse;
5475
+ type index$9_V3Feature = V3Feature;
5476
+ type index$9_V3GenerateRequest = V3GenerateRequest;
5477
+ type index$9_V3InputSlot = V3InputSlot;
5478
+ type index$9_V3ParamSchema = V3ParamSchema;
5479
+ type index$9_V3QueueRequest = V3QueueRequest;
5480
+ type index$9_V3QueueResponse = V3QueueResponse;
5481
+ type index$9_V3QueueTicket = V3QueueTicket;
5482
+ type index$9_V3TaskCreated = V3TaskCreated;
5483
+ type index$9_V3TaskGroupResponse = V3TaskGroupResponse;
5484
+ type index$9_V3TaskItem = V3TaskItem;
5485
+ type index$9_V3TaskResponse = V3TaskResponse;
5486
+ type index$9_V3TaskSSEEvent = V3TaskSSEEvent;
5487
+ type index$9_V3TextGenerateRequest = V3TextGenerateRequest;
5488
+ type index$9_V3TextGenerateResponse = V3TextGenerateResponse;
5489
+ type index$9_V3UploadResponse = V3UploadResponse;
5490
+ type index$9_V3Variant = V3Variant;
5491
+ declare const index$9_aiChatCompletionsRequestSchema: typeof aiChatCompletionsRequestSchema;
5492
+ declare const index$9_aiChatModelSchema: typeof aiChatModelSchema;
5493
+ declare const index$9_aiChatModelsPayloadSchema: typeof aiChatModelsPayloadSchema;
5494
+ declare const index$9_aiChatModelsResponseSchema: typeof aiChatModelsResponseSchema;
5495
+ declare const index$9_aiChatModelsSuccessSchema: typeof aiChatModelsSuccessSchema;
5496
+ declare const index$9_aiChatSessionMetadataSchema: typeof aiChatSessionMetadataSchema;
5497
+ declare const index$9_aiClientMetadataSchema: typeof aiClientMetadataSchema;
5498
+ declare const index$9_aiEndpoints: typeof aiEndpoints;
5499
+ declare const index$9_aiErrorResponseSchema: typeof aiErrorResponseSchema;
5500
+ declare const index$9_aiModelCapabilitiesInputSchema: typeof aiModelCapabilitiesInputSchema;
5501
+ declare const index$9_aiModelCapabilitiesOutputSchema: typeof aiModelCapabilitiesOutputSchema;
5502
+ declare const index$9_aiModelCapabilitiesSchema: typeof aiModelCapabilitiesSchema;
5503
+ declare const index$9_aiModelCapabilityCommonSchema: typeof aiModelCapabilityCommonSchema;
5504
+ declare const index$9_aiModelParameterFieldSchema: typeof aiModelParameterFieldSchema;
5505
+ declare const index$9_aiModelParamsSchema: typeof aiModelParamsSchema;
5506
+ declare const index$9_aiModelSchema: typeof aiModelSchema;
5507
+ declare const index$9_aiModelsRequestSchema: typeof aiModelsRequestSchema;
5508
+ declare const index$9_aiModelsUpdatedAtDataSchema: typeof aiModelsUpdatedAtDataSchema;
5509
+ declare const index$9_aiModelsUpdatedAtResponseSchema: typeof aiModelsUpdatedAtResponseSchema;
5510
+ declare const index$9_aiModelsUpdatedAtSuccessSchema: typeof aiModelsUpdatedAtSuccessSchema;
5511
+ declare const index$9_aiProviderTemplateModelSchema: typeof aiProviderTemplateModelSchema;
5512
+ declare const index$9_aiProviderTemplateSchema: typeof aiProviderTemplateSchema;
5513
+ declare const index$9_aiProviderTemplatesPayloadSchema: typeof aiProviderTemplatesPayloadSchema;
5514
+ declare const index$9_aiProviderTemplatesRequestSchema: typeof aiProviderTemplatesRequestSchema;
5515
+ declare const index$9_aiProviderTemplatesResponseSchema: typeof aiProviderTemplatesResponseSchema;
5516
+ declare const index$9_aiProviderTemplatesSuccessSchema: typeof aiProviderTemplatesSuccessSchema;
5517
+ declare const index$9_aiResponsesRequestSchema: typeof aiResponsesRequestSchema;
5518
+ declare const index$9_inputSlotSchema: typeof inputSlotSchema;
5519
+ declare const index$9_paramSchemaSchema: typeof paramSchemaSchema;
5520
+ declare const index$9_v3BasicSuccessSchema: typeof v3BasicSuccessSchema;
5521
+ declare const index$9_v3CapabilitiesDataSchema: typeof v3CapabilitiesDataSchema;
5522
+ declare const index$9_v3CapabilitiesResponseSchema: typeof v3CapabilitiesResponseSchema;
5523
+ declare const index$9_v3CreditEstimateSchema: typeof v3CreditEstimateSchema;
5524
+ declare const index$9_v3EstimatePriceRequestSchema: typeof v3EstimatePriceRequestSchema;
5525
+ declare const index$9_v3EstimatePriceResponseSchema: typeof v3EstimatePriceResponseSchema;
5526
+ declare const index$9_v3FeatureSchema: typeof v3FeatureSchema;
5527
+ declare const index$9_v3GenerateRequestSchema: typeof v3GenerateRequestSchema;
5528
+ declare const index$9_v3QueueRequestSchema: typeof v3QueueRequestSchema;
5529
+ declare const index$9_v3QueueResponseSchema: typeof v3QueueResponseSchema;
5530
+ declare const index$9_v3QueueTicketSchema: typeof v3QueueTicketSchema;
5531
+ declare const index$9_v3TaskCreatedSchema: typeof v3TaskCreatedSchema;
5532
+ declare const index$9_v3TaskGroupResponseSchema: typeof v3TaskGroupResponseSchema;
5533
+ declare const index$9_v3TaskItemSchema: typeof v3TaskItemSchema;
5534
+ declare const index$9_v3TaskResponseSchema: typeof v3TaskResponseSchema;
5535
+ declare const index$9_v3TaskSSEEventSchema: typeof v3TaskSSEEventSchema;
5536
+ declare const index$9_v3TextGenerateRequestSchema: typeof v3TextGenerateRequestSchema;
5537
+ declare const index$9_v3TextGenerateResponseSchema: typeof v3TextGenerateResponseSchema;
5538
+ declare const index$9_v3UploadResponseSchema: typeof v3UploadResponseSchema;
5539
+ declare const index$9_v3VariantSchema: typeof v3VariantSchema;
5540
+ declare namespace index$9 {
5541
+ 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_V3TextGenerateRequest as V3TextGenerateRequest, type index$9_V3TextGenerateResponse as V3TextGenerateResponse, 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_v3TextGenerateRequestSchema as v3TextGenerateRequestSchema, index$9_v3TextGenerateResponseSchema as v3TextGenerateResponseSchema, index$9_v3UploadResponseSchema as v3UploadResponseSchema, index$9_v3VariantSchema as v3VariantSchema };
5466
5542
  }
5467
5543
 
5468
5544
  declare const aiToolsEndpoints: {
@@ -5622,23 +5698,23 @@ declare class AiToolsClient {
5622
5698
  }>;
5623
5699
  }
5624
5700
 
5625
- type index$7_AiToolsClient = AiToolsClient;
5626
- declare const index$7_AiToolsClient: typeof AiToolsClient;
5627
- type index$7_AnalyzeSkillsRequest = AnalyzeSkillsRequest;
5628
- type index$7_AnalyzeSkillsResponse = AnalyzeSkillsResponse;
5629
- type index$7_RecommendActionsRequest = RecommendActionsRequest;
5630
- type index$7_RecommendActionsResponse = RecommendActionsResponse;
5631
- type index$7_SummarizeRequest = SummarizeRequest;
5632
- type index$7_SummarizeResponse = SummarizeResponse;
5633
- declare const index$7_aiToolsEndpoints: typeof aiToolsEndpoints;
5634
- declare const index$7_analyzeSkillsRequestSchema: typeof analyzeSkillsRequestSchema;
5635
- declare const index$7_analyzeSkillsResponseSchema: typeof analyzeSkillsResponseSchema;
5636
- declare const index$7_recommendActionsRequestSchema: typeof recommendActionsRequestSchema;
5637
- declare const index$7_recommendActionsResponseSchema: typeof recommendActionsResponseSchema;
5638
- declare const index$7_summarizeRequestSchema: typeof summarizeRequestSchema;
5639
- declare const index$7_summarizeResponseSchema: typeof summarizeResponseSchema;
5640
- declare namespace index$7 {
5641
- export { index$7_AiToolsClient as AiToolsClient, type index$7_AnalyzeSkillsRequest as AnalyzeSkillsRequest, type index$7_AnalyzeSkillsResponse as AnalyzeSkillsResponse, type index$7_RecommendActionsRequest as RecommendActionsRequest, type index$7_RecommendActionsResponse as RecommendActionsResponse, type index$7_SummarizeRequest as SummarizeRequest, type index$7_SummarizeResponse as SummarizeResponse, index$7_aiToolsEndpoints as aiToolsEndpoints, index$7_analyzeSkillsRequestSchema as analyzeSkillsRequestSchema, index$7_analyzeSkillsResponseSchema as analyzeSkillsResponseSchema, index$7_recommendActionsRequestSchema as recommendActionsRequestSchema, index$7_recommendActionsResponseSchema as recommendActionsResponseSchema, index$7_summarizeRequestSchema as summarizeRequestSchema, index$7_summarizeResponseSchema as summarizeResponseSchema };
5701
+ type index$8_AiToolsClient = AiToolsClient;
5702
+ declare const index$8_AiToolsClient: typeof AiToolsClient;
5703
+ type index$8_AnalyzeSkillsRequest = AnalyzeSkillsRequest;
5704
+ type index$8_AnalyzeSkillsResponse = AnalyzeSkillsResponse;
5705
+ type index$8_RecommendActionsRequest = RecommendActionsRequest;
5706
+ type index$8_RecommendActionsResponse = RecommendActionsResponse;
5707
+ type index$8_SummarizeRequest = SummarizeRequest;
5708
+ type index$8_SummarizeResponse = SummarizeResponse;
5709
+ declare const index$8_aiToolsEndpoints: typeof aiToolsEndpoints;
5710
+ declare const index$8_analyzeSkillsRequestSchema: typeof analyzeSkillsRequestSchema;
5711
+ declare const index$8_analyzeSkillsResponseSchema: typeof analyzeSkillsResponseSchema;
5712
+ declare const index$8_recommendActionsRequestSchema: typeof recommendActionsRequestSchema;
5713
+ declare const index$8_recommendActionsResponseSchema: typeof recommendActionsResponseSchema;
5714
+ declare const index$8_summarizeRequestSchema: typeof summarizeRequestSchema;
5715
+ declare const index$8_summarizeResponseSchema: typeof summarizeResponseSchema;
5716
+ declare namespace index$8 {
5717
+ export { index$8_AiToolsClient as AiToolsClient, type index$8_AnalyzeSkillsRequest as AnalyzeSkillsRequest, type index$8_AnalyzeSkillsResponse as AnalyzeSkillsResponse, type index$8_RecommendActionsRequest as RecommendActionsRequest, type index$8_RecommendActionsResponse as RecommendActionsResponse, type index$8_SummarizeRequest as SummarizeRequest, type index$8_SummarizeResponse as SummarizeResponse, index$8_aiToolsEndpoints as aiToolsEndpoints, index$8_analyzeSkillsRequestSchema as analyzeSkillsRequestSchema, index$8_analyzeSkillsResponseSchema as analyzeSkillsResponseSchema, index$8_recommendActionsRequestSchema as recommendActionsRequestSchema, index$8_recommendActionsResponseSchema as recommendActionsResponseSchema, index$8_summarizeRequestSchema as summarizeRequestSchema, index$8_summarizeResponseSchema as summarizeResponseSchema };
5642
5718
  }
5643
5719
 
5644
5720
  declare const authEndpoints: {
@@ -5775,28 +5851,28 @@ type AuthExchangeResponse = z.infer<typeof authExchangeResponseSchema>;
5775
5851
  type AuthLogoutRequest = z.infer<typeof authLogoutRequestSchema>;
5776
5852
  type AuthLogoutResponse = z.infer<typeof authLogoutResponseSchema>;
5777
5853
 
5778
- type index$6_AuthClient = AuthClient;
5779
- declare const index$6_AuthClient: typeof AuthClient;
5780
- type index$6_AuthExchangeRequest = AuthExchangeRequest;
5781
- type index$6_AuthExchangeResponse = AuthExchangeResponse;
5782
- type index$6_AuthLogoutRequest = AuthLogoutRequest;
5783
- type index$6_AuthLogoutResponse = AuthLogoutResponse;
5784
- type index$6_AuthRefreshError = AuthRefreshError;
5785
- type index$6_AuthRefreshRequest = AuthRefreshRequest;
5786
- type index$6_AuthRefreshResponse = AuthRefreshResponse;
5787
- type index$6_AuthRefreshSuccess = AuthRefreshSuccess;
5788
- declare const index$6_authEndpoints: typeof authEndpoints;
5789
- declare const index$6_authExchangeRequestSchema: typeof authExchangeRequestSchema;
5790
- declare const index$6_authExchangeResponseSchema: typeof authExchangeResponseSchema;
5791
- declare const index$6_authLogoutRequestSchema: typeof authLogoutRequestSchema;
5792
- declare const index$6_authLogoutResponseSchema: typeof authLogoutResponseSchema;
5793
- declare const index$6_authRefreshErrorSchema: typeof authRefreshErrorSchema;
5794
- declare const index$6_authRefreshRequestSchema: typeof authRefreshRequestSchema;
5795
- declare const index$6_authRefreshResponseSchema: typeof authRefreshResponseSchema;
5796
- declare const index$6_authRefreshSuccessSchema: typeof authRefreshSuccessSchema;
5797
- declare const index$6_authRefreshUserSchema: typeof authRefreshUserSchema;
5798
- declare namespace index$6 {
5799
- export { index$6_AuthClient as AuthClient, type index$6_AuthExchangeRequest as AuthExchangeRequest, type index$6_AuthExchangeResponse as AuthExchangeResponse, type index$6_AuthLogoutRequest as AuthLogoutRequest, type index$6_AuthLogoutResponse as AuthLogoutResponse, type index$6_AuthRefreshError as AuthRefreshError, type index$6_AuthRefreshRequest as AuthRefreshRequest, type index$6_AuthRefreshResponse as AuthRefreshResponse, type index$6_AuthRefreshSuccess as AuthRefreshSuccess, index$6_authEndpoints as authEndpoints, index$6_authExchangeRequestSchema as authExchangeRequestSchema, index$6_authExchangeResponseSchema as authExchangeResponseSchema, index$6_authLogoutRequestSchema as authLogoutRequestSchema, index$6_authLogoutResponseSchema as authLogoutResponseSchema, index$6_authRefreshErrorSchema as authRefreshErrorSchema, index$6_authRefreshRequestSchema as authRefreshRequestSchema, index$6_authRefreshResponseSchema as authRefreshResponseSchema, index$6_authRefreshSuccessSchema as authRefreshSuccessSchema, index$6_authRefreshUserSchema as authRefreshUserSchema };
5854
+ type index$7_AuthClient = AuthClient;
5855
+ declare const index$7_AuthClient: typeof AuthClient;
5856
+ type index$7_AuthExchangeRequest = AuthExchangeRequest;
5857
+ type index$7_AuthExchangeResponse = AuthExchangeResponse;
5858
+ type index$7_AuthLogoutRequest = AuthLogoutRequest;
5859
+ type index$7_AuthLogoutResponse = AuthLogoutResponse;
5860
+ type index$7_AuthRefreshError = AuthRefreshError;
5861
+ type index$7_AuthRefreshRequest = AuthRefreshRequest;
5862
+ type index$7_AuthRefreshResponse = AuthRefreshResponse;
5863
+ type index$7_AuthRefreshSuccess = AuthRefreshSuccess;
5864
+ declare const index$7_authEndpoints: typeof authEndpoints;
5865
+ declare const index$7_authExchangeRequestSchema: typeof authExchangeRequestSchema;
5866
+ declare const index$7_authExchangeResponseSchema: typeof authExchangeResponseSchema;
5867
+ declare const index$7_authLogoutRequestSchema: typeof authLogoutRequestSchema;
5868
+ declare const index$7_authLogoutResponseSchema: typeof authLogoutResponseSchema;
5869
+ declare const index$7_authRefreshErrorSchema: typeof authRefreshErrorSchema;
5870
+ declare const index$7_authRefreshRequestSchema: typeof authRefreshRequestSchema;
5871
+ declare const index$7_authRefreshResponseSchema: typeof authRefreshResponseSchema;
5872
+ declare const index$7_authRefreshSuccessSchema: typeof authRefreshSuccessSchema;
5873
+ declare const index$7_authRefreshUserSchema: typeof authRefreshUserSchema;
5874
+ declare namespace index$7 {
5875
+ export { index$7_AuthClient as AuthClient, type index$7_AuthExchangeRequest as AuthExchangeRequest, type index$7_AuthExchangeResponse as AuthExchangeResponse, type index$7_AuthLogoutRequest as AuthLogoutRequest, type index$7_AuthLogoutResponse as AuthLogoutResponse, type index$7_AuthRefreshError as AuthRefreshError, type index$7_AuthRefreshRequest as AuthRefreshRequest, type index$7_AuthRefreshResponse as AuthRefreshResponse, type index$7_AuthRefreshSuccess as AuthRefreshSuccess, index$7_authEndpoints as authEndpoints, index$7_authExchangeRequestSchema as authExchangeRequestSchema, index$7_authExchangeResponseSchema as authExchangeResponseSchema, index$7_authLogoutRequestSchema as authLogoutRequestSchema, index$7_authLogoutResponseSchema as authLogoutResponseSchema, index$7_authRefreshErrorSchema as authRefreshErrorSchema, index$7_authRefreshRequestSchema as authRefreshRequestSchema, index$7_authRefreshResponseSchema as authRefreshResponseSchema, index$7_authRefreshSuccessSchema as authRefreshSuccessSchema, index$7_authRefreshUserSchema as authRefreshUserSchema };
5800
5876
  }
5801
5877
 
5802
5878
  declare const auxiliaryEndpoints: {
@@ -5919,18 +5995,18 @@ declare class AuxiliaryClient {
5919
5995
  }>;
5920
5996
  }
5921
5997
 
5922
- type index$5_AuxiliaryClient = AuxiliaryClient;
5923
- declare const index$5_AuxiliaryClient: typeof AuxiliaryClient;
5924
- type index$5_AuxiliaryInferRequest = AuxiliaryInferRequest;
5925
- type index$5_AuxiliaryInferResponse = AuxiliaryInferResponse;
5926
- type index$5_AuxiliaryQuota = AuxiliaryQuota;
5927
- type index$5_AuxiliaryQuotaResponse = AuxiliaryQuotaResponse;
5928
- declare const index$5_auxiliaryEndpoints: typeof auxiliaryEndpoints;
5929
- declare const index$5_auxiliaryInferRequestSchema: typeof auxiliaryInferRequestSchema;
5930
- declare const index$5_auxiliaryInferResponseSchema: typeof auxiliaryInferResponseSchema;
5931
- declare const index$5_auxiliaryQuotaResponseSchema: typeof auxiliaryQuotaResponseSchema;
5932
- declare namespace index$5 {
5933
- export { index$5_AuxiliaryClient as AuxiliaryClient, type index$5_AuxiliaryInferRequest as AuxiliaryInferRequest, type index$5_AuxiliaryInferResponse as AuxiliaryInferResponse, type index$5_AuxiliaryQuota as AuxiliaryQuota, type index$5_AuxiliaryQuotaResponse as AuxiliaryQuotaResponse, index$5_auxiliaryEndpoints as auxiliaryEndpoints, index$5_auxiliaryInferRequestSchema as auxiliaryInferRequestSchema, index$5_auxiliaryInferResponseSchema as auxiliaryInferResponseSchema, index$5_auxiliaryQuotaResponseSchema as auxiliaryQuotaResponseSchema };
5998
+ type index$6_AuxiliaryClient = AuxiliaryClient;
5999
+ declare const index$6_AuxiliaryClient: typeof AuxiliaryClient;
6000
+ type index$6_AuxiliaryInferRequest = AuxiliaryInferRequest;
6001
+ type index$6_AuxiliaryInferResponse = AuxiliaryInferResponse;
6002
+ type index$6_AuxiliaryQuota = AuxiliaryQuota;
6003
+ type index$6_AuxiliaryQuotaResponse = AuxiliaryQuotaResponse;
6004
+ declare const index$6_auxiliaryEndpoints: typeof auxiliaryEndpoints;
6005
+ declare const index$6_auxiliaryInferRequestSchema: typeof auxiliaryInferRequestSchema;
6006
+ declare const index$6_auxiliaryInferResponseSchema: typeof auxiliaryInferResponseSchema;
6007
+ declare const index$6_auxiliaryQuotaResponseSchema: typeof auxiliaryQuotaResponseSchema;
6008
+ declare namespace index$6 {
6009
+ export { index$6_AuxiliaryClient as AuxiliaryClient, type index$6_AuxiliaryInferRequest as AuxiliaryInferRequest, type index$6_AuxiliaryInferResponse as AuxiliaryInferResponse, type index$6_AuxiliaryQuota as AuxiliaryQuota, type index$6_AuxiliaryQuotaResponse as AuxiliaryQuotaResponse, index$6_auxiliaryEndpoints as auxiliaryEndpoints, index$6_auxiliaryInferRequestSchema as auxiliaryInferRequestSchema, index$6_auxiliaryInferResponseSchema as auxiliaryInferResponseSchema, index$6_auxiliaryQuotaResponseSchema as auxiliaryQuotaResponseSchema };
5934
6010
  }
5935
6011
 
5936
6012
  /** Feedback API endpoints. */
@@ -6277,37 +6353,37 @@ declare class FeedbackClient {
6277
6353
  detail(feedbackId: string): Promise<FeedbackDetailResponse>;
6278
6354
  }
6279
6355
 
6280
- type index$4_FeedbackAttachmentResponse = FeedbackAttachmentResponse;
6281
- type index$4_FeedbackClient = FeedbackClient;
6282
- declare const index$4_FeedbackClient: typeof FeedbackClient;
6283
- type index$4_FeedbackDetailPayload = FeedbackDetailPayload;
6284
- type index$4_FeedbackDetailRequest = FeedbackDetailRequest;
6285
- type index$4_FeedbackDetailResponse = FeedbackDetailResponse;
6286
- type index$4_FeedbackListPayload = FeedbackListPayload;
6287
- type index$4_FeedbackListRequest = FeedbackListRequest;
6288
- type index$4_FeedbackListResponse = FeedbackListResponse;
6289
- type index$4_FeedbackSaasStatus = FeedbackSaasStatus;
6290
- type index$4_FeedbackSource = FeedbackSource;
6291
- type index$4_FeedbackSubmitError = FeedbackSubmitError;
6292
- type index$4_FeedbackSubmitRequest = FeedbackSubmitRequest;
6293
- type index$4_FeedbackSubmitResponse = FeedbackSubmitResponse;
6294
- type index$4_FeedbackType = FeedbackType;
6295
- declare const index$4_feedbackDetailPayloadSchema: typeof feedbackDetailPayloadSchema;
6296
- declare const index$4_feedbackDetailRequestSchema: typeof feedbackDetailRequestSchema;
6297
- declare const index$4_feedbackDetailResponseSchema: typeof feedbackDetailResponseSchema;
6298
- declare const index$4_feedbackEndpoints: typeof feedbackEndpoints;
6299
- declare const index$4_feedbackItemSchema: typeof feedbackItemSchema;
6300
- declare const index$4_feedbackListPayloadSchema: typeof feedbackListPayloadSchema;
6301
- declare const index$4_feedbackListRequestSchema: typeof feedbackListRequestSchema;
6302
- declare const index$4_feedbackListResponseSchema: typeof feedbackListResponseSchema;
6303
- declare const index$4_feedbackSaasStatusSchema: typeof feedbackSaasStatusSchema;
6304
- declare const index$4_feedbackSourceSchema: typeof feedbackSourceSchema;
6305
- declare const index$4_feedbackSubmitErrorSchema: typeof feedbackSubmitErrorSchema;
6306
- declare const index$4_feedbackSubmitRequestSchema: typeof feedbackSubmitRequestSchema;
6307
- declare const index$4_feedbackSubmitResponseSchema: typeof feedbackSubmitResponseSchema;
6308
- declare const index$4_feedbackTypeSchema: typeof feedbackTypeSchema;
6309
- declare namespace index$4 {
6310
- export { type index$4_FeedbackAttachmentResponse as FeedbackAttachmentResponse, index$4_FeedbackClient as FeedbackClient, type index$4_FeedbackDetailPayload as FeedbackDetailPayload, type index$4_FeedbackDetailRequest as FeedbackDetailRequest, type index$4_FeedbackDetailResponse as FeedbackDetailResponse, type index$4_FeedbackListPayload as FeedbackListPayload, type index$4_FeedbackListRequest as FeedbackListRequest, type index$4_FeedbackListResponse as FeedbackListResponse, type index$4_FeedbackSaasStatus as FeedbackSaasStatus, type index$4_FeedbackSource as FeedbackSource, type index$4_FeedbackSubmitError as FeedbackSubmitError, type index$4_FeedbackSubmitRequest as FeedbackSubmitRequest, type index$4_FeedbackSubmitResponse as FeedbackSubmitResponse, type index$4_FeedbackType as FeedbackType, index$4_feedbackDetailPayloadSchema as feedbackDetailPayloadSchema, index$4_feedbackDetailRequestSchema as feedbackDetailRequestSchema, index$4_feedbackDetailResponseSchema as feedbackDetailResponseSchema, index$4_feedbackEndpoints as feedbackEndpoints, index$4_feedbackItemSchema as feedbackItemSchema, index$4_feedbackListPayloadSchema as feedbackListPayloadSchema, index$4_feedbackListRequestSchema as feedbackListRequestSchema, index$4_feedbackListResponseSchema as feedbackListResponseSchema, index$4_feedbackSaasStatusSchema as feedbackSaasStatusSchema, index$4_feedbackSourceSchema as feedbackSourceSchema, index$4_feedbackSubmitErrorSchema as feedbackSubmitErrorSchema, index$4_feedbackSubmitRequestSchema as feedbackSubmitRequestSchema, index$4_feedbackSubmitResponseSchema as feedbackSubmitResponseSchema, index$4_feedbackTypeSchema as feedbackTypeSchema };
6356
+ type index$5_FeedbackAttachmentResponse = FeedbackAttachmentResponse;
6357
+ type index$5_FeedbackClient = FeedbackClient;
6358
+ declare const index$5_FeedbackClient: typeof FeedbackClient;
6359
+ type index$5_FeedbackDetailPayload = FeedbackDetailPayload;
6360
+ type index$5_FeedbackDetailRequest = FeedbackDetailRequest;
6361
+ type index$5_FeedbackDetailResponse = FeedbackDetailResponse;
6362
+ type index$5_FeedbackListPayload = FeedbackListPayload;
6363
+ type index$5_FeedbackListRequest = FeedbackListRequest;
6364
+ type index$5_FeedbackListResponse = FeedbackListResponse;
6365
+ type index$5_FeedbackSaasStatus = FeedbackSaasStatus;
6366
+ type index$5_FeedbackSource = FeedbackSource;
6367
+ type index$5_FeedbackSubmitError = FeedbackSubmitError;
6368
+ type index$5_FeedbackSubmitRequest = FeedbackSubmitRequest;
6369
+ type index$5_FeedbackSubmitResponse = FeedbackSubmitResponse;
6370
+ type index$5_FeedbackType = FeedbackType;
6371
+ declare const index$5_feedbackDetailPayloadSchema: typeof feedbackDetailPayloadSchema;
6372
+ declare const index$5_feedbackDetailRequestSchema: typeof feedbackDetailRequestSchema;
6373
+ declare const index$5_feedbackDetailResponseSchema: typeof feedbackDetailResponseSchema;
6374
+ declare const index$5_feedbackEndpoints: typeof feedbackEndpoints;
6375
+ declare const index$5_feedbackItemSchema: typeof feedbackItemSchema;
6376
+ declare const index$5_feedbackListPayloadSchema: typeof feedbackListPayloadSchema;
6377
+ declare const index$5_feedbackListRequestSchema: typeof feedbackListRequestSchema;
6378
+ declare const index$5_feedbackListResponseSchema: typeof feedbackListResponseSchema;
6379
+ declare const index$5_feedbackSaasStatusSchema: typeof feedbackSaasStatusSchema;
6380
+ declare const index$5_feedbackSourceSchema: typeof feedbackSourceSchema;
6381
+ declare const index$5_feedbackSubmitErrorSchema: typeof feedbackSubmitErrorSchema;
6382
+ declare const index$5_feedbackSubmitRequestSchema: typeof feedbackSubmitRequestSchema;
6383
+ declare const index$5_feedbackSubmitResponseSchema: typeof feedbackSubmitResponseSchema;
6384
+ declare const index$5_feedbackTypeSchema: typeof feedbackTypeSchema;
6385
+ declare namespace index$5 {
6386
+ export { type index$5_FeedbackAttachmentResponse as FeedbackAttachmentResponse, index$5_FeedbackClient as FeedbackClient, type index$5_FeedbackDetailPayload as FeedbackDetailPayload, type index$5_FeedbackDetailRequest as FeedbackDetailRequest, type index$5_FeedbackDetailResponse as FeedbackDetailResponse, type index$5_FeedbackListPayload as FeedbackListPayload, type index$5_FeedbackListRequest as FeedbackListRequest, type index$5_FeedbackListResponse as FeedbackListResponse, type index$5_FeedbackSaasStatus as FeedbackSaasStatus, type index$5_FeedbackSource as FeedbackSource, type index$5_FeedbackSubmitError as FeedbackSubmitError, type index$5_FeedbackSubmitRequest as FeedbackSubmitRequest, type index$5_FeedbackSubmitResponse as FeedbackSubmitResponse, type index$5_FeedbackType as FeedbackType, index$5_feedbackDetailPayloadSchema as feedbackDetailPayloadSchema, index$5_feedbackDetailRequestSchema as feedbackDetailRequestSchema, index$5_feedbackDetailResponseSchema as feedbackDetailResponseSchema, index$5_feedbackEndpoints as feedbackEndpoints, index$5_feedbackItemSchema as feedbackItemSchema, index$5_feedbackListPayloadSchema as feedbackListPayloadSchema, index$5_feedbackListRequestSchema as feedbackListRequestSchema, index$5_feedbackListResponseSchema as feedbackListResponseSchema, index$5_feedbackSaasStatusSchema as feedbackSaasStatusSchema, index$5_feedbackSourceSchema as feedbackSourceSchema, index$5_feedbackSubmitErrorSchema as feedbackSubmitErrorSchema, index$5_feedbackSubmitRequestSchema as feedbackSubmitRequestSchema, index$5_feedbackSubmitResponseSchema as feedbackSubmitResponseSchema, index$5_feedbackTypeSchema as feedbackTypeSchema };
6311
6387
  }
6312
6388
 
6313
6389
  /** Payment API endpoints. */
@@ -6570,37 +6646,37 @@ type RefundRequest = z.infer<typeof refundRequestSchema>;
6570
6646
  /** Response type for requesting a refund. */
6571
6647
  type RefundResponse = z.infer<typeof refundResponseSchema>;
6572
6648
 
6573
- type index$3_CreateEmbedOptions = CreateEmbedOptions;
6574
- type index$3_EmbedEventMap = EmbedEventMap;
6575
- type index$3_EmbedInstance = EmbedInstance;
6576
- type index$3_OrderStatusRequest = OrderStatusRequest;
6577
- type index$3_OrderStatusResponse = OrderStatusResponse;
6578
- type index$3_PaymentClient = PaymentClient;
6579
- declare const index$3_PaymentClient: typeof PaymentClient;
6580
- type index$3_RechargeRequest = RechargeRequest;
6581
- type index$3_RechargeResponse = RechargeResponse;
6582
- type index$3_RefundRequest = RefundRequest;
6583
- type index$3_RefundResponse = RefundResponse;
6584
- type index$3_SubscribeRequest = SubscribeRequest;
6585
- type index$3_SubscribeResponse = SubscribeResponse;
6586
- type index$3_UpgradeRequest = UpgradeRequest;
6587
- type index$3_UpgradeResponse = UpgradeResponse;
6588
- declare const index$3_createEmbed: typeof createEmbed;
6589
- declare const index$3_createPricingEmbed: typeof createPricingEmbed;
6590
- declare const index$3_createRechargeEmbed: typeof createRechargeEmbed;
6591
- declare const index$3_orderStatusRequestSchema: typeof orderStatusRequestSchema;
6592
- declare const index$3_orderStatusResponseSchema: typeof orderStatusResponseSchema;
6593
- declare const index$3_paymentEndpoints: typeof paymentEndpoints;
6594
- declare const index$3_rechargeRequestSchema: typeof rechargeRequestSchema;
6595
- declare const index$3_rechargeResponseSchema: typeof rechargeResponseSchema;
6596
- declare const index$3_refundRequestSchema: typeof refundRequestSchema;
6597
- declare const index$3_refundResponseSchema: typeof refundResponseSchema;
6598
- declare const index$3_subscribeRequestSchema: typeof subscribeRequestSchema;
6599
- declare const index$3_subscribeResponseSchema: typeof subscribeResponseSchema;
6600
- declare const index$3_upgradeRequestSchema: typeof upgradeRequestSchema;
6601
- declare const index$3_upgradeResponseSchema: typeof upgradeResponseSchema;
6602
- declare namespace index$3 {
6603
- export { type index$3_CreateEmbedOptions as CreateEmbedOptions, type index$3_EmbedEventMap as EmbedEventMap, type index$3_EmbedInstance as EmbedInstance, type index$3_OrderStatusRequest as OrderStatusRequest, type index$3_OrderStatusResponse as OrderStatusResponse, index$3_PaymentClient as PaymentClient, type index$3_RechargeRequest as RechargeRequest, type index$3_RechargeResponse as RechargeResponse, type index$3_RefundRequest as RefundRequest, type index$3_RefundResponse as RefundResponse, type index$3_SubscribeRequest as SubscribeRequest, type index$3_SubscribeResponse as SubscribeResponse, type index$3_UpgradeRequest as UpgradeRequest, type index$3_UpgradeResponse as UpgradeResponse, index$3_createEmbed as createEmbed, index$3_createPricingEmbed as createPricingEmbed, index$3_createRechargeEmbed as createRechargeEmbed, index$3_orderStatusRequestSchema as orderStatusRequestSchema, index$3_orderStatusResponseSchema as orderStatusResponseSchema, index$3_paymentEndpoints as paymentEndpoints, index$3_rechargeRequestSchema as rechargeRequestSchema, index$3_rechargeResponseSchema as rechargeResponseSchema, index$3_refundRequestSchema as refundRequestSchema, index$3_refundResponseSchema as refundResponseSchema, index$3_subscribeRequestSchema as subscribeRequestSchema, index$3_subscribeResponseSchema as subscribeResponseSchema, index$3_upgradeRequestSchema as upgradeRequestSchema, index$3_upgradeResponseSchema as upgradeResponseSchema };
6649
+ type index$4_CreateEmbedOptions = CreateEmbedOptions;
6650
+ type index$4_EmbedEventMap = EmbedEventMap;
6651
+ type index$4_EmbedInstance = EmbedInstance;
6652
+ type index$4_OrderStatusRequest = OrderStatusRequest;
6653
+ type index$4_OrderStatusResponse = OrderStatusResponse;
6654
+ type index$4_PaymentClient = PaymentClient;
6655
+ declare const index$4_PaymentClient: typeof PaymentClient;
6656
+ type index$4_RechargeRequest = RechargeRequest;
6657
+ type index$4_RechargeResponse = RechargeResponse;
6658
+ type index$4_RefundRequest = RefundRequest;
6659
+ type index$4_RefundResponse = RefundResponse;
6660
+ type index$4_SubscribeRequest = SubscribeRequest;
6661
+ type index$4_SubscribeResponse = SubscribeResponse;
6662
+ type index$4_UpgradeRequest = UpgradeRequest;
6663
+ type index$4_UpgradeResponse = UpgradeResponse;
6664
+ declare const index$4_createEmbed: typeof createEmbed;
6665
+ declare const index$4_createPricingEmbed: typeof createPricingEmbed;
6666
+ declare const index$4_createRechargeEmbed: typeof createRechargeEmbed;
6667
+ declare const index$4_orderStatusRequestSchema: typeof orderStatusRequestSchema;
6668
+ declare const index$4_orderStatusResponseSchema: typeof orderStatusResponseSchema;
6669
+ declare const index$4_paymentEndpoints: typeof paymentEndpoints;
6670
+ declare const index$4_rechargeRequestSchema: typeof rechargeRequestSchema;
6671
+ declare const index$4_rechargeResponseSchema: typeof rechargeResponseSchema;
6672
+ declare const index$4_refundRequestSchema: typeof refundRequestSchema;
6673
+ declare const index$4_refundResponseSchema: typeof refundResponseSchema;
6674
+ declare const index$4_subscribeRequestSchema: typeof subscribeRequestSchema;
6675
+ declare const index$4_subscribeResponseSchema: typeof subscribeResponseSchema;
6676
+ declare const index$4_upgradeRequestSchema: typeof upgradeRequestSchema;
6677
+ declare const index$4_upgradeResponseSchema: typeof upgradeResponseSchema;
6678
+ declare namespace index$4 {
6679
+ export { type index$4_CreateEmbedOptions as CreateEmbedOptions, type index$4_EmbedEventMap as EmbedEventMap, type index$4_EmbedInstance as EmbedInstance, type index$4_OrderStatusRequest as OrderStatusRequest, type index$4_OrderStatusResponse as OrderStatusResponse, index$4_PaymentClient as PaymentClient, type index$4_RechargeRequest as RechargeRequest, type index$4_RechargeResponse as RechargeResponse, type index$4_RefundRequest as RefundRequest, type index$4_RefundResponse as RefundResponse, type index$4_SubscribeRequest as SubscribeRequest, type index$4_SubscribeResponse as SubscribeResponse, type index$4_UpgradeRequest as UpgradeRequest, type index$4_UpgradeResponse as UpgradeResponse, index$4_createEmbed as createEmbed, index$4_createPricingEmbed as createPricingEmbed, index$4_createRechargeEmbed as createRechargeEmbed, index$4_orderStatusRequestSchema as orderStatusRequestSchema, index$4_orderStatusResponseSchema as orderStatusResponseSchema, index$4_paymentEndpoints as paymentEndpoints, index$4_rechargeRequestSchema as rechargeRequestSchema, index$4_rechargeResponseSchema as rechargeResponseSchema, index$4_refundRequestSchema as refundRequestSchema, index$4_refundResponseSchema as refundResponseSchema, index$4_subscribeRequestSchema as subscribeRequestSchema, index$4_subscribeResponseSchema as subscribeResponseSchema, index$4_upgradeRequestSchema as upgradeRequestSchema, index$4_upgradeResponseSchema as upgradeResponseSchema };
6604
6680
  }
6605
6681
 
6606
6682
  /** Redeem code API endpoints. */
@@ -6762,24 +6838,275 @@ declare class RedeemCodeClient {
6762
6838
  records(payload?: RedeemCodeRecordsRequest): Promise<RedeemCodeRecordsResponse>;
6763
6839
  }
6764
6840
 
6765
- type index$2_RedeemCodeClient = RedeemCodeClient;
6766
- declare const index$2_RedeemCodeClient: typeof RedeemCodeClient;
6767
- type index$2_RedeemCodeRecordItem = RedeemCodeRecordItem;
6768
- type index$2_RedeemCodeRecordsRequest = RedeemCodeRecordsRequest;
6769
- type index$2_RedeemCodeRecordsResponse = RedeemCodeRecordsResponse;
6770
- type index$2_RedeemCodeRedeemRequest = RedeemCodeRedeemRequest;
6771
- type index$2_RedeemCodeRedeemResponse = RedeemCodeRedeemResponse;
6772
- type index$2_RedeemCodeSummary = RedeemCodeSummary;
6773
- declare const index$2_redeemCodeEndpoints: typeof redeemCodeEndpoints;
6774
- declare const index$2_redeemCodeMembershipLevelSchema: typeof redeemCodeMembershipLevelSchema;
6775
- declare const index$2_redeemCodeRecordItemSchema: typeof redeemCodeRecordItemSchema;
6776
- declare const index$2_redeemCodeRecordsRequestSchema: typeof redeemCodeRecordsRequestSchema;
6777
- declare const index$2_redeemCodeRecordsResponseSchema: typeof redeemCodeRecordsResponseSchema;
6778
- declare const index$2_redeemCodeRedeemRequestSchema: typeof redeemCodeRedeemRequestSchema;
6779
- declare const index$2_redeemCodeRedeemResponseSchema: typeof redeemCodeRedeemResponseSchema;
6780
- declare const index$2_redeemCodeSummarySchema: typeof redeemCodeSummarySchema;
6841
+ type index$3_RedeemCodeClient = RedeemCodeClient;
6842
+ declare const index$3_RedeemCodeClient: typeof RedeemCodeClient;
6843
+ type index$3_RedeemCodeRecordItem = RedeemCodeRecordItem;
6844
+ type index$3_RedeemCodeRecordsRequest = RedeemCodeRecordsRequest;
6845
+ type index$3_RedeemCodeRecordsResponse = RedeemCodeRecordsResponse;
6846
+ type index$3_RedeemCodeRedeemRequest = RedeemCodeRedeemRequest;
6847
+ type index$3_RedeemCodeRedeemResponse = RedeemCodeRedeemResponse;
6848
+ type index$3_RedeemCodeSummary = RedeemCodeSummary;
6849
+ declare const index$3_redeemCodeEndpoints: typeof redeemCodeEndpoints;
6850
+ declare const index$3_redeemCodeMembershipLevelSchema: typeof redeemCodeMembershipLevelSchema;
6851
+ declare const index$3_redeemCodeRecordItemSchema: typeof redeemCodeRecordItemSchema;
6852
+ declare const index$3_redeemCodeRecordsRequestSchema: typeof redeemCodeRecordsRequestSchema;
6853
+ declare const index$3_redeemCodeRecordsResponseSchema: typeof redeemCodeRecordsResponseSchema;
6854
+ declare const index$3_redeemCodeRedeemRequestSchema: typeof redeemCodeRedeemRequestSchema;
6855
+ declare const index$3_redeemCodeRedeemResponseSchema: typeof redeemCodeRedeemResponseSchema;
6856
+ declare const index$3_redeemCodeSummarySchema: typeof redeemCodeSummarySchema;
6857
+ declare namespace index$3 {
6858
+ export { index$3_RedeemCodeClient as RedeemCodeClient, type index$3_RedeemCodeRecordItem as RedeemCodeRecordItem, type index$3_RedeemCodeRecordsRequest as RedeemCodeRecordsRequest, type index$3_RedeemCodeRecordsResponse as RedeemCodeRecordsResponse, type index$3_RedeemCodeRedeemRequest as RedeemCodeRedeemRequest, type index$3_RedeemCodeRedeemResponse as RedeemCodeRedeemResponse, type index$3_RedeemCodeSummary as RedeemCodeSummary, index$3_redeemCodeEndpoints as redeemCodeEndpoints, index$3_redeemCodeMembershipLevelSchema as redeemCodeMembershipLevelSchema, index$3_redeemCodeRecordItemSchema as redeemCodeRecordItemSchema, index$3_redeemCodeRecordsRequestSchema as redeemCodeRecordsRequestSchema, index$3_redeemCodeRecordsResponseSchema as redeemCodeRecordsResponseSchema, index$3_redeemCodeRedeemRequestSchema as redeemCodeRedeemRequestSchema, index$3_redeemCodeRedeemResponseSchema as redeemCodeRedeemResponseSchema, index$3_redeemCodeSummarySchema as redeemCodeSummarySchema };
6859
+ }
6860
+
6861
+ /** Skill marketplace API endpoints. */
6862
+ declare const skillMarketEndpoints: {
6863
+ /** List marketplace skills. */
6864
+ readonly list: Endpoint<{
6865
+ page: number;
6866
+ pageSize: number;
6867
+ lang?: string | undefined;
6868
+ category?: string | undefined;
6869
+ search?: string | undefined;
6870
+ sort?: "rating" | "popular" | "newest" | undefined;
6871
+ repoId?: string | undefined;
6872
+ }, {
6873
+ skills: {
6874
+ id: string;
6875
+ folderName: string;
6876
+ name: string;
6877
+ description: string;
6878
+ tags: string[];
6879
+ repoLabel: string;
6880
+ isOfficial: boolean;
6881
+ downloadCount: number;
6882
+ rating: number;
6883
+ ratingCount: number;
6884
+ version: string;
6885
+ updatedAt: string;
6886
+ summary?: string | undefined;
6887
+ icon?: string | undefined;
6888
+ category?: string | null | undefined;
6889
+ qualityScore?: number | null | undefined;
6890
+ }[];
6891
+ total: number;
6892
+ pageCount: number;
6893
+ }>;
6894
+ /** Fetch skill detail by id. */
6895
+ readonly detail: (skillId: string) => Endpoint<{
6896
+ lang?: string | undefined;
6897
+ }, {
6898
+ id: string;
6899
+ folderName: string;
6900
+ name: string;
6901
+ description: string;
6902
+ tags: string[];
6903
+ repoLabel: string;
6904
+ isOfficial: boolean;
6905
+ downloadCount: number;
6906
+ rating: number;
6907
+ ratingCount: number;
6908
+ version: string;
6909
+ updatedAt: string;
6910
+ pathInRepo: string;
6911
+ repoUrl: string;
6912
+ fullContent: string;
6913
+ createdAt: string;
6914
+ summary?: string | undefined;
6915
+ icon?: string | undefined;
6916
+ category?: string | null | undefined;
6917
+ qualityScore?: number | null | undefined;
6918
+ }>;
6919
+ /** Batch check for updates. */
6920
+ readonly checkUpdates: Endpoint<{
6921
+ installed: {
6922
+ skillId: string;
6923
+ version: string;
6924
+ }[];
6925
+ }, {
6926
+ updates: {
6927
+ skillId: string;
6928
+ hasUpdate: boolean;
6929
+ }[];
6930
+ }>;
6931
+ /** Rate a skill. */
6932
+ readonly rate: (skillId: string) => Endpoint<{
6933
+ rating: number;
6934
+ comment?: string | undefined;
6935
+ }, {
6936
+ ok: boolean;
6937
+ rating: number | null;
6938
+ ratingCount: number;
6939
+ }>;
6940
+ };
6941
+
6942
+ /** A single skill entry in the marketplace list. */
6943
+ declare const marketSkillEntrySchema: z.ZodObject<{
6944
+ id: z.ZodString;
6945
+ folderName: z.ZodString;
6946
+ name: z.ZodString;
6947
+ description: z.ZodString;
6948
+ summary: z.ZodOptional<z.ZodString>;
6949
+ icon: z.ZodOptional<z.ZodString>;
6950
+ category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6951
+ tags: z.ZodArray<z.ZodString>;
6952
+ repoLabel: z.ZodString;
6953
+ isOfficial: z.ZodBoolean;
6954
+ qualityScore: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
6955
+ downloadCount: z.ZodNumber;
6956
+ rating: z.ZodNumber;
6957
+ ratingCount: z.ZodNumber;
6958
+ version: z.ZodString;
6959
+ updatedAt: z.ZodString;
6960
+ }, z.core.$strip>;
6961
+ /** Request schema for listing marketplace skills. */
6962
+ declare const skillMarketListRequestSchema: z.ZodObject<{
6963
+ lang: z.ZodOptional<z.ZodString>;
6964
+ category: z.ZodOptional<z.ZodString>;
6965
+ search: z.ZodOptional<z.ZodString>;
6966
+ sort: z.ZodOptional<z.ZodEnum<{
6967
+ rating: "rating";
6968
+ popular: "popular";
6969
+ newest: "newest";
6970
+ }>>;
6971
+ repoId: z.ZodOptional<z.ZodString>;
6972
+ page: z.ZodDefault<z.ZodNumber>;
6973
+ pageSize: z.ZodDefault<z.ZodNumber>;
6974
+ }, z.core.$strip>;
6975
+ /** Response schema for listing marketplace skills. */
6976
+ declare const skillMarketListResponseSchema: z.ZodObject<{
6977
+ skills: z.ZodArray<z.ZodObject<{
6978
+ id: z.ZodString;
6979
+ folderName: z.ZodString;
6980
+ name: z.ZodString;
6981
+ description: z.ZodString;
6982
+ summary: z.ZodOptional<z.ZodString>;
6983
+ icon: z.ZodOptional<z.ZodString>;
6984
+ category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6985
+ tags: z.ZodArray<z.ZodString>;
6986
+ repoLabel: z.ZodString;
6987
+ isOfficial: z.ZodBoolean;
6988
+ qualityScore: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
6989
+ downloadCount: z.ZodNumber;
6990
+ rating: z.ZodNumber;
6991
+ ratingCount: z.ZodNumber;
6992
+ version: z.ZodString;
6993
+ updatedAt: z.ZodString;
6994
+ }, z.core.$strip>>;
6995
+ total: z.ZodNumber;
6996
+ pageCount: z.ZodNumber;
6997
+ }, z.core.$strip>;
6998
+ /** Response schema for a skill detail. */
6999
+ declare const skillMarketDetailResponseSchema: z.ZodObject<{
7000
+ id: z.ZodString;
7001
+ folderName: z.ZodString;
7002
+ name: z.ZodString;
7003
+ description: z.ZodString;
7004
+ summary: z.ZodOptional<z.ZodString>;
7005
+ icon: z.ZodOptional<z.ZodString>;
7006
+ category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7007
+ tags: z.ZodArray<z.ZodString>;
7008
+ repoLabel: z.ZodString;
7009
+ isOfficial: z.ZodBoolean;
7010
+ qualityScore: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
7011
+ downloadCount: z.ZodNumber;
7012
+ rating: z.ZodNumber;
7013
+ ratingCount: z.ZodNumber;
7014
+ version: z.ZodString;
7015
+ updatedAt: z.ZodString;
7016
+ pathInRepo: z.ZodString;
7017
+ repoUrl: z.ZodString;
7018
+ fullContent: z.ZodString;
7019
+ createdAt: z.ZodString;
7020
+ }, z.core.$strip>;
7021
+ /** Request schema for batch update check. */
7022
+ declare const skillMarketCheckUpdatesRequestSchema: z.ZodObject<{
7023
+ installed: z.ZodArray<z.ZodObject<{
7024
+ skillId: z.ZodString;
7025
+ version: z.ZodString;
7026
+ }, z.core.$strip>>;
7027
+ }, z.core.$strip>;
7028
+ /** Response schema for batch update check. */
7029
+ declare const skillMarketCheckUpdatesResponseSchema: z.ZodObject<{
7030
+ updates: z.ZodArray<z.ZodObject<{
7031
+ skillId: z.ZodString;
7032
+ hasUpdate: z.ZodBoolean;
7033
+ }, z.core.$strip>>;
7034
+ }, z.core.$strip>;
7035
+ /** Request schema for rating a skill. */
7036
+ declare const skillMarketRateRequestSchema: z.ZodObject<{
7037
+ rating: z.ZodNumber;
7038
+ comment: z.ZodOptional<z.ZodString>;
7039
+ }, z.core.$strip>;
7040
+ /** Response schema for rating a skill. */
7041
+ declare const skillMarketRateResponseSchema: z.ZodObject<{
7042
+ ok: z.ZodBoolean;
7043
+ rating: z.ZodNullable<z.ZodNumber>;
7044
+ ratingCount: z.ZodNumber;
7045
+ }, z.core.$strip>;
7046
+ /** Market skill entry type. */
7047
+ type MarketSkillEntry = z.infer<typeof marketSkillEntrySchema>;
7048
+ /** List request type. */
7049
+ type SkillMarketListRequest = z.infer<typeof skillMarketListRequestSchema>;
7050
+ /** List response type. */
7051
+ type SkillMarketListResponse = z.infer<typeof skillMarketListResponseSchema>;
7052
+ /** Detail response type. */
7053
+ type SkillMarketDetailResponse = z.infer<typeof skillMarketDetailResponseSchema>;
7054
+ /** Check updates request type. */
7055
+ type SkillMarketCheckUpdatesRequest = z.infer<typeof skillMarketCheckUpdatesRequestSchema>;
7056
+ /** Check updates response type. */
7057
+ type SkillMarketCheckUpdatesResponse = z.infer<typeof skillMarketCheckUpdatesResponseSchema>;
7058
+ /** Rate request type. */
7059
+ type SkillMarketRateRequest = z.infer<typeof skillMarketRateRequestSchema>;
7060
+ /** Rate response type. */
7061
+ type SkillMarketRateResponse = z.infer<typeof skillMarketRateResponseSchema>;
7062
+
7063
+ type SkillMarketSdkHost = SdkHost<{
7064
+ skillMarket: typeof skillMarketEndpoints;
7065
+ }>;
7066
+ declare class SkillMarketClient {
7067
+ /** SDK host used for skill market requests. */
7068
+ private readonly sdk;
7069
+ /** Create skill market client. */
7070
+ constructor(sdk: SkillMarketSdkHost);
7071
+ /** List marketplace skills with optional filters. */
7072
+ list(params?: SkillMarketListRequest): Promise<SkillMarketListResponse>;
7073
+ /** Fetch skill detail by id. */
7074
+ detail(skillId: string, lang?: string): Promise<SkillMarketDetailResponse>;
7075
+ /**
7076
+ * Download a skill as ZIP archive.
7077
+ * Uses direct fetch (binary response, not JSON Endpoint validation).
7078
+ */
7079
+ download(skillId: string, lang?: string): Promise<{
7080
+ data: ArrayBuffer;
7081
+ fileName: string;
7082
+ }>;
7083
+ /** Batch check for available updates. */
7084
+ checkUpdates(payload: SkillMarketCheckUpdatesRequest): Promise<SkillMarketCheckUpdatesResponse>;
7085
+ /** Rate a skill (1-5). */
7086
+ rate(skillId: string, rating: number, comment?: string): Promise<SkillMarketRateResponse>;
7087
+ }
7088
+
7089
+ type index$2_MarketSkillEntry = MarketSkillEntry;
7090
+ type index$2_SkillMarketCheckUpdatesRequest = SkillMarketCheckUpdatesRequest;
7091
+ type index$2_SkillMarketCheckUpdatesResponse = SkillMarketCheckUpdatesResponse;
7092
+ type index$2_SkillMarketClient = SkillMarketClient;
7093
+ declare const index$2_SkillMarketClient: typeof SkillMarketClient;
7094
+ type index$2_SkillMarketDetailResponse = SkillMarketDetailResponse;
7095
+ type index$2_SkillMarketListRequest = SkillMarketListRequest;
7096
+ type index$2_SkillMarketListResponse = SkillMarketListResponse;
7097
+ type index$2_SkillMarketRateRequest = SkillMarketRateRequest;
7098
+ type index$2_SkillMarketRateResponse = SkillMarketRateResponse;
7099
+ declare const index$2_marketSkillEntrySchema: typeof marketSkillEntrySchema;
7100
+ declare const index$2_skillMarketCheckUpdatesRequestSchema: typeof skillMarketCheckUpdatesRequestSchema;
7101
+ declare const index$2_skillMarketCheckUpdatesResponseSchema: typeof skillMarketCheckUpdatesResponseSchema;
7102
+ declare const index$2_skillMarketDetailResponseSchema: typeof skillMarketDetailResponseSchema;
7103
+ declare const index$2_skillMarketEndpoints: typeof skillMarketEndpoints;
7104
+ declare const index$2_skillMarketListRequestSchema: typeof skillMarketListRequestSchema;
7105
+ declare const index$2_skillMarketListResponseSchema: typeof skillMarketListResponseSchema;
7106
+ declare const index$2_skillMarketRateRequestSchema: typeof skillMarketRateRequestSchema;
7107
+ declare const index$2_skillMarketRateResponseSchema: typeof skillMarketRateResponseSchema;
6781
7108
  declare namespace index$2 {
6782
- export { index$2_RedeemCodeClient as RedeemCodeClient, type index$2_RedeemCodeRecordItem as RedeemCodeRecordItem, type index$2_RedeemCodeRecordsRequest as RedeemCodeRecordsRequest, type index$2_RedeemCodeRecordsResponse as RedeemCodeRecordsResponse, type index$2_RedeemCodeRedeemRequest as RedeemCodeRedeemRequest, type index$2_RedeemCodeRedeemResponse as RedeemCodeRedeemResponse, type index$2_RedeemCodeSummary as RedeemCodeSummary, index$2_redeemCodeEndpoints as redeemCodeEndpoints, index$2_redeemCodeMembershipLevelSchema as redeemCodeMembershipLevelSchema, index$2_redeemCodeRecordItemSchema as redeemCodeRecordItemSchema, index$2_redeemCodeRecordsRequestSchema as redeemCodeRecordsRequestSchema, index$2_redeemCodeRecordsResponseSchema as redeemCodeRecordsResponseSchema, index$2_redeemCodeRedeemRequestSchema as redeemCodeRedeemRequestSchema, index$2_redeemCodeRedeemResponseSchema as redeemCodeRedeemResponseSchema, index$2_redeemCodeSummarySchema as redeemCodeSummarySchema };
7109
+ export { type index$2_MarketSkillEntry as MarketSkillEntry, type index$2_SkillMarketCheckUpdatesRequest as SkillMarketCheckUpdatesRequest, type index$2_SkillMarketCheckUpdatesResponse as SkillMarketCheckUpdatesResponse, index$2_SkillMarketClient as SkillMarketClient, type index$2_SkillMarketDetailResponse as SkillMarketDetailResponse, type index$2_SkillMarketListRequest as SkillMarketListRequest, type index$2_SkillMarketListResponse as SkillMarketListResponse, type index$2_SkillMarketRateRequest as SkillMarketRateRequest, type index$2_SkillMarketRateResponse as SkillMarketRateResponse, index$2_marketSkillEntrySchema as marketSkillEntrySchema, index$2_skillMarketCheckUpdatesRequestSchema as skillMarketCheckUpdatesRequestSchema, index$2_skillMarketCheckUpdatesResponseSchema as skillMarketCheckUpdatesResponseSchema, index$2_skillMarketDetailResponseSchema as skillMarketDetailResponseSchema, index$2_skillMarketEndpoints as skillMarketEndpoints, index$2_skillMarketListRequestSchema as skillMarketListRequestSchema, index$2_skillMarketListResponseSchema as skillMarketListResponseSchema, index$2_skillMarketRateRequestSchema as skillMarketRateRequestSchema, index$2_skillMarketRateResponseSchema as skillMarketRateResponseSchema };
6783
7110
  }
6784
7111
 
6785
7112
  /** Skill market API endpoints. */
@@ -7333,7 +7660,9 @@ declare class SaaSClient extends BaseSaaSClient<SaaSContract> {
7333
7660
  readonly payment: PaymentClient;
7334
7661
  /** Redeem code-related APIs. */
7335
7662
  readonly redeemCode: RedeemCodeClient;
7336
- /** Skill market APIs. */
7663
+ /** Skill marketplace APIs. */
7664
+ readonly skillMarket: SkillMarketClient;
7665
+ /** Skill management APIs. */
7337
7666
  readonly skills: SkillsClient;
7338
7667
  /** User-related APIs. */
7339
7668
  readonly user: UserClient;
@@ -7382,4 +7711,4 @@ declare function createTrpcClient(options: TrpcClientOptions): _trpc_client.TRPC
7382
7711
  transformer: false;
7383
7712
  }, _trpc_server.TRPCDecorateCreateRouterOptions<_trpc_server.TRPCCreateRouterOptions>>>;
7384
7713
 
7385
- 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 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 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 V3TextGenerateRequest, type V3TextGenerateResponse, 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$8 as aiModule, aiProviderTemplateModelSchema, aiProviderTemplateSchema, aiProviderTemplatesPayloadSchema, aiProviderTemplatesRequestSchema, aiProviderTemplatesResponseSchema, aiProviderTemplatesSuccessSchema, aiResponsesRequestSchema, aiToolsEndpoints, index$7 as aiToolsModule, analyzeSkillsRequestSchema, analyzeSkillsResponseSchema, authEndpoints, authExchangeRequestSchema, authExchangeResponseSchema, authLogoutRequestSchema, authLogoutResponseSchema, index$6 as authModule, authRefreshErrorSchema, authRefreshRequestSchema, authRefreshResponseSchema, authRefreshSuccessSchema, authRefreshUserSchema, auxiliaryEndpoints, auxiliaryInferRequestSchema, auxiliaryInferResponseSchema, index$5 as auxiliaryModule, auxiliaryQuotaResponseSchema, contract, createEmbed, createPricingEmbed, createRechargeEmbed, createTrpcClient, feedbackDetailPayloadSchema, feedbackDetailRequestSchema, feedbackDetailResponseSchema, feedbackEndpoints, feedbackItemSchema, feedbackListPayloadSchema, feedbackListRequestSchema, feedbackListResponseSchema, index$4 as feedbackModule, feedbackSaasStatusSchema, feedbackSourceSchema, feedbackSubmitErrorSchema, feedbackSubmitRequestSchema, feedbackSubmitResponseSchema, feedbackTypeSchema, inputSlotSchema, mergeHeaders, normalizeHeaders, orderStatusRequestSchema, orderStatusResponseSchema, paramSchemaSchema, paymentEndpoints, index$3 as paymentModule, rechargeRequestSchema, rechargeResponseSchema, recommendActionsRequestSchema, recommendActionsResponseSchema, redeemCodeEndpoints, redeemCodeMembershipLevelSchema, index$2 as redeemCodeModule, redeemCodeRecordItemSchema, redeemCodeRecordsRequestSchema, redeemCodeRecordsResponseSchema, redeemCodeRedeemRequestSchema, redeemCodeRedeemResponseSchema, redeemCodeSummarySchema, refundRequestSchema, refundResponseSchema, request, skillArchiveFormatSchema, skillListItemSchema, 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, v3TextGenerateRequestSchema, v3TextGenerateResponseSchema, v3UploadResponseSchema, v3VariantSchema };
7714
+ 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 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 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 V3TextGenerateRequest, type V3TextGenerateResponse, 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, 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, index$2 as skillMarketModule, 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, v3TextGenerateRequestSchema, v3TextGenerateResponseSchema, v3UploadResponseSchema, v3VariantSchema };