@openloaf-saas/sdk 0.1.8 → 0.1.9
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 +686 -163
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -510,6 +510,90 @@ declare class SaaSContract {
|
|
|
510
510
|
};
|
|
511
511
|
}>;
|
|
512
512
|
};
|
|
513
|
+
/** Skill market endpoints. */
|
|
514
|
+
readonly skills: {
|
|
515
|
+
readonly list: Endpoint<{
|
|
516
|
+
page: number;
|
|
517
|
+
pageSize: number;
|
|
518
|
+
keyword?: string | undefined;
|
|
519
|
+
type?: "other" | "development" | "automation" | "ai" | "crawler" | "ops" | "writing" | "design" | undefined;
|
|
520
|
+
}, {
|
|
521
|
+
items: {
|
|
522
|
+
id: string;
|
|
523
|
+
slug: string;
|
|
524
|
+
name: string;
|
|
525
|
+
summary: string | null;
|
|
526
|
+
type: "other" | "development" | "automation" | "ai" | "crawler" | "ops" | "writing" | "design";
|
|
527
|
+
tags: string[];
|
|
528
|
+
source: "official_upload" | "user_upload";
|
|
529
|
+
visibility: "public" | "private";
|
|
530
|
+
status: "active" | "disabled";
|
|
531
|
+
owner: {
|
|
532
|
+
id: string;
|
|
533
|
+
name: string | null;
|
|
534
|
+
email: string | null;
|
|
535
|
+
} | null;
|
|
536
|
+
latestVersion: string | null;
|
|
537
|
+
downloadCount: number;
|
|
538
|
+
currentVersion: {
|
|
539
|
+
id: string;
|
|
540
|
+
version: string;
|
|
541
|
+
archiveFormat: "skill" | "zip" | "tar";
|
|
542
|
+
fileName: string;
|
|
543
|
+
fileSize: number;
|
|
544
|
+
changelog: string | null;
|
|
545
|
+
createdAt: string;
|
|
546
|
+
} | null;
|
|
547
|
+
createdAt: string;
|
|
548
|
+
updatedAt: string;
|
|
549
|
+
}[];
|
|
550
|
+
page: number;
|
|
551
|
+
pageSize: number;
|
|
552
|
+
total: number;
|
|
553
|
+
}>;
|
|
554
|
+
readonly detail: (skillId: string) => Endpoint<void, {
|
|
555
|
+
skill: {
|
|
556
|
+
id: string;
|
|
557
|
+
slug: string;
|
|
558
|
+
name: string;
|
|
559
|
+
summary: string | null;
|
|
560
|
+
type: "other" | "development" | "automation" | "ai" | "crawler" | "ops" | "writing" | "design";
|
|
561
|
+
tags: string[];
|
|
562
|
+
source: "official_upload" | "user_upload";
|
|
563
|
+
visibility: "public" | "private";
|
|
564
|
+
status: "active" | "disabled";
|
|
565
|
+
owner: {
|
|
566
|
+
id: string;
|
|
567
|
+
name: string | null;
|
|
568
|
+
email: string | null;
|
|
569
|
+
} | null;
|
|
570
|
+
latestVersion: string | null;
|
|
571
|
+
downloadCount: number;
|
|
572
|
+
currentVersion: {
|
|
573
|
+
id: string;
|
|
574
|
+
version: string;
|
|
575
|
+
archiveFormat: "skill" | "zip" | "tar";
|
|
576
|
+
fileName: string;
|
|
577
|
+
fileSize: number;
|
|
578
|
+
changelog: string | null;
|
|
579
|
+
createdAt: string;
|
|
580
|
+
} | null;
|
|
581
|
+
createdAt: string;
|
|
582
|
+
updatedAt: string;
|
|
583
|
+
manifestJson: unknown;
|
|
584
|
+
readmeMarkdown: string | null;
|
|
585
|
+
versions: {
|
|
586
|
+
id: string;
|
|
587
|
+
version: string;
|
|
588
|
+
archiveFormat: "skill" | "zip" | "tar";
|
|
589
|
+
fileName: string;
|
|
590
|
+
fileSize: number;
|
|
591
|
+
changelog: string | null;
|
|
592
|
+
createdAt: string;
|
|
593
|
+
}[];
|
|
594
|
+
};
|
|
595
|
+
}>;
|
|
596
|
+
};
|
|
513
597
|
/** User endpoints. */
|
|
514
598
|
readonly user: {
|
|
515
599
|
readonly self: Endpoint<void, {
|
|
@@ -939,6 +1023,20 @@ declare const aiEndpoints: {
|
|
|
939
1023
|
}>;
|
|
940
1024
|
};
|
|
941
1025
|
|
|
1026
|
+
/** Optional chat session metadata shared by OpenAI-compatible chat requests. */
|
|
1027
|
+
declare const aiChatSessionMetadataSchema: z.ZodObject<{
|
|
1028
|
+
chatSessionId: z.ZodOptional<z.ZodString>;
|
|
1029
|
+
}, z.core.$strip>;
|
|
1030
|
+
/** OpenAI-compatible chat/completions request with optional session metadata. */
|
|
1031
|
+
declare const aiChatCompletionsRequestSchema: z.ZodObject<{
|
|
1032
|
+
chatSessionId: z.ZodOptional<z.ZodString>;
|
|
1033
|
+
model: z.ZodString;
|
|
1034
|
+
}, z.core.$loose>;
|
|
1035
|
+
/** OpenAI-compatible responses request with optional session metadata. */
|
|
1036
|
+
declare const aiResponsesRequestSchema: z.ZodObject<{
|
|
1037
|
+
chatSessionId: z.ZodOptional<z.ZodString>;
|
|
1038
|
+
model: z.ZodString;
|
|
1039
|
+
}, z.core.$loose>;
|
|
942
1040
|
declare const aiMediaInputSchema: z.ZodObject<{
|
|
943
1041
|
url: z.ZodOptional<z.ZodString>;
|
|
944
1042
|
base64: z.ZodOptional<z.ZodString>;
|
|
@@ -1730,6 +1828,9 @@ type AiVideoOutput = z.infer<typeof aiVideoOutputSchema>;
|
|
|
1730
1828
|
type AiModelCapabilitiesInput = z.infer<typeof aiModelCapabilitiesInputSchema>;
|
|
1731
1829
|
type AiModelCapabilitiesOutput = z.infer<typeof aiModelCapabilitiesOutputSchema>;
|
|
1732
1830
|
type AiModelCapabilities = z.infer<typeof aiModelCapabilitiesSchema>;
|
|
1831
|
+
type AiChatSessionMetadata = z.infer<typeof aiChatSessionMetadataSchema>;
|
|
1832
|
+
type AiChatCompletionsRequest = z.infer<typeof aiChatCompletionsRequestSchema>;
|
|
1833
|
+
type AiResponsesRequest = z.infer<typeof aiResponsesRequestSchema>;
|
|
1733
1834
|
type AiImageRequest = z.infer<typeof aiImageRequestSchema>;
|
|
1734
1835
|
type AiVideoRequest = z.infer<typeof aiVideoRequestSchema>;
|
|
1735
1836
|
type AiTaskCreatedResponse = z.infer<typeof aiTaskCreatedResponseSchema>;
|
|
@@ -2347,87 +2448,93 @@ type AiModelCapabilityInputKey = (typeof AI_MODEL_CAPABILITY_INPUT_KEYS)[number]
|
|
|
2347
2448
|
declare const AI_MODEL_CAPABILITY_OUTPUT_KEYS: readonly ["supportsMulti", "supportsAudio"];
|
|
2348
2449
|
type AiModelCapabilityOutputKey = (typeof AI_MODEL_CAPABILITY_OUTPUT_KEYS)[number];
|
|
2349
2450
|
|
|
2350
|
-
declare const index$
|
|
2351
|
-
declare const index$
|
|
2352
|
-
declare const index$
|
|
2353
|
-
declare const index$
|
|
2354
|
-
type index$
|
|
2355
|
-
type index$
|
|
2356
|
-
type index$
|
|
2357
|
-
|
|
2358
|
-
type index$
|
|
2359
|
-
|
|
2360
|
-
type index$
|
|
2361
|
-
type index$
|
|
2362
|
-
type index$
|
|
2363
|
-
type index$
|
|
2364
|
-
type index$
|
|
2365
|
-
type index$
|
|
2366
|
-
type index$
|
|
2367
|
-
type index$
|
|
2368
|
-
type index$
|
|
2369
|
-
type index$
|
|
2370
|
-
type index$
|
|
2371
|
-
type index$
|
|
2372
|
-
type index$
|
|
2373
|
-
type index$
|
|
2374
|
-
type index$
|
|
2375
|
-
type index$
|
|
2376
|
-
type index$
|
|
2377
|
-
type index$
|
|
2378
|
-
type index$
|
|
2379
|
-
type index$
|
|
2380
|
-
type index$
|
|
2381
|
-
type index$
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
declare const index$
|
|
2386
|
-
declare const index$
|
|
2387
|
-
declare const index$
|
|
2388
|
-
declare const index$
|
|
2389
|
-
declare const index$
|
|
2390
|
-
declare const index$
|
|
2391
|
-
declare const index$
|
|
2392
|
-
declare const index$
|
|
2393
|
-
declare const index$
|
|
2394
|
-
declare const index$
|
|
2395
|
-
declare const index$
|
|
2396
|
-
declare const index$
|
|
2397
|
-
declare const index$
|
|
2398
|
-
declare const index$
|
|
2399
|
-
declare const index$
|
|
2400
|
-
declare const index$
|
|
2401
|
-
declare const index$
|
|
2402
|
-
declare const index$
|
|
2403
|
-
declare const index$
|
|
2404
|
-
declare const index$
|
|
2405
|
-
declare const index$
|
|
2406
|
-
declare const index$
|
|
2407
|
-
declare const index$
|
|
2408
|
-
declare const index$
|
|
2409
|
-
declare const index$
|
|
2410
|
-
declare const index$
|
|
2411
|
-
declare const index$
|
|
2412
|
-
declare const index$
|
|
2413
|
-
declare const index$
|
|
2414
|
-
declare const index$
|
|
2415
|
-
declare const index$
|
|
2416
|
-
declare const index$
|
|
2417
|
-
declare const index$
|
|
2418
|
-
declare const index$
|
|
2419
|
-
declare const index$
|
|
2420
|
-
declare const index$
|
|
2421
|
-
declare const index$
|
|
2422
|
-
declare const index$
|
|
2423
|
-
declare const index$
|
|
2424
|
-
declare const index$
|
|
2425
|
-
declare const index$
|
|
2426
|
-
declare const index$
|
|
2427
|
-
declare const index$
|
|
2428
|
-
declare const index$
|
|
2429
|
-
declare
|
|
2430
|
-
|
|
2451
|
+
declare const index$6_AI_MODEL_CAPABILITY_INPUT_KEYS: typeof AI_MODEL_CAPABILITY_INPUT_KEYS;
|
|
2452
|
+
declare const index$6_AI_MODEL_CAPABILITY_OUTPUT_KEYS: typeof AI_MODEL_CAPABILITY_OUTPUT_KEYS;
|
|
2453
|
+
declare const index$6_AI_MODEL_TAGS: typeof AI_MODEL_TAGS;
|
|
2454
|
+
declare const index$6_AI_MODEL_TAG_LABELS: typeof AI_MODEL_TAG_LABELS;
|
|
2455
|
+
type index$6_AiChatCompletionsRequest = AiChatCompletionsRequest;
|
|
2456
|
+
type index$6_AiChatModel = AiChatModel;
|
|
2457
|
+
type index$6_AiChatModelsResponse = AiChatModelsResponse;
|
|
2458
|
+
type index$6_AiChatSessionMetadata = AiChatSessionMetadata;
|
|
2459
|
+
type index$6_AiClient = AiClient;
|
|
2460
|
+
declare const index$6_AiClient: typeof AiClient;
|
|
2461
|
+
type index$6_AiFileUploadResponse = AiFileUploadResponse;
|
|
2462
|
+
type index$6_AiImageInputs = AiImageInputs;
|
|
2463
|
+
type index$6_AiImageOutput = AiImageOutput;
|
|
2464
|
+
type index$6_AiImageRequest = AiImageRequest;
|
|
2465
|
+
type index$6_AiMediaInput = AiMediaInput;
|
|
2466
|
+
type index$6_AiModel = AiModel;
|
|
2467
|
+
type index$6_AiModelCapabilities = AiModelCapabilities;
|
|
2468
|
+
type index$6_AiModelCapabilitiesInput = AiModelCapabilitiesInput;
|
|
2469
|
+
type index$6_AiModelCapabilitiesOutput = AiModelCapabilitiesOutput;
|
|
2470
|
+
type index$6_AiModelCapabilityInputKey = AiModelCapabilityInputKey;
|
|
2471
|
+
type index$6_AiModelCapabilityOutputKey = AiModelCapabilityOutputKey;
|
|
2472
|
+
type index$6_AiModelTag = AiModelTag;
|
|
2473
|
+
type index$6_AiModelsResponse = AiModelsResponse;
|
|
2474
|
+
type index$6_AiModelsUpdatedAtData = AiModelsUpdatedAtData;
|
|
2475
|
+
type index$6_AiModelsUpdatedAtResponse = AiModelsUpdatedAtResponse;
|
|
2476
|
+
type index$6_AiProviderTemplate = AiProviderTemplate;
|
|
2477
|
+
type index$6_AiProviderTemplateModel = AiProviderTemplateModel;
|
|
2478
|
+
type index$6_AiProviderTemplatesResponse = AiProviderTemplatesResponse;
|
|
2479
|
+
type index$6_AiResponsesRequest = AiResponsesRequest;
|
|
2480
|
+
type index$6_AiTaskCancelResponse = AiTaskCancelResponse;
|
|
2481
|
+
type index$6_AiTaskCreatedResponse = AiTaskCreatedResponse;
|
|
2482
|
+
type index$6_AiTaskResponse = AiTaskResponse;
|
|
2483
|
+
type index$6_AiVideoInputs = AiVideoInputs;
|
|
2484
|
+
type index$6_AiVideoOutput = AiVideoOutput;
|
|
2485
|
+
type index$6_AiVideoRequest = AiVideoRequest;
|
|
2486
|
+
declare const index$6_aiChatCompletionsRequestSchema: typeof aiChatCompletionsRequestSchema;
|
|
2487
|
+
declare const index$6_aiChatModelSchema: typeof aiChatModelSchema;
|
|
2488
|
+
declare const index$6_aiChatModelsPayloadSchema: typeof aiChatModelsPayloadSchema;
|
|
2489
|
+
declare const index$6_aiChatModelsResponseSchema: typeof aiChatModelsResponseSchema;
|
|
2490
|
+
declare const index$6_aiChatModelsSuccessSchema: typeof aiChatModelsSuccessSchema;
|
|
2491
|
+
declare const index$6_aiChatSessionMetadataSchema: typeof aiChatSessionMetadataSchema;
|
|
2492
|
+
declare const index$6_aiEndpoints: typeof aiEndpoints;
|
|
2493
|
+
declare const index$6_aiErrorResponseSchema: typeof aiErrorResponseSchema;
|
|
2494
|
+
declare const index$6_aiImageInputsSchema: typeof aiImageInputsSchema;
|
|
2495
|
+
declare const index$6_aiImageOutputSchema: typeof aiImageOutputSchema;
|
|
2496
|
+
declare const index$6_aiImageRequestSchema: typeof aiImageRequestSchema;
|
|
2497
|
+
declare const index$6_aiMediaInputSchema: typeof aiMediaInputSchema;
|
|
2498
|
+
declare const index$6_aiModelCapabilitiesInputSchema: typeof aiModelCapabilitiesInputSchema;
|
|
2499
|
+
declare const index$6_aiModelCapabilitiesOutputSchema: typeof aiModelCapabilitiesOutputSchema;
|
|
2500
|
+
declare const index$6_aiModelCapabilitiesSchema: typeof aiModelCapabilitiesSchema;
|
|
2501
|
+
declare const index$6_aiModelCapabilityCommonSchema: typeof aiModelCapabilityCommonSchema;
|
|
2502
|
+
declare const index$6_aiModelParameterFieldSchema: typeof aiModelParameterFieldSchema;
|
|
2503
|
+
declare const index$6_aiModelParamsSchema: typeof aiModelParamsSchema;
|
|
2504
|
+
declare const index$6_aiModelSchema: typeof aiModelSchema;
|
|
2505
|
+
declare const index$6_aiModelsPayloadSchema: typeof aiModelsPayloadSchema;
|
|
2506
|
+
declare const index$6_aiModelsRequestSchema: typeof aiModelsRequestSchema;
|
|
2507
|
+
declare const index$6_aiModelsResponseSchema: typeof aiModelsResponseSchema;
|
|
2508
|
+
declare const index$6_aiModelsSuccessSchema: typeof aiModelsSuccessSchema;
|
|
2509
|
+
declare const index$6_aiModelsUpdatedAtDataSchema: typeof aiModelsUpdatedAtDataSchema;
|
|
2510
|
+
declare const index$6_aiModelsUpdatedAtResponseSchema: typeof aiModelsUpdatedAtResponseSchema;
|
|
2511
|
+
declare const index$6_aiModelsUpdatedAtSuccessSchema: typeof aiModelsUpdatedAtSuccessSchema;
|
|
2512
|
+
declare const index$6_aiProviderTemplateModelSchema: typeof aiProviderTemplateModelSchema;
|
|
2513
|
+
declare const index$6_aiProviderTemplateSchema: typeof aiProviderTemplateSchema;
|
|
2514
|
+
declare const index$6_aiProviderTemplatesPayloadSchema: typeof aiProviderTemplatesPayloadSchema;
|
|
2515
|
+
declare const index$6_aiProviderTemplatesRequestSchema: typeof aiProviderTemplatesRequestSchema;
|
|
2516
|
+
declare const index$6_aiProviderTemplatesResponseSchema: typeof aiProviderTemplatesResponseSchema;
|
|
2517
|
+
declare const index$6_aiProviderTemplatesSuccessSchema: typeof aiProviderTemplatesSuccessSchema;
|
|
2518
|
+
declare const index$6_aiResponsesRequestSchema: typeof aiResponsesRequestSchema;
|
|
2519
|
+
declare const index$6_aiTaskCancelDataSchema: typeof aiTaskCancelDataSchema;
|
|
2520
|
+
declare const index$6_aiTaskCancelRequestSchema: typeof aiTaskCancelRequestSchema;
|
|
2521
|
+
declare const index$6_aiTaskCancelResponseSchema: typeof aiTaskCancelResponseSchema;
|
|
2522
|
+
declare const index$6_aiTaskCancelSuccessSchema: typeof aiTaskCancelSuccessSchema;
|
|
2523
|
+
declare const index$6_aiTaskCreatedDataSchema: typeof aiTaskCreatedDataSchema;
|
|
2524
|
+
declare const index$6_aiTaskCreatedResponseSchema: typeof aiTaskCreatedResponseSchema;
|
|
2525
|
+
declare const index$6_aiTaskCreatedSuccessSchema: typeof aiTaskCreatedSuccessSchema;
|
|
2526
|
+
declare const index$6_aiTaskDataSchema: typeof aiTaskDataSchema;
|
|
2527
|
+
declare const index$6_aiTaskErrorSchema: typeof aiTaskErrorSchema;
|
|
2528
|
+
declare const index$6_aiTaskRequestSchema: typeof aiTaskRequestSchema;
|
|
2529
|
+
declare const index$6_aiTaskResponseSchema: typeof aiTaskResponseSchema;
|
|
2530
|
+
declare const index$6_aiTaskResultTypeSchema: typeof aiTaskResultTypeSchema;
|
|
2531
|
+
declare const index$6_aiTaskStatusSchema: typeof aiTaskStatusSchema;
|
|
2532
|
+
declare const index$6_aiTaskSuccessSchema: typeof aiTaskSuccessSchema;
|
|
2533
|
+
declare const index$6_aiVideoInputsSchema: typeof aiVideoInputsSchema;
|
|
2534
|
+
declare const index$6_aiVideoOutputSchema: typeof aiVideoOutputSchema;
|
|
2535
|
+
declare const index$6_aiVideoRequestSchema: typeof aiVideoRequestSchema;
|
|
2536
|
+
declare namespace index$6 {
|
|
2537
|
+
export { index$6_AI_MODEL_CAPABILITY_INPUT_KEYS as AI_MODEL_CAPABILITY_INPUT_KEYS, index$6_AI_MODEL_CAPABILITY_OUTPUT_KEYS as AI_MODEL_CAPABILITY_OUTPUT_KEYS, index$6_AI_MODEL_TAGS as AI_MODEL_TAGS, index$6_AI_MODEL_TAG_LABELS as AI_MODEL_TAG_LABELS, type index$6_AiChatCompletionsRequest as AiChatCompletionsRequest, type index$6_AiChatModel as AiChatModel, type index$6_AiChatModelsResponse as AiChatModelsResponse, type index$6_AiChatSessionMetadata as AiChatSessionMetadata, index$6_AiClient as AiClient, type index$6_AiFileUploadResponse as AiFileUploadResponse, type index$6_AiImageInputs as AiImageInputs, type index$6_AiImageOutput as AiImageOutput, type index$6_AiImageRequest as AiImageRequest, type index$6_AiMediaInput as AiMediaInput, type index$6_AiModel as AiModel, type index$6_AiModelCapabilities as AiModelCapabilities, type index$6_AiModelCapabilitiesInput as AiModelCapabilitiesInput, type index$6_AiModelCapabilitiesOutput as AiModelCapabilitiesOutput, type index$6_AiModelCapabilityInputKey as AiModelCapabilityInputKey, type index$6_AiModelCapabilityOutputKey as AiModelCapabilityOutputKey, type index$6_AiModelTag as AiModelTag, type index$6_AiModelsResponse as AiModelsResponse, type index$6_AiModelsUpdatedAtData as AiModelsUpdatedAtData, type index$6_AiModelsUpdatedAtResponse as AiModelsUpdatedAtResponse, type index$6_AiProviderTemplate as AiProviderTemplate, type index$6_AiProviderTemplateModel as AiProviderTemplateModel, type index$6_AiProviderTemplatesResponse as AiProviderTemplatesResponse, type index$6_AiResponsesRequest as AiResponsesRequest, type index$6_AiTaskCancelResponse as AiTaskCancelResponse, type index$6_AiTaskCreatedResponse as AiTaskCreatedResponse, type index$6_AiTaskResponse as AiTaskResponse, type index$6_AiVideoInputs as AiVideoInputs, type index$6_AiVideoOutput as AiVideoOutput, type index$6_AiVideoRequest as AiVideoRequest, index$6_aiChatCompletionsRequestSchema as aiChatCompletionsRequestSchema, index$6_aiChatModelSchema as aiChatModelSchema, index$6_aiChatModelsPayloadSchema as aiChatModelsPayloadSchema, index$6_aiChatModelsResponseSchema as aiChatModelsResponseSchema, index$6_aiChatModelsSuccessSchema as aiChatModelsSuccessSchema, index$6_aiChatSessionMetadataSchema as aiChatSessionMetadataSchema, index$6_aiEndpoints as aiEndpoints, index$6_aiErrorResponseSchema as aiErrorResponseSchema, index$6_aiImageInputsSchema as aiImageInputsSchema, index$6_aiImageOutputSchema as aiImageOutputSchema, index$6_aiImageRequestSchema as aiImageRequestSchema, index$6_aiMediaInputSchema as aiMediaInputSchema, index$6_aiModelCapabilitiesInputSchema as aiModelCapabilitiesInputSchema, index$6_aiModelCapabilitiesOutputSchema as aiModelCapabilitiesOutputSchema, index$6_aiModelCapabilitiesSchema as aiModelCapabilitiesSchema, index$6_aiModelCapabilityCommonSchema as aiModelCapabilityCommonSchema, index$6_aiModelParameterFieldSchema as aiModelParameterFieldSchema, index$6_aiModelParamsSchema as aiModelParamsSchema, index$6_aiModelSchema as aiModelSchema, index$6_aiModelsPayloadSchema as aiModelsPayloadSchema, index$6_aiModelsRequestSchema as aiModelsRequestSchema, index$6_aiModelsResponseSchema as aiModelsResponseSchema, index$6_aiModelsSuccessSchema as aiModelsSuccessSchema, index$6_aiModelsUpdatedAtDataSchema as aiModelsUpdatedAtDataSchema, index$6_aiModelsUpdatedAtResponseSchema as aiModelsUpdatedAtResponseSchema, index$6_aiModelsUpdatedAtSuccessSchema as aiModelsUpdatedAtSuccessSchema, index$6_aiProviderTemplateModelSchema as aiProviderTemplateModelSchema, index$6_aiProviderTemplateSchema as aiProviderTemplateSchema, index$6_aiProviderTemplatesPayloadSchema as aiProviderTemplatesPayloadSchema, index$6_aiProviderTemplatesRequestSchema as aiProviderTemplatesRequestSchema, index$6_aiProviderTemplatesResponseSchema as aiProviderTemplatesResponseSchema, index$6_aiProviderTemplatesSuccessSchema as aiProviderTemplatesSuccessSchema, index$6_aiResponsesRequestSchema as aiResponsesRequestSchema, index$6_aiTaskCancelDataSchema as aiTaskCancelDataSchema, index$6_aiTaskCancelRequestSchema as aiTaskCancelRequestSchema, index$6_aiTaskCancelResponseSchema as aiTaskCancelResponseSchema, index$6_aiTaskCancelSuccessSchema as aiTaskCancelSuccessSchema, index$6_aiTaskCreatedDataSchema as aiTaskCreatedDataSchema, index$6_aiTaskCreatedResponseSchema as aiTaskCreatedResponseSchema, index$6_aiTaskCreatedSuccessSchema as aiTaskCreatedSuccessSchema, index$6_aiTaskDataSchema as aiTaskDataSchema, index$6_aiTaskErrorSchema as aiTaskErrorSchema, index$6_aiTaskRequestSchema as aiTaskRequestSchema, index$6_aiTaskResponseSchema as aiTaskResponseSchema, index$6_aiTaskResultTypeSchema as aiTaskResultTypeSchema, index$6_aiTaskStatusSchema as aiTaskStatusSchema, index$6_aiTaskSuccessSchema as aiTaskSuccessSchema, index$6_aiVideoInputsSchema as aiVideoInputsSchema, index$6_aiVideoOutputSchema as aiVideoOutputSchema, index$6_aiVideoRequestSchema as aiVideoRequestSchema };
|
|
2431
2538
|
}
|
|
2432
2539
|
|
|
2433
2540
|
declare const aiToolsEndpoints: {
|
|
@@ -2587,23 +2694,23 @@ declare class AiToolsClient {
|
|
|
2587
2694
|
}>;
|
|
2588
2695
|
}
|
|
2589
2696
|
|
|
2590
|
-
type index$
|
|
2591
|
-
declare const index$
|
|
2592
|
-
type index$
|
|
2593
|
-
type index$
|
|
2594
|
-
type index$
|
|
2595
|
-
type index$
|
|
2596
|
-
type index$
|
|
2597
|
-
type index$
|
|
2598
|
-
declare const index$
|
|
2599
|
-
declare const index$
|
|
2600
|
-
declare const index$
|
|
2601
|
-
declare const index$
|
|
2602
|
-
declare const index$
|
|
2603
|
-
declare const index$
|
|
2604
|
-
declare const index$
|
|
2605
|
-
declare namespace index$
|
|
2606
|
-
export { index$
|
|
2697
|
+
type index$5_AiToolsClient = AiToolsClient;
|
|
2698
|
+
declare const index$5_AiToolsClient: typeof AiToolsClient;
|
|
2699
|
+
type index$5_AnalyzeSkillsRequest = AnalyzeSkillsRequest;
|
|
2700
|
+
type index$5_AnalyzeSkillsResponse = AnalyzeSkillsResponse;
|
|
2701
|
+
type index$5_RecommendActionsRequest = RecommendActionsRequest;
|
|
2702
|
+
type index$5_RecommendActionsResponse = RecommendActionsResponse;
|
|
2703
|
+
type index$5_SummarizeRequest = SummarizeRequest;
|
|
2704
|
+
type index$5_SummarizeResponse = SummarizeResponse;
|
|
2705
|
+
declare const index$5_aiToolsEndpoints: typeof aiToolsEndpoints;
|
|
2706
|
+
declare const index$5_analyzeSkillsRequestSchema: typeof analyzeSkillsRequestSchema;
|
|
2707
|
+
declare const index$5_analyzeSkillsResponseSchema: typeof analyzeSkillsResponseSchema;
|
|
2708
|
+
declare const index$5_recommendActionsRequestSchema: typeof recommendActionsRequestSchema;
|
|
2709
|
+
declare const index$5_recommendActionsResponseSchema: typeof recommendActionsResponseSchema;
|
|
2710
|
+
declare const index$5_summarizeRequestSchema: typeof summarizeRequestSchema;
|
|
2711
|
+
declare const index$5_summarizeResponseSchema: typeof summarizeResponseSchema;
|
|
2712
|
+
declare namespace index$5 {
|
|
2713
|
+
export { index$5_AiToolsClient as AiToolsClient, type index$5_AnalyzeSkillsRequest as AnalyzeSkillsRequest, type index$5_AnalyzeSkillsResponse as AnalyzeSkillsResponse, type index$5_RecommendActionsRequest as RecommendActionsRequest, type index$5_RecommendActionsResponse as RecommendActionsResponse, type index$5_SummarizeRequest as SummarizeRequest, type index$5_SummarizeResponse as SummarizeResponse, index$5_aiToolsEndpoints as aiToolsEndpoints, index$5_analyzeSkillsRequestSchema as analyzeSkillsRequestSchema, index$5_analyzeSkillsResponseSchema as analyzeSkillsResponseSchema, index$5_recommendActionsRequestSchema as recommendActionsRequestSchema, index$5_recommendActionsResponseSchema as recommendActionsResponseSchema, index$5_summarizeRequestSchema as summarizeRequestSchema, index$5_summarizeResponseSchema as summarizeResponseSchema };
|
|
2607
2714
|
}
|
|
2608
2715
|
|
|
2609
2716
|
declare const authEndpoints: {
|
|
@@ -2732,28 +2839,28 @@ type AuthExchangeResponse = z.infer<typeof authExchangeResponseSchema>;
|
|
|
2732
2839
|
type AuthLogoutRequest = z.infer<typeof authLogoutRequestSchema>;
|
|
2733
2840
|
type AuthLogoutResponse = z.infer<typeof authLogoutResponseSchema>;
|
|
2734
2841
|
|
|
2735
|
-
type index$
|
|
2736
|
-
declare const index$
|
|
2737
|
-
type index$
|
|
2738
|
-
type index$
|
|
2739
|
-
type index$
|
|
2740
|
-
type index$
|
|
2741
|
-
type index$
|
|
2742
|
-
type index$
|
|
2743
|
-
type index$
|
|
2744
|
-
type index$
|
|
2745
|
-
declare const index$
|
|
2746
|
-
declare const index$
|
|
2747
|
-
declare const index$
|
|
2748
|
-
declare const index$
|
|
2749
|
-
declare const index$
|
|
2750
|
-
declare const index$
|
|
2751
|
-
declare const index$
|
|
2752
|
-
declare const index$
|
|
2753
|
-
declare const index$
|
|
2754
|
-
declare const index$
|
|
2755
|
-
declare namespace index$
|
|
2756
|
-
export { index$
|
|
2842
|
+
type index$4_AuthClient = AuthClient;
|
|
2843
|
+
declare const index$4_AuthClient: typeof AuthClient;
|
|
2844
|
+
type index$4_AuthExchangeRequest = AuthExchangeRequest;
|
|
2845
|
+
type index$4_AuthExchangeResponse = AuthExchangeResponse;
|
|
2846
|
+
type index$4_AuthLogoutRequest = AuthLogoutRequest;
|
|
2847
|
+
type index$4_AuthLogoutResponse = AuthLogoutResponse;
|
|
2848
|
+
type index$4_AuthRefreshError = AuthRefreshError;
|
|
2849
|
+
type index$4_AuthRefreshRequest = AuthRefreshRequest;
|
|
2850
|
+
type index$4_AuthRefreshResponse = AuthRefreshResponse;
|
|
2851
|
+
type index$4_AuthRefreshSuccess = AuthRefreshSuccess;
|
|
2852
|
+
declare const index$4_authEndpoints: typeof authEndpoints;
|
|
2853
|
+
declare const index$4_authExchangeRequestSchema: typeof authExchangeRequestSchema;
|
|
2854
|
+
declare const index$4_authExchangeResponseSchema: typeof authExchangeResponseSchema;
|
|
2855
|
+
declare const index$4_authLogoutRequestSchema: typeof authLogoutRequestSchema;
|
|
2856
|
+
declare const index$4_authLogoutResponseSchema: typeof authLogoutResponseSchema;
|
|
2857
|
+
declare const index$4_authRefreshErrorSchema: typeof authRefreshErrorSchema;
|
|
2858
|
+
declare const index$4_authRefreshRequestSchema: typeof authRefreshRequestSchema;
|
|
2859
|
+
declare const index$4_authRefreshResponseSchema: typeof authRefreshResponseSchema;
|
|
2860
|
+
declare const index$4_authRefreshSuccessSchema: typeof authRefreshSuccessSchema;
|
|
2861
|
+
declare const index$4_authRefreshUserSchema: typeof authRefreshUserSchema;
|
|
2862
|
+
declare namespace index$4 {
|
|
2863
|
+
export { index$4_AuthClient as AuthClient, type index$4_AuthExchangeRequest as AuthExchangeRequest, type index$4_AuthExchangeResponse as AuthExchangeResponse, type index$4_AuthLogoutRequest as AuthLogoutRequest, type index$4_AuthLogoutResponse as AuthLogoutResponse, type index$4_AuthRefreshError as AuthRefreshError, type index$4_AuthRefreshRequest as AuthRefreshRequest, type index$4_AuthRefreshResponse as AuthRefreshResponse, type index$4_AuthRefreshSuccess as AuthRefreshSuccess, index$4_authEndpoints as authEndpoints, index$4_authExchangeRequestSchema as authExchangeRequestSchema, index$4_authExchangeResponseSchema as authExchangeResponseSchema, index$4_authLogoutRequestSchema as authLogoutRequestSchema, index$4_authLogoutResponseSchema as authLogoutResponseSchema, index$4_authRefreshErrorSchema as authRefreshErrorSchema, index$4_authRefreshRequestSchema as authRefreshRequestSchema, index$4_authRefreshResponseSchema as authRefreshResponseSchema, index$4_authRefreshSuccessSchema as authRefreshSuccessSchema, index$4_authRefreshUserSchema as authRefreshUserSchema };
|
|
2757
2864
|
}
|
|
2758
2865
|
|
|
2759
2866
|
declare const auxiliaryEndpoints: {
|
|
@@ -2876,18 +2983,18 @@ declare class AuxiliaryClient {
|
|
|
2876
2983
|
}>;
|
|
2877
2984
|
}
|
|
2878
2985
|
|
|
2879
|
-
type index$
|
|
2880
|
-
declare const index$
|
|
2881
|
-
type index$
|
|
2882
|
-
type index$
|
|
2883
|
-
type index$
|
|
2884
|
-
type index$
|
|
2885
|
-
declare const index$
|
|
2886
|
-
declare const index$
|
|
2887
|
-
declare const index$
|
|
2888
|
-
declare const index$
|
|
2889
|
-
declare namespace index$
|
|
2890
|
-
export { index$
|
|
2986
|
+
type index$3_AuxiliaryClient = AuxiliaryClient;
|
|
2987
|
+
declare const index$3_AuxiliaryClient: typeof AuxiliaryClient;
|
|
2988
|
+
type index$3_AuxiliaryInferRequest = AuxiliaryInferRequest;
|
|
2989
|
+
type index$3_AuxiliaryInferResponse = AuxiliaryInferResponse;
|
|
2990
|
+
type index$3_AuxiliaryQuota = AuxiliaryQuota;
|
|
2991
|
+
type index$3_AuxiliaryQuotaResponse = AuxiliaryQuotaResponse;
|
|
2992
|
+
declare const index$3_auxiliaryEndpoints: typeof auxiliaryEndpoints;
|
|
2993
|
+
declare const index$3_auxiliaryInferRequestSchema: typeof auxiliaryInferRequestSchema;
|
|
2994
|
+
declare const index$3_auxiliaryInferResponseSchema: typeof auxiliaryInferResponseSchema;
|
|
2995
|
+
declare const index$3_auxiliaryQuotaResponseSchema: typeof auxiliaryQuotaResponseSchema;
|
|
2996
|
+
declare namespace index$3 {
|
|
2997
|
+
export { index$3_AuxiliaryClient as AuxiliaryClient, type index$3_AuxiliaryInferRequest as AuxiliaryInferRequest, type index$3_AuxiliaryInferResponse as AuxiliaryInferResponse, type index$3_AuxiliaryQuota as AuxiliaryQuota, type index$3_AuxiliaryQuotaResponse as AuxiliaryQuotaResponse, index$3_auxiliaryEndpoints as auxiliaryEndpoints, index$3_auxiliaryInferRequestSchema as auxiliaryInferRequestSchema, index$3_auxiliaryInferResponseSchema as auxiliaryInferResponseSchema, index$3_auxiliaryQuotaResponseSchema as auxiliaryQuotaResponseSchema };
|
|
2891
2998
|
}
|
|
2892
2999
|
|
|
2893
3000
|
/** Feedback API endpoints. */
|
|
@@ -3234,37 +3341,451 @@ declare class FeedbackClient {
|
|
|
3234
3341
|
detail(feedbackId: string): Promise<FeedbackDetailResponse>;
|
|
3235
3342
|
}
|
|
3236
3343
|
|
|
3237
|
-
type index$
|
|
3238
|
-
type index$
|
|
3239
|
-
declare const index$
|
|
3240
|
-
type index$
|
|
3241
|
-
type index$
|
|
3242
|
-
type index$
|
|
3243
|
-
type index$
|
|
3244
|
-
type index$
|
|
3245
|
-
type index$
|
|
3246
|
-
type index$
|
|
3247
|
-
type index$
|
|
3248
|
-
type index$
|
|
3249
|
-
type index$
|
|
3250
|
-
type index$
|
|
3251
|
-
type index$
|
|
3252
|
-
declare const index$
|
|
3253
|
-
declare const index$
|
|
3254
|
-
declare const index$
|
|
3255
|
-
declare const index$
|
|
3256
|
-
declare const index$
|
|
3257
|
-
declare const index$
|
|
3258
|
-
declare const index$
|
|
3259
|
-
declare const index$
|
|
3260
|
-
declare const index$
|
|
3261
|
-
declare const index$
|
|
3262
|
-
declare const index$
|
|
3263
|
-
declare const index$
|
|
3264
|
-
declare const index$
|
|
3265
|
-
declare const index$
|
|
3344
|
+
type index$2_FeedbackAttachmentResponse = FeedbackAttachmentResponse;
|
|
3345
|
+
type index$2_FeedbackClient = FeedbackClient;
|
|
3346
|
+
declare const index$2_FeedbackClient: typeof FeedbackClient;
|
|
3347
|
+
type index$2_FeedbackDetailPayload = FeedbackDetailPayload;
|
|
3348
|
+
type index$2_FeedbackDetailRequest = FeedbackDetailRequest;
|
|
3349
|
+
type index$2_FeedbackDetailResponse = FeedbackDetailResponse;
|
|
3350
|
+
type index$2_FeedbackListPayload = FeedbackListPayload;
|
|
3351
|
+
type index$2_FeedbackListRequest = FeedbackListRequest;
|
|
3352
|
+
type index$2_FeedbackListResponse = FeedbackListResponse;
|
|
3353
|
+
type index$2_FeedbackSaasStatus = FeedbackSaasStatus;
|
|
3354
|
+
type index$2_FeedbackSource = FeedbackSource;
|
|
3355
|
+
type index$2_FeedbackSubmitError = FeedbackSubmitError;
|
|
3356
|
+
type index$2_FeedbackSubmitRequest = FeedbackSubmitRequest;
|
|
3357
|
+
type index$2_FeedbackSubmitResponse = FeedbackSubmitResponse;
|
|
3358
|
+
type index$2_FeedbackType = FeedbackType;
|
|
3359
|
+
declare const index$2_feedbackDetailPayloadSchema: typeof feedbackDetailPayloadSchema;
|
|
3360
|
+
declare const index$2_feedbackDetailRequestSchema: typeof feedbackDetailRequestSchema;
|
|
3361
|
+
declare const index$2_feedbackDetailResponseSchema: typeof feedbackDetailResponseSchema;
|
|
3362
|
+
declare const index$2_feedbackEndpoints: typeof feedbackEndpoints;
|
|
3363
|
+
declare const index$2_feedbackItemSchema: typeof feedbackItemSchema;
|
|
3364
|
+
declare const index$2_feedbackListPayloadSchema: typeof feedbackListPayloadSchema;
|
|
3365
|
+
declare const index$2_feedbackListRequestSchema: typeof feedbackListRequestSchema;
|
|
3366
|
+
declare const index$2_feedbackListResponseSchema: typeof feedbackListResponseSchema;
|
|
3367
|
+
declare const index$2_feedbackSaasStatusSchema: typeof feedbackSaasStatusSchema;
|
|
3368
|
+
declare const index$2_feedbackSourceSchema: typeof feedbackSourceSchema;
|
|
3369
|
+
declare const index$2_feedbackSubmitErrorSchema: typeof feedbackSubmitErrorSchema;
|
|
3370
|
+
declare const index$2_feedbackSubmitRequestSchema: typeof feedbackSubmitRequestSchema;
|
|
3371
|
+
declare const index$2_feedbackSubmitResponseSchema: typeof feedbackSubmitResponseSchema;
|
|
3372
|
+
declare const index$2_feedbackTypeSchema: typeof feedbackTypeSchema;
|
|
3373
|
+
declare namespace index$2 {
|
|
3374
|
+
export { type index$2_FeedbackAttachmentResponse as FeedbackAttachmentResponse, index$2_FeedbackClient as FeedbackClient, type index$2_FeedbackDetailPayload as FeedbackDetailPayload, type index$2_FeedbackDetailRequest as FeedbackDetailRequest, type index$2_FeedbackDetailResponse as FeedbackDetailResponse, type index$2_FeedbackListPayload as FeedbackListPayload, type index$2_FeedbackListRequest as FeedbackListRequest, type index$2_FeedbackListResponse as FeedbackListResponse, type index$2_FeedbackSaasStatus as FeedbackSaasStatus, type index$2_FeedbackSource as FeedbackSource, type index$2_FeedbackSubmitError as FeedbackSubmitError, type index$2_FeedbackSubmitRequest as FeedbackSubmitRequest, type index$2_FeedbackSubmitResponse as FeedbackSubmitResponse, type index$2_FeedbackType as FeedbackType, index$2_feedbackDetailPayloadSchema as feedbackDetailPayloadSchema, index$2_feedbackDetailRequestSchema as feedbackDetailRequestSchema, index$2_feedbackDetailResponseSchema as feedbackDetailResponseSchema, index$2_feedbackEndpoints as feedbackEndpoints, index$2_feedbackItemSchema as feedbackItemSchema, index$2_feedbackListPayloadSchema as feedbackListPayloadSchema, index$2_feedbackListRequestSchema as feedbackListRequestSchema, index$2_feedbackListResponseSchema as feedbackListResponseSchema, index$2_feedbackSaasStatusSchema as feedbackSaasStatusSchema, index$2_feedbackSourceSchema as feedbackSourceSchema, index$2_feedbackSubmitErrorSchema as feedbackSubmitErrorSchema, index$2_feedbackSubmitRequestSchema as feedbackSubmitRequestSchema, index$2_feedbackSubmitResponseSchema as feedbackSubmitResponseSchema, index$2_feedbackTypeSchema as feedbackTypeSchema };
|
|
3375
|
+
}
|
|
3376
|
+
|
|
3377
|
+
/** Skill market API endpoints. */
|
|
3378
|
+
declare const skillsEndpoints: {
|
|
3379
|
+
/** List visible skills for the current actor. */
|
|
3380
|
+
readonly list: Endpoint<{
|
|
3381
|
+
page: number;
|
|
3382
|
+
pageSize: number;
|
|
3383
|
+
keyword?: string | undefined;
|
|
3384
|
+
type?: "other" | "development" | "automation" | "ai" | "crawler" | "ops" | "writing" | "design" | undefined;
|
|
3385
|
+
}, {
|
|
3386
|
+
items: {
|
|
3387
|
+
id: string;
|
|
3388
|
+
slug: string;
|
|
3389
|
+
name: string;
|
|
3390
|
+
summary: string | null;
|
|
3391
|
+
type: "other" | "development" | "automation" | "ai" | "crawler" | "ops" | "writing" | "design";
|
|
3392
|
+
tags: string[];
|
|
3393
|
+
source: "official_upload" | "user_upload";
|
|
3394
|
+
visibility: "public" | "private";
|
|
3395
|
+
status: "active" | "disabled";
|
|
3396
|
+
owner: {
|
|
3397
|
+
id: string;
|
|
3398
|
+
name: string | null;
|
|
3399
|
+
email: string | null;
|
|
3400
|
+
} | null;
|
|
3401
|
+
latestVersion: string | null;
|
|
3402
|
+
downloadCount: number;
|
|
3403
|
+
currentVersion: {
|
|
3404
|
+
id: string;
|
|
3405
|
+
version: string;
|
|
3406
|
+
archiveFormat: "skill" | "zip" | "tar";
|
|
3407
|
+
fileName: string;
|
|
3408
|
+
fileSize: number;
|
|
3409
|
+
changelog: string | null;
|
|
3410
|
+
createdAt: string;
|
|
3411
|
+
} | null;
|
|
3412
|
+
createdAt: string;
|
|
3413
|
+
updatedAt: string;
|
|
3414
|
+
}[];
|
|
3415
|
+
page: number;
|
|
3416
|
+
pageSize: number;
|
|
3417
|
+
total: number;
|
|
3418
|
+
}>;
|
|
3419
|
+
/** Fetch detail for one visible skill. */
|
|
3420
|
+
readonly detail: (skillId: string) => Endpoint<void, {
|
|
3421
|
+
skill: {
|
|
3422
|
+
id: string;
|
|
3423
|
+
slug: string;
|
|
3424
|
+
name: string;
|
|
3425
|
+
summary: string | null;
|
|
3426
|
+
type: "other" | "development" | "automation" | "ai" | "crawler" | "ops" | "writing" | "design";
|
|
3427
|
+
tags: string[];
|
|
3428
|
+
source: "official_upload" | "user_upload";
|
|
3429
|
+
visibility: "public" | "private";
|
|
3430
|
+
status: "active" | "disabled";
|
|
3431
|
+
owner: {
|
|
3432
|
+
id: string;
|
|
3433
|
+
name: string | null;
|
|
3434
|
+
email: string | null;
|
|
3435
|
+
} | null;
|
|
3436
|
+
latestVersion: string | null;
|
|
3437
|
+
downloadCount: number;
|
|
3438
|
+
currentVersion: {
|
|
3439
|
+
id: string;
|
|
3440
|
+
version: string;
|
|
3441
|
+
archiveFormat: "skill" | "zip" | "tar";
|
|
3442
|
+
fileName: string;
|
|
3443
|
+
fileSize: number;
|
|
3444
|
+
changelog: string | null;
|
|
3445
|
+
createdAt: string;
|
|
3446
|
+
} | null;
|
|
3447
|
+
createdAt: string;
|
|
3448
|
+
updatedAt: string;
|
|
3449
|
+
manifestJson: unknown;
|
|
3450
|
+
readmeMarkdown: string | null;
|
|
3451
|
+
versions: {
|
|
3452
|
+
id: string;
|
|
3453
|
+
version: string;
|
|
3454
|
+
archiveFormat: "skill" | "zip" | "tar";
|
|
3455
|
+
fileName: string;
|
|
3456
|
+
fileSize: number;
|
|
3457
|
+
changelog: string | null;
|
|
3458
|
+
createdAt: string;
|
|
3459
|
+
}[];
|
|
3460
|
+
};
|
|
3461
|
+
}>;
|
|
3462
|
+
};
|
|
3463
|
+
|
|
3464
|
+
/** Supported skill type values. */
|
|
3465
|
+
declare const skillTypeSchema: z.ZodEnum<{
|
|
3466
|
+
other: "other";
|
|
3467
|
+
development: "development";
|
|
3468
|
+
automation: "automation";
|
|
3469
|
+
ai: "ai";
|
|
3470
|
+
crawler: "crawler";
|
|
3471
|
+
ops: "ops";
|
|
3472
|
+
writing: "writing";
|
|
3473
|
+
design: "design";
|
|
3474
|
+
}>;
|
|
3475
|
+
/** Supported skill source values. */
|
|
3476
|
+
declare const skillSourceSchema: z.ZodEnum<{
|
|
3477
|
+
official_upload: "official_upload";
|
|
3478
|
+
user_upload: "user_upload";
|
|
3479
|
+
}>;
|
|
3480
|
+
/** Supported skill visibility values. */
|
|
3481
|
+
declare const skillVisibilitySchema: z.ZodEnum<{
|
|
3482
|
+
public: "public";
|
|
3483
|
+
private: "private";
|
|
3484
|
+
}>;
|
|
3485
|
+
/** Supported skill status values. */
|
|
3486
|
+
declare const skillStatusSchema: z.ZodEnum<{
|
|
3487
|
+
active: "active";
|
|
3488
|
+
disabled: "disabled";
|
|
3489
|
+
}>;
|
|
3490
|
+
/** Supported skill archive format values. */
|
|
3491
|
+
declare const skillArchiveFormatSchema: z.ZodEnum<{
|
|
3492
|
+
skill: "skill";
|
|
3493
|
+
zip: "zip";
|
|
3494
|
+
tar: "tar";
|
|
3495
|
+
}>;
|
|
3496
|
+
/** Skill owner summary schema. */
|
|
3497
|
+
declare const skillOwnerSummarySchema: z.ZodObject<{
|
|
3498
|
+
id: z.ZodString;
|
|
3499
|
+
name: z.ZodNullable<z.ZodString>;
|
|
3500
|
+
email: z.ZodNullable<z.ZodString>;
|
|
3501
|
+
}, z.core.$strip>;
|
|
3502
|
+
/** Skill version summary schema. */
|
|
3503
|
+
declare const skillVersionSummarySchema: z.ZodObject<{
|
|
3504
|
+
id: z.ZodString;
|
|
3505
|
+
version: z.ZodString;
|
|
3506
|
+
archiveFormat: z.ZodEnum<{
|
|
3507
|
+
skill: "skill";
|
|
3508
|
+
zip: "zip";
|
|
3509
|
+
tar: "tar";
|
|
3510
|
+
}>;
|
|
3511
|
+
fileName: z.ZodString;
|
|
3512
|
+
fileSize: z.ZodNumber;
|
|
3513
|
+
changelog: z.ZodNullable<z.ZodString>;
|
|
3514
|
+
createdAt: z.ZodString;
|
|
3515
|
+
}, z.core.$strip>;
|
|
3516
|
+
/** Skill list item schema. */
|
|
3517
|
+
declare const skillListItemSchema: z.ZodObject<{
|
|
3518
|
+
id: z.ZodString;
|
|
3519
|
+
slug: z.ZodString;
|
|
3520
|
+
name: z.ZodString;
|
|
3521
|
+
summary: z.ZodNullable<z.ZodString>;
|
|
3522
|
+
type: z.ZodEnum<{
|
|
3523
|
+
other: "other";
|
|
3524
|
+
development: "development";
|
|
3525
|
+
automation: "automation";
|
|
3526
|
+
ai: "ai";
|
|
3527
|
+
crawler: "crawler";
|
|
3528
|
+
ops: "ops";
|
|
3529
|
+
writing: "writing";
|
|
3530
|
+
design: "design";
|
|
3531
|
+
}>;
|
|
3532
|
+
tags: z.ZodArray<z.ZodString>;
|
|
3533
|
+
source: z.ZodEnum<{
|
|
3534
|
+
official_upload: "official_upload";
|
|
3535
|
+
user_upload: "user_upload";
|
|
3536
|
+
}>;
|
|
3537
|
+
visibility: z.ZodEnum<{
|
|
3538
|
+
public: "public";
|
|
3539
|
+
private: "private";
|
|
3540
|
+
}>;
|
|
3541
|
+
status: z.ZodEnum<{
|
|
3542
|
+
active: "active";
|
|
3543
|
+
disabled: "disabled";
|
|
3544
|
+
}>;
|
|
3545
|
+
owner: z.ZodNullable<z.ZodObject<{
|
|
3546
|
+
id: z.ZodString;
|
|
3547
|
+
name: z.ZodNullable<z.ZodString>;
|
|
3548
|
+
email: z.ZodNullable<z.ZodString>;
|
|
3549
|
+
}, z.core.$strip>>;
|
|
3550
|
+
latestVersion: z.ZodNullable<z.ZodString>;
|
|
3551
|
+
downloadCount: z.ZodNumber;
|
|
3552
|
+
currentVersion: z.ZodNullable<z.ZodObject<{
|
|
3553
|
+
id: z.ZodString;
|
|
3554
|
+
version: z.ZodString;
|
|
3555
|
+
archiveFormat: z.ZodEnum<{
|
|
3556
|
+
skill: "skill";
|
|
3557
|
+
zip: "zip";
|
|
3558
|
+
tar: "tar";
|
|
3559
|
+
}>;
|
|
3560
|
+
fileName: z.ZodString;
|
|
3561
|
+
fileSize: z.ZodNumber;
|
|
3562
|
+
changelog: z.ZodNullable<z.ZodString>;
|
|
3563
|
+
createdAt: z.ZodString;
|
|
3564
|
+
}, z.core.$strip>>;
|
|
3565
|
+
createdAt: z.ZodString;
|
|
3566
|
+
updatedAt: z.ZodString;
|
|
3567
|
+
}, z.core.$strip>;
|
|
3568
|
+
/** Skill list request schema. */
|
|
3569
|
+
declare const skillsListRequestSchema: z.ZodObject<{
|
|
3570
|
+
page: z.ZodDefault<z.ZodNumber>;
|
|
3571
|
+
pageSize: z.ZodDefault<z.ZodNumber>;
|
|
3572
|
+
keyword: z.ZodOptional<z.ZodString>;
|
|
3573
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
3574
|
+
other: "other";
|
|
3575
|
+
development: "development";
|
|
3576
|
+
automation: "automation";
|
|
3577
|
+
ai: "ai";
|
|
3578
|
+
crawler: "crawler";
|
|
3579
|
+
ops: "ops";
|
|
3580
|
+
writing: "writing";
|
|
3581
|
+
design: "design";
|
|
3582
|
+
}>>;
|
|
3583
|
+
}, z.core.$strip>;
|
|
3584
|
+
/** Skill list response schema. */
|
|
3585
|
+
declare const skillsListResponseSchema: z.ZodObject<{
|
|
3586
|
+
items: z.ZodArray<z.ZodObject<{
|
|
3587
|
+
id: z.ZodString;
|
|
3588
|
+
slug: z.ZodString;
|
|
3589
|
+
name: z.ZodString;
|
|
3590
|
+
summary: z.ZodNullable<z.ZodString>;
|
|
3591
|
+
type: z.ZodEnum<{
|
|
3592
|
+
other: "other";
|
|
3593
|
+
development: "development";
|
|
3594
|
+
automation: "automation";
|
|
3595
|
+
ai: "ai";
|
|
3596
|
+
crawler: "crawler";
|
|
3597
|
+
ops: "ops";
|
|
3598
|
+
writing: "writing";
|
|
3599
|
+
design: "design";
|
|
3600
|
+
}>;
|
|
3601
|
+
tags: z.ZodArray<z.ZodString>;
|
|
3602
|
+
source: z.ZodEnum<{
|
|
3603
|
+
official_upload: "official_upload";
|
|
3604
|
+
user_upload: "user_upload";
|
|
3605
|
+
}>;
|
|
3606
|
+
visibility: z.ZodEnum<{
|
|
3607
|
+
public: "public";
|
|
3608
|
+
private: "private";
|
|
3609
|
+
}>;
|
|
3610
|
+
status: z.ZodEnum<{
|
|
3611
|
+
active: "active";
|
|
3612
|
+
disabled: "disabled";
|
|
3613
|
+
}>;
|
|
3614
|
+
owner: z.ZodNullable<z.ZodObject<{
|
|
3615
|
+
id: z.ZodString;
|
|
3616
|
+
name: z.ZodNullable<z.ZodString>;
|
|
3617
|
+
email: z.ZodNullable<z.ZodString>;
|
|
3618
|
+
}, z.core.$strip>>;
|
|
3619
|
+
latestVersion: z.ZodNullable<z.ZodString>;
|
|
3620
|
+
downloadCount: z.ZodNumber;
|
|
3621
|
+
currentVersion: z.ZodNullable<z.ZodObject<{
|
|
3622
|
+
id: z.ZodString;
|
|
3623
|
+
version: z.ZodString;
|
|
3624
|
+
archiveFormat: z.ZodEnum<{
|
|
3625
|
+
skill: "skill";
|
|
3626
|
+
zip: "zip";
|
|
3627
|
+
tar: "tar";
|
|
3628
|
+
}>;
|
|
3629
|
+
fileName: z.ZodString;
|
|
3630
|
+
fileSize: z.ZodNumber;
|
|
3631
|
+
changelog: z.ZodNullable<z.ZodString>;
|
|
3632
|
+
createdAt: z.ZodString;
|
|
3633
|
+
}, z.core.$strip>>;
|
|
3634
|
+
createdAt: z.ZodString;
|
|
3635
|
+
updatedAt: z.ZodString;
|
|
3636
|
+
}, z.core.$strip>>;
|
|
3637
|
+
page: z.ZodNumber;
|
|
3638
|
+
pageSize: z.ZodNumber;
|
|
3639
|
+
total: z.ZodNumber;
|
|
3640
|
+
}, z.core.$strip>;
|
|
3641
|
+
/** Skill detail request schema. */
|
|
3642
|
+
declare const skillsDetailRequestSchema: z.ZodVoid;
|
|
3643
|
+
/** Skill detail response schema. */
|
|
3644
|
+
declare const skillsDetailResponseSchema: z.ZodObject<{
|
|
3645
|
+
skill: z.ZodObject<{
|
|
3646
|
+
id: z.ZodString;
|
|
3647
|
+
slug: z.ZodString;
|
|
3648
|
+
name: z.ZodString;
|
|
3649
|
+
summary: z.ZodNullable<z.ZodString>;
|
|
3650
|
+
type: z.ZodEnum<{
|
|
3651
|
+
other: "other";
|
|
3652
|
+
development: "development";
|
|
3653
|
+
automation: "automation";
|
|
3654
|
+
ai: "ai";
|
|
3655
|
+
crawler: "crawler";
|
|
3656
|
+
ops: "ops";
|
|
3657
|
+
writing: "writing";
|
|
3658
|
+
design: "design";
|
|
3659
|
+
}>;
|
|
3660
|
+
tags: z.ZodArray<z.ZodString>;
|
|
3661
|
+
source: z.ZodEnum<{
|
|
3662
|
+
official_upload: "official_upload";
|
|
3663
|
+
user_upload: "user_upload";
|
|
3664
|
+
}>;
|
|
3665
|
+
visibility: z.ZodEnum<{
|
|
3666
|
+
public: "public";
|
|
3667
|
+
private: "private";
|
|
3668
|
+
}>;
|
|
3669
|
+
status: z.ZodEnum<{
|
|
3670
|
+
active: "active";
|
|
3671
|
+
disabled: "disabled";
|
|
3672
|
+
}>;
|
|
3673
|
+
owner: z.ZodNullable<z.ZodObject<{
|
|
3674
|
+
id: z.ZodString;
|
|
3675
|
+
name: z.ZodNullable<z.ZodString>;
|
|
3676
|
+
email: z.ZodNullable<z.ZodString>;
|
|
3677
|
+
}, z.core.$strip>>;
|
|
3678
|
+
latestVersion: z.ZodNullable<z.ZodString>;
|
|
3679
|
+
downloadCount: z.ZodNumber;
|
|
3680
|
+
currentVersion: z.ZodNullable<z.ZodObject<{
|
|
3681
|
+
id: z.ZodString;
|
|
3682
|
+
version: z.ZodString;
|
|
3683
|
+
archiveFormat: z.ZodEnum<{
|
|
3684
|
+
skill: "skill";
|
|
3685
|
+
zip: "zip";
|
|
3686
|
+
tar: "tar";
|
|
3687
|
+
}>;
|
|
3688
|
+
fileName: z.ZodString;
|
|
3689
|
+
fileSize: z.ZodNumber;
|
|
3690
|
+
changelog: z.ZodNullable<z.ZodString>;
|
|
3691
|
+
createdAt: z.ZodString;
|
|
3692
|
+
}, z.core.$strip>>;
|
|
3693
|
+
createdAt: z.ZodString;
|
|
3694
|
+
updatedAt: z.ZodString;
|
|
3695
|
+
manifestJson: z.ZodNullable<z.ZodUnknown>;
|
|
3696
|
+
readmeMarkdown: z.ZodNullable<z.ZodString>;
|
|
3697
|
+
versions: z.ZodArray<z.ZodObject<{
|
|
3698
|
+
id: z.ZodString;
|
|
3699
|
+
version: z.ZodString;
|
|
3700
|
+
archiveFormat: z.ZodEnum<{
|
|
3701
|
+
skill: "skill";
|
|
3702
|
+
zip: "zip";
|
|
3703
|
+
tar: "tar";
|
|
3704
|
+
}>;
|
|
3705
|
+
fileName: z.ZodString;
|
|
3706
|
+
fileSize: z.ZodNumber;
|
|
3707
|
+
changelog: z.ZodNullable<z.ZodString>;
|
|
3708
|
+
createdAt: z.ZodString;
|
|
3709
|
+
}, z.core.$strip>>;
|
|
3710
|
+
}, z.core.$strip>;
|
|
3711
|
+
}, z.core.$strip>;
|
|
3712
|
+
/** Skill download response type schema helper. */
|
|
3713
|
+
declare const skillsDownloadResponseSchema: z.ZodObject<{
|
|
3714
|
+
fileName: z.ZodString;
|
|
3715
|
+
contentType: z.ZodString;
|
|
3716
|
+
data: z.ZodCustom<ArrayBuffer, ArrayBuffer>;
|
|
3717
|
+
}, z.core.$strip>;
|
|
3718
|
+
/** Skill type value. */
|
|
3719
|
+
type SkillType = z.infer<typeof skillTypeSchema>;
|
|
3720
|
+
/** Skill source value. */
|
|
3721
|
+
type SkillSource = z.infer<typeof skillSourceSchema>;
|
|
3722
|
+
/** Skill visibility value. */
|
|
3723
|
+
type SkillVisibility = z.infer<typeof skillVisibilitySchema>;
|
|
3724
|
+
/** Skill status value. */
|
|
3725
|
+
type SkillStatus = z.infer<typeof skillStatusSchema>;
|
|
3726
|
+
/** Skill archive format value. */
|
|
3727
|
+
type SkillArchiveFormat = z.infer<typeof skillArchiveFormatSchema>;
|
|
3728
|
+
/** Skill owner summary value. */
|
|
3729
|
+
type SkillOwnerSummary = z.infer<typeof skillOwnerSummarySchema>;
|
|
3730
|
+
/** Skill version summary value. */
|
|
3731
|
+
type SkillVersionSummary = z.infer<typeof skillVersionSummarySchema>;
|
|
3732
|
+
/** Skill list item value. */
|
|
3733
|
+
type SkillListItem = z.infer<typeof skillListItemSchema>;
|
|
3734
|
+
/** Skill list request value. */
|
|
3735
|
+
type SkillsListRequest = z.infer<typeof skillsListRequestSchema>;
|
|
3736
|
+
/** Skill list response value. */
|
|
3737
|
+
type SkillsListResponse = z.infer<typeof skillsListResponseSchema>;
|
|
3738
|
+
/** Skill detail response value. */
|
|
3739
|
+
type SkillsDetailResponse = z.infer<typeof skillsDetailResponseSchema>;
|
|
3740
|
+
/** Skill download response value. */
|
|
3741
|
+
type SkillsDownloadResponse = z.infer<typeof skillsDownloadResponseSchema>;
|
|
3742
|
+
|
|
3743
|
+
type SkillsSdkHost = SdkHost<{
|
|
3744
|
+
skills: typeof skillsEndpoints;
|
|
3745
|
+
}>;
|
|
3746
|
+
declare class SkillsClient {
|
|
3747
|
+
/** SDK host used for skill requests. */
|
|
3748
|
+
private readonly sdk;
|
|
3749
|
+
/** Create skill client. */
|
|
3750
|
+
constructor(sdk: SkillsSdkHost);
|
|
3751
|
+
/** List visible skills for the current user. */
|
|
3752
|
+
list(payload?: SkillsListRequest): Promise<SkillsListResponse>;
|
|
3753
|
+
/** Fetch one visible skill detail. */
|
|
3754
|
+
detail(skillId: string): Promise<SkillsDetailResponse>;
|
|
3755
|
+
/** Download one visible skill archive. */
|
|
3756
|
+
download(skillId: string): Promise<SkillsDownloadResponse>;
|
|
3757
|
+
}
|
|
3758
|
+
|
|
3759
|
+
type index$1_SkillArchiveFormat = SkillArchiveFormat;
|
|
3760
|
+
type index$1_SkillListItem = SkillListItem;
|
|
3761
|
+
type index$1_SkillOwnerSummary = SkillOwnerSummary;
|
|
3762
|
+
type index$1_SkillSource = SkillSource;
|
|
3763
|
+
type index$1_SkillStatus = SkillStatus;
|
|
3764
|
+
type index$1_SkillType = SkillType;
|
|
3765
|
+
type index$1_SkillVersionSummary = SkillVersionSummary;
|
|
3766
|
+
type index$1_SkillVisibility = SkillVisibility;
|
|
3767
|
+
type index$1_SkillsClient = SkillsClient;
|
|
3768
|
+
declare const index$1_SkillsClient: typeof SkillsClient;
|
|
3769
|
+
type index$1_SkillsDetailResponse = SkillsDetailResponse;
|
|
3770
|
+
type index$1_SkillsDownloadResponse = SkillsDownloadResponse;
|
|
3771
|
+
type index$1_SkillsListRequest = SkillsListRequest;
|
|
3772
|
+
type index$1_SkillsListResponse = SkillsListResponse;
|
|
3773
|
+
declare const index$1_skillArchiveFormatSchema: typeof skillArchiveFormatSchema;
|
|
3774
|
+
declare const index$1_skillListItemSchema: typeof skillListItemSchema;
|
|
3775
|
+
declare const index$1_skillOwnerSummarySchema: typeof skillOwnerSummarySchema;
|
|
3776
|
+
declare const index$1_skillSourceSchema: typeof skillSourceSchema;
|
|
3777
|
+
declare const index$1_skillStatusSchema: typeof skillStatusSchema;
|
|
3778
|
+
declare const index$1_skillTypeSchema: typeof skillTypeSchema;
|
|
3779
|
+
declare const index$1_skillVersionSummarySchema: typeof skillVersionSummarySchema;
|
|
3780
|
+
declare const index$1_skillVisibilitySchema: typeof skillVisibilitySchema;
|
|
3781
|
+
declare const index$1_skillsDetailRequestSchema: typeof skillsDetailRequestSchema;
|
|
3782
|
+
declare const index$1_skillsDetailResponseSchema: typeof skillsDetailResponseSchema;
|
|
3783
|
+
declare const index$1_skillsDownloadResponseSchema: typeof skillsDownloadResponseSchema;
|
|
3784
|
+
declare const index$1_skillsEndpoints: typeof skillsEndpoints;
|
|
3785
|
+
declare const index$1_skillsListRequestSchema: typeof skillsListRequestSchema;
|
|
3786
|
+
declare const index$1_skillsListResponseSchema: typeof skillsListResponseSchema;
|
|
3266
3787
|
declare namespace index$1 {
|
|
3267
|
-
export { type index$
|
|
3788
|
+
export { type index$1_SkillArchiveFormat as SkillArchiveFormat, type index$1_SkillListItem as SkillListItem, type index$1_SkillOwnerSummary as SkillOwnerSummary, type index$1_SkillSource as SkillSource, type index$1_SkillStatus as SkillStatus, type index$1_SkillType as SkillType, type index$1_SkillVersionSummary as SkillVersionSummary, type index$1_SkillVisibility as SkillVisibility, index$1_SkillsClient as SkillsClient, type index$1_SkillsDetailResponse as SkillsDetailResponse, type index$1_SkillsDownloadResponse as SkillsDownloadResponse, type index$1_SkillsListRequest as SkillsListRequest, type index$1_SkillsListResponse as SkillsListResponse, index$1_skillArchiveFormatSchema as skillArchiveFormatSchema, index$1_skillListItemSchema as skillListItemSchema, index$1_skillOwnerSummarySchema as skillOwnerSummarySchema, index$1_skillSourceSchema as skillSourceSchema, index$1_skillStatusSchema as skillStatusSchema, index$1_skillTypeSchema as skillTypeSchema, index$1_skillVersionSummarySchema as skillVersionSummarySchema, index$1_skillVisibilitySchema as skillVisibilitySchema, index$1_skillsDetailRequestSchema as skillsDetailRequestSchema, index$1_skillsDetailResponseSchema as skillsDetailResponseSchema, index$1_skillsDownloadResponseSchema as skillsDownloadResponseSchema, index$1_skillsEndpoints as skillsEndpoints, index$1_skillsListRequestSchema as skillsListRequestSchema, index$1_skillsListResponseSchema as skillsListResponseSchema };
|
|
3268
3789
|
}
|
|
3269
3790
|
|
|
3270
3791
|
/** User API endpoints. */
|
|
@@ -3392,6 +3913,8 @@ declare class SaaSClient extends BaseSaaSClient<SaaSContract> {
|
|
|
3392
3913
|
readonly auxiliary: AuxiliaryClient;
|
|
3393
3914
|
/** Feedback-related APIs. */
|
|
3394
3915
|
readonly feedback: FeedbackClient;
|
|
3916
|
+
/** Skill market APIs. */
|
|
3917
|
+
readonly skills: SkillsClient;
|
|
3395
3918
|
/** User-related APIs. */
|
|
3396
3919
|
readonly user: UserClient;
|
|
3397
3920
|
/** Create a SaaS client with all module access. */
|
|
@@ -3439,4 +3962,4 @@ declare function createTrpcClient(options: TrpcClientOptions): _trpc_client.TRPC
|
|
|
3439
3962
|
transformer: false;
|
|
3440
3963
|
}, _trpc_server.TRPCDecorateCreateRouterOptions<_trpc_server.TRPCCreateRouterOptions>>>;
|
|
3441
3964
|
|
|
3442
|
-
export { AI_MODEL_CAPABILITY_INPUT_KEYS, AI_MODEL_CAPABILITY_OUTPUT_KEYS, AI_MODEL_TAGS, AI_MODEL_TAG_LABELS, type AiChatModel, type AiChatModelsResponse, AiClient, type AiFileUploadResponse, type AiImageInputs, type AiImageOutput, type AiImageRequest, type AiMediaInput, type AiModel, type AiModelCapabilities, type AiModelCapabilitiesInput, type AiModelCapabilitiesOutput, type AiModelCapabilityInputKey, type AiModelCapabilityOutputKey, type AiModelTag, type AiModelsResponse, type AiModelsUpdatedAtData, type AiModelsUpdatedAtResponse, type AiProviderTemplate, type AiProviderTemplateModel, type AiProviderTemplatesResponse, type AiTaskCancelResponse, type AiTaskCreatedResponse, type AiTaskResponse, AiToolsClient, type AiVideoInputs, type AiVideoOutput, type AiVideoRequest, type AnalyzeSkillsRequest, type AnalyzeSkillsResponse, AuthClient, type AuthExchangeRequest, type AuthExchangeResponse, type AuthLogoutRequest, type AuthLogoutResponse, type AuthRefreshError, type AuthRefreshRequest, type AuthRefreshResponse, type AuthRefreshSuccess, AuxiliaryClient, type AuxiliaryInferRequest, type AuxiliaryInferResponse, type AuxiliaryQuota, type AuxiliaryQuotaResponse, Endpoint, type FeedbackAttachmentResponse, FeedbackClient, type FeedbackDetailPayload, type FeedbackDetailRequest, type FeedbackDetailResponse, type FeedbackListPayload, type FeedbackListRequest, type FeedbackListResponse, type FeedbackSaasStatus, type FeedbackSource, type FeedbackSubmitError, type FeedbackSubmitRequest, type FeedbackSubmitResponse, type FeedbackType, type HeaderInput, type HttpMethod, type RecommendActionsRequest, type RecommendActionsResponse, type ResponseType, SaaSClient, type SaaSClientOptions, SaaSContract, SaaSHttpError, SaaSNetworkError, SaaSSchemaError, type SummarizeRequest, type SummarizeResponse, type TrpcClientOptions, UserClient, type UserMembershipLevel, type UserSelf, type UserSelfRequest, type UserSelfResponse, aiChatModelSchema, aiChatModelsPayloadSchema, aiChatModelsResponseSchema, aiChatModelsSuccessSchema, aiEndpoints, aiErrorResponseSchema, aiImageInputsSchema, aiImageOutputSchema, aiImageRequestSchema, aiMediaInputSchema, aiModelCapabilitiesInputSchema, aiModelCapabilitiesOutputSchema, aiModelCapabilitiesSchema, aiModelCapabilityCommonSchema, aiModelParameterFieldSchema, aiModelParamsSchema, aiModelSchema, aiModelsPayloadSchema, aiModelsRequestSchema, aiModelsResponseSchema, aiModelsSuccessSchema, aiModelsUpdatedAtDataSchema, aiModelsUpdatedAtResponseSchema, aiModelsUpdatedAtSuccessSchema, index$
|
|
3965
|
+
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 AiFileUploadResponse, type AiImageInputs, type AiImageOutput, type AiImageRequest, type AiMediaInput, type AiModel, type AiModelCapabilities, type AiModelCapabilitiesInput, type AiModelCapabilitiesOutput, type AiModelCapabilityInputKey, type AiModelCapabilityOutputKey, type AiModelTag, type AiModelsResponse, type AiModelsUpdatedAtData, type AiModelsUpdatedAtResponse, type AiProviderTemplate, type AiProviderTemplateModel, type AiProviderTemplatesResponse, type AiResponsesRequest, type AiTaskCancelResponse, type AiTaskCreatedResponse, type AiTaskResponse, AiToolsClient, type AiVideoInputs, type AiVideoOutput, type AiVideoRequest, type AnalyzeSkillsRequest, type AnalyzeSkillsResponse, AuthClient, type AuthExchangeRequest, type AuthExchangeResponse, type AuthLogoutRequest, type AuthLogoutResponse, type AuthRefreshError, type AuthRefreshRequest, type AuthRefreshResponse, type AuthRefreshSuccess, AuxiliaryClient, type AuxiliaryInferRequest, type AuxiliaryInferResponse, type AuxiliaryQuota, type AuxiliaryQuotaResponse, Endpoint, type FeedbackAttachmentResponse, FeedbackClient, type FeedbackDetailPayload, type FeedbackDetailRequest, type FeedbackDetailResponse, type FeedbackListPayload, type FeedbackListRequest, type FeedbackListResponse, type FeedbackSaasStatus, type FeedbackSource, type FeedbackSubmitError, type FeedbackSubmitRequest, type FeedbackSubmitResponse, type FeedbackType, type HeaderInput, type HttpMethod, type RecommendActionsRequest, type RecommendActionsResponse, type ResponseType, SaaSClient, type SaaSClientOptions, SaaSContract, SaaSHttpError, SaaSNetworkError, SaaSSchemaError, type SkillArchiveFormat, type SkillListItem, type SkillOwnerSummary, type SkillSource, type SkillStatus, type SkillType, type SkillVersionSummary, type SkillVisibility, SkillsClient, type SkillsDetailResponse, type SkillsDownloadResponse, type SkillsListRequest, type SkillsListResponse, type SummarizeRequest, type SummarizeResponse, type TrpcClientOptions, UserClient, type UserMembershipLevel, type UserSelf, type UserSelfRequest, type UserSelfResponse, aiChatCompletionsRequestSchema, aiChatModelSchema, aiChatModelsPayloadSchema, aiChatModelsResponseSchema, aiChatModelsSuccessSchema, aiChatSessionMetadataSchema, aiEndpoints, aiErrorResponseSchema, aiImageInputsSchema, aiImageOutputSchema, aiImageRequestSchema, aiMediaInputSchema, aiModelCapabilitiesInputSchema, aiModelCapabilitiesOutputSchema, aiModelCapabilitiesSchema, aiModelCapabilityCommonSchema, aiModelParameterFieldSchema, aiModelParamsSchema, aiModelSchema, aiModelsPayloadSchema, aiModelsRequestSchema, aiModelsResponseSchema, aiModelsSuccessSchema, aiModelsUpdatedAtDataSchema, aiModelsUpdatedAtResponseSchema, aiModelsUpdatedAtSuccessSchema, index$6 as aiModule, aiProviderTemplateModelSchema, aiProviderTemplateSchema, aiProviderTemplatesPayloadSchema, aiProviderTemplatesRequestSchema, aiProviderTemplatesResponseSchema, aiProviderTemplatesSuccessSchema, aiResponsesRequestSchema, aiTaskCancelDataSchema, aiTaskCancelRequestSchema, aiTaskCancelResponseSchema, aiTaskCancelSuccessSchema, aiTaskCreatedDataSchema, aiTaskCreatedResponseSchema, aiTaskCreatedSuccessSchema, aiTaskDataSchema, aiTaskErrorSchema, aiTaskRequestSchema, aiTaskResponseSchema, aiTaskResultTypeSchema, aiTaskStatusSchema, aiTaskSuccessSchema, aiToolsEndpoints, index$5 as aiToolsModule, aiVideoInputsSchema, aiVideoOutputSchema, aiVideoRequestSchema, analyzeSkillsRequestSchema, analyzeSkillsResponseSchema, authEndpoints, authExchangeRequestSchema, authExchangeResponseSchema, authLogoutRequestSchema, authLogoutResponseSchema, index$4 as authModule, authRefreshErrorSchema, authRefreshRequestSchema, authRefreshResponseSchema, authRefreshSuccessSchema, authRefreshUserSchema, auxiliaryEndpoints, auxiliaryInferRequestSchema, auxiliaryInferResponseSchema, index$3 as auxiliaryModule, auxiliaryQuotaResponseSchema, contract, createTrpcClient, feedbackDetailPayloadSchema, feedbackDetailRequestSchema, feedbackDetailResponseSchema, feedbackEndpoints, feedbackItemSchema, feedbackListPayloadSchema, feedbackListRequestSchema, feedbackListResponseSchema, index$2 as feedbackModule, feedbackSaasStatusSchema, feedbackSourceSchema, feedbackSubmitErrorSchema, feedbackSubmitRequestSchema, feedbackSubmitResponseSchema, feedbackTypeSchema, mergeHeaders, normalizeHeaders, recommendActionsRequestSchema, recommendActionsResponseSchema, request, skillArchiveFormatSchema, skillListItemSchema, skillOwnerSummarySchema, skillSourceSchema, skillStatusSchema, skillTypeSchema, skillVersionSummarySchema, skillVisibilitySchema, skillsDetailRequestSchema, skillsDetailResponseSchema, skillsDownloadResponseSchema, skillsEndpoints, skillsListRequestSchema, skillsListResponseSchema, index$1 as skillsModule, summarizeRequestSchema, summarizeResponseSchema, userEndpoints, userMembershipLevelSchema, index as userModule, userSelfRequestSchema, userSelfResponseSchema, userSelfSchema };
|