@openloaf-saas/sdk 0.1.3 → 0.1.5
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 +204 -166
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -410,7 +410,7 @@ declare class SaaSContract {
|
|
|
410
410
|
type: "ui" | "performance" | "bug" | "feature" | "other";
|
|
411
411
|
content: string;
|
|
412
412
|
context: Record<string, unknown>;
|
|
413
|
-
source?: "tenas" | "openloaf-saas" | undefined;
|
|
413
|
+
source?: "tenas" | "openloaf" | "openloaf-saas" | undefined;
|
|
414
414
|
email?: string | undefined;
|
|
415
415
|
}, void | {
|
|
416
416
|
message: string;
|
|
@@ -419,7 +419,7 @@ declare class SaaSContract {
|
|
|
419
419
|
page?: number | undefined;
|
|
420
420
|
pageSize?: number | undefined;
|
|
421
421
|
type?: "ui" | "performance" | "bug" | "feature" | "other" | undefined;
|
|
422
|
-
source?: "tenas" | "openloaf-saas" | undefined;
|
|
422
|
+
source?: "tenas" | "openloaf" | "openloaf-saas" | undefined;
|
|
423
423
|
saasStatus?: "unread" | "read" | "resolved" | "ignored" | undefined;
|
|
424
424
|
keyword?: string | undefined;
|
|
425
425
|
startAt?: string | undefined;
|
|
@@ -429,7 +429,7 @@ declare class SaaSContract {
|
|
|
429
429
|
} | {
|
|
430
430
|
items: {
|
|
431
431
|
id: string;
|
|
432
|
-
source: "tenas" | "openloaf-saas";
|
|
432
|
+
source: "tenas" | "openloaf" | "openloaf-saas";
|
|
433
433
|
type: "ui" | "performance" | "bug" | "feature" | "other";
|
|
434
434
|
saasStatus: "unread" | "read" | "resolved" | "ignored";
|
|
435
435
|
content: string;
|
|
@@ -448,7 +448,7 @@ declare class SaaSContract {
|
|
|
448
448
|
} | {
|
|
449
449
|
feedback: {
|
|
450
450
|
id: string;
|
|
451
|
-
source: "tenas" | "openloaf-saas";
|
|
451
|
+
source: "tenas" | "openloaf" | "openloaf-saas";
|
|
452
452
|
type: "ui" | "performance" | "bug" | "feature" | "other";
|
|
453
453
|
saasStatus: "unread" | "read" | "resolved" | "ignored";
|
|
454
454
|
content: string;
|
|
@@ -1980,6 +1980,17 @@ declare const aiProviderTemplatesRequestSchema: z.ZodVoid;
|
|
|
1980
1980
|
type AiProviderTemplateModel = z.infer<typeof aiProviderTemplateModelSchema>;
|
|
1981
1981
|
type AiProviderTemplate = z.infer<typeof aiProviderTemplateSchema>;
|
|
1982
1982
|
type AiProviderTemplatesResponse = z.infer<typeof aiProviderTemplatesResponseSchema>;
|
|
1983
|
+
/** Response returned after a successful AI file upload. */
|
|
1984
|
+
type AiFileUploadResponse = {
|
|
1985
|
+
/** Public URL of the uploaded file, ready to use in chat messages. */
|
|
1986
|
+
url: string;
|
|
1987
|
+
/** Object key in the storage bucket. */
|
|
1988
|
+
key: string;
|
|
1989
|
+
/** MIME type of the uploaded file. */
|
|
1990
|
+
contentType: string;
|
|
1991
|
+
/** File size in bytes. */
|
|
1992
|
+
size: number;
|
|
1993
|
+
};
|
|
1983
1994
|
|
|
1984
1995
|
type AiSdkHost = SdkHost<{
|
|
1985
1996
|
ai: typeof aiEndpoints;
|
|
@@ -2210,6 +2221,11 @@ declare class AiClient {
|
|
|
2210
2221
|
latestUpdatedAt: string;
|
|
2211
2222
|
};
|
|
2212
2223
|
}>;
|
|
2224
|
+
/**
|
|
2225
|
+
* Upload a file for use in AI chat conversations.
|
|
2226
|
+
* Returns a public URL to reference in message content (image_url etc.).
|
|
2227
|
+
*/
|
|
2228
|
+
uploadFile(file: File | Blob, filename?: string): Promise<AiFileUploadResponse>;
|
|
2213
2229
|
/** Fetch provider templates (public, no auth required). */
|
|
2214
2230
|
providerTemplates(): Promise<{
|
|
2215
2231
|
success: false;
|
|
@@ -2289,6 +2305,7 @@ type index$4_AiChatModel = AiChatModel;
|
|
|
2289
2305
|
type index$4_AiChatModelsResponse = AiChatModelsResponse;
|
|
2290
2306
|
type index$4_AiClient = AiClient;
|
|
2291
2307
|
declare const index$4_AiClient: typeof AiClient;
|
|
2308
|
+
type index$4_AiFileUploadResponse = AiFileUploadResponse;
|
|
2292
2309
|
type index$4_AiImageInputs = AiImageInputs;
|
|
2293
2310
|
type index$4_AiImageOutput = AiImageOutput;
|
|
2294
2311
|
type index$4_AiImageRequest = AiImageRequest;
|
|
@@ -2360,141 +2377,7 @@ declare const index$4_aiVideoInputsSchema: typeof aiVideoInputsSchema;
|
|
|
2360
2377
|
declare const index$4_aiVideoOutputSchema: typeof aiVideoOutputSchema;
|
|
2361
2378
|
declare const index$4_aiVideoRequestSchema: typeof aiVideoRequestSchema;
|
|
2362
2379
|
declare namespace index$4 {
|
|
2363
|
-
export { index$4_AI_MODEL_CAPABILITY_INPUT_KEYS as AI_MODEL_CAPABILITY_INPUT_KEYS, index$4_AI_MODEL_CAPABILITY_OUTPUT_KEYS as AI_MODEL_CAPABILITY_OUTPUT_KEYS, index$4_AI_MODEL_TAGS as AI_MODEL_TAGS, index$4_AI_MODEL_TAG_LABELS as AI_MODEL_TAG_LABELS, type index$4_AiChatModel as AiChatModel, type index$4_AiChatModelsResponse as AiChatModelsResponse, index$4_AiClient as AiClient, type index$4_AiImageInputs as AiImageInputs, type index$4_AiImageOutput as AiImageOutput, type index$4_AiImageRequest as AiImageRequest, type index$4_AiMediaInput as AiMediaInput, type index$4_AiModel as AiModel, type index$4_AiModelCapabilities as AiModelCapabilities, type index$4_AiModelCapabilitiesInput as AiModelCapabilitiesInput, type index$4_AiModelCapabilitiesOutput as AiModelCapabilitiesOutput, type index$4_AiModelCapabilityInputKey as AiModelCapabilityInputKey, type index$4_AiModelCapabilityOutputKey as AiModelCapabilityOutputKey, type index$4_AiModelTag as AiModelTag, type index$4_AiModelsResponse as AiModelsResponse, type index$4_AiModelsUpdatedAtData as AiModelsUpdatedAtData, type index$4_AiModelsUpdatedAtResponse as AiModelsUpdatedAtResponse, type index$4_AiProviderTemplate as AiProviderTemplate, type index$4_AiProviderTemplateModel as AiProviderTemplateModel, type index$4_AiProviderTemplatesResponse as AiProviderTemplatesResponse, type index$4_AiTaskCancelResponse as AiTaskCancelResponse, type index$4_AiTaskCreatedResponse as AiTaskCreatedResponse, type index$4_AiTaskResponse as AiTaskResponse, type index$4_AiVideoInputs as AiVideoInputs, type index$4_AiVideoOutput as AiVideoOutput, type index$4_AiVideoRequest as AiVideoRequest, index$4_aiChatModelSchema as aiChatModelSchema, index$4_aiChatModelsPayloadSchema as aiChatModelsPayloadSchema, index$4_aiChatModelsResponseSchema as aiChatModelsResponseSchema, index$4_aiChatModelsSuccessSchema as aiChatModelsSuccessSchema, index$4_aiEndpoints as aiEndpoints, index$4_aiErrorResponseSchema as aiErrorResponseSchema, index$4_aiImageInputsSchema as aiImageInputsSchema, index$4_aiImageOutputSchema as aiImageOutputSchema, index$4_aiImageRequestSchema as aiImageRequestSchema, index$4_aiMediaInputSchema as aiMediaInputSchema, index$4_aiModelCapabilitiesInputSchema as aiModelCapabilitiesInputSchema, index$4_aiModelCapabilitiesOutputSchema as aiModelCapabilitiesOutputSchema, index$4_aiModelCapabilitiesSchema as aiModelCapabilitiesSchema, index$4_aiModelCapabilityCommonSchema as aiModelCapabilityCommonSchema, index$4_aiModelParameterFieldSchema as aiModelParameterFieldSchema, index$4_aiModelParamsSchema as aiModelParamsSchema, index$4_aiModelSchema as aiModelSchema, index$4_aiModelsPayloadSchema as aiModelsPayloadSchema, index$4_aiModelsRequestSchema as aiModelsRequestSchema, index$4_aiModelsResponseSchema as aiModelsResponseSchema, index$4_aiModelsSuccessSchema as aiModelsSuccessSchema, index$4_aiModelsUpdatedAtDataSchema as aiModelsUpdatedAtDataSchema, index$4_aiModelsUpdatedAtResponseSchema as aiModelsUpdatedAtResponseSchema, index$4_aiModelsUpdatedAtSuccessSchema as aiModelsUpdatedAtSuccessSchema, index$4_aiProviderTemplateModelSchema as aiProviderTemplateModelSchema, index$4_aiProviderTemplateSchema as aiProviderTemplateSchema, index$4_aiProviderTemplatesPayloadSchema as aiProviderTemplatesPayloadSchema, index$4_aiProviderTemplatesRequestSchema as aiProviderTemplatesRequestSchema, index$4_aiProviderTemplatesResponseSchema as aiProviderTemplatesResponseSchema, index$4_aiProviderTemplatesSuccessSchema as aiProviderTemplatesSuccessSchema, index$4_aiTaskCancelDataSchema as aiTaskCancelDataSchema, index$4_aiTaskCancelRequestSchema as aiTaskCancelRequestSchema, index$4_aiTaskCancelResponseSchema as aiTaskCancelResponseSchema, index$4_aiTaskCancelSuccessSchema as aiTaskCancelSuccessSchema, index$4_aiTaskCreatedDataSchema as aiTaskCreatedDataSchema, index$4_aiTaskCreatedResponseSchema as aiTaskCreatedResponseSchema, index$4_aiTaskCreatedSuccessSchema as aiTaskCreatedSuccessSchema, index$4_aiTaskDataSchema as aiTaskDataSchema, index$4_aiTaskErrorSchema as aiTaskErrorSchema, index$4_aiTaskRequestSchema as aiTaskRequestSchema, index$4_aiTaskResponseSchema as aiTaskResponseSchema, index$4_aiTaskResultTypeSchema as aiTaskResultTypeSchema, index$4_aiTaskStatusSchema as aiTaskStatusSchema, index$4_aiTaskSuccessSchema as aiTaskSuccessSchema, index$4_aiVideoInputsSchema as aiVideoInputsSchema, index$4_aiVideoOutputSchema as aiVideoOutputSchema, index$4_aiVideoRequestSchema as aiVideoRequestSchema };
|
|
2364
|
-
}
|
|
2365
|
-
|
|
2366
|
-
declare const auxiliaryEndpoints: {
|
|
2367
|
-
readonly infer: Endpoint<{
|
|
2368
|
-
capabilityKey: string;
|
|
2369
|
-
systemPrompt: string;
|
|
2370
|
-
context: string;
|
|
2371
|
-
outputMode: "text" | "structured";
|
|
2372
|
-
schema?: Record<string, unknown> | undefined;
|
|
2373
|
-
}, {
|
|
2374
|
-
ok: true;
|
|
2375
|
-
result: unknown;
|
|
2376
|
-
usage: {
|
|
2377
|
-
inputTokens: number;
|
|
2378
|
-
outputTokens: number;
|
|
2379
|
-
};
|
|
2380
|
-
quota: {
|
|
2381
|
-
used: number;
|
|
2382
|
-
limit: number;
|
|
2383
|
-
remaining: number;
|
|
2384
|
-
resetsAt: string;
|
|
2385
|
-
};
|
|
2386
|
-
} | {
|
|
2387
|
-
ok: false;
|
|
2388
|
-
message: string;
|
|
2389
|
-
code?: string | undefined;
|
|
2390
|
-
}>;
|
|
2391
|
-
readonly getQuota: Endpoint<Record<string, never>, {
|
|
2392
|
-
quota: {
|
|
2393
|
-
used: number;
|
|
2394
|
-
limit: number;
|
|
2395
|
-
remaining: number;
|
|
2396
|
-
resetsAt: string;
|
|
2397
|
-
};
|
|
2398
|
-
}>;
|
|
2399
|
-
};
|
|
2400
|
-
|
|
2401
|
-
declare const auxiliaryInferRequestSchema: z.ZodObject<{
|
|
2402
|
-
capabilityKey: z.ZodString;
|
|
2403
|
-
systemPrompt: z.ZodString;
|
|
2404
|
-
context: z.ZodString;
|
|
2405
|
-
outputMode: z.ZodEnum<{
|
|
2406
|
-
text: "text";
|
|
2407
|
-
structured: "structured";
|
|
2408
|
-
}>;
|
|
2409
|
-
schema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2410
|
-
}, z.core.$strip>;
|
|
2411
|
-
declare const quotaSchema: z.ZodObject<{
|
|
2412
|
-
used: z.ZodNumber;
|
|
2413
|
-
limit: z.ZodNumber;
|
|
2414
|
-
remaining: z.ZodNumber;
|
|
2415
|
-
resetsAt: z.ZodString;
|
|
2416
|
-
}, z.core.$strip>;
|
|
2417
|
-
declare const auxiliaryInferResponseSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
2418
|
-
ok: z.ZodLiteral<true>;
|
|
2419
|
-
result: z.ZodUnknown;
|
|
2420
|
-
usage: z.ZodObject<{
|
|
2421
|
-
inputTokens: z.ZodNumber;
|
|
2422
|
-
outputTokens: z.ZodNumber;
|
|
2423
|
-
}, z.core.$strip>;
|
|
2424
|
-
quota: z.ZodObject<{
|
|
2425
|
-
used: z.ZodNumber;
|
|
2426
|
-
limit: z.ZodNumber;
|
|
2427
|
-
remaining: z.ZodNumber;
|
|
2428
|
-
resetsAt: z.ZodString;
|
|
2429
|
-
}, z.core.$strip>;
|
|
2430
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
2431
|
-
ok: z.ZodLiteral<false>;
|
|
2432
|
-
message: z.ZodString;
|
|
2433
|
-
code: z.ZodOptional<z.ZodString>;
|
|
2434
|
-
}, z.core.$strip>]>;
|
|
2435
|
-
declare const auxiliaryQuotaResponseSchema: z.ZodObject<{
|
|
2436
|
-
quota: z.ZodObject<{
|
|
2437
|
-
used: z.ZodNumber;
|
|
2438
|
-
limit: z.ZodNumber;
|
|
2439
|
-
remaining: z.ZodNumber;
|
|
2440
|
-
resetsAt: z.ZodString;
|
|
2441
|
-
}, z.core.$strip>;
|
|
2442
|
-
}, z.core.$strip>;
|
|
2443
|
-
type AuxiliaryInferRequest = z.infer<typeof auxiliaryInferRequestSchema>;
|
|
2444
|
-
type AuxiliaryInferResponse = z.infer<typeof auxiliaryInferResponseSchema>;
|
|
2445
|
-
type AuxiliaryQuotaResponse = z.infer<typeof auxiliaryQuotaResponseSchema>;
|
|
2446
|
-
type AuxiliaryQuota = z.infer<typeof quotaSchema>;
|
|
2447
|
-
|
|
2448
|
-
type AuxiliarySdkHost = SdkHost<{
|
|
2449
|
-
auxiliary: typeof auxiliaryEndpoints;
|
|
2450
|
-
}>;
|
|
2451
|
-
declare class AuxiliaryClient {
|
|
2452
|
-
/** SDK host used for auxiliary requests. */
|
|
2453
|
-
private readonly sdk;
|
|
2454
|
-
/** Create auxiliary client. */
|
|
2455
|
-
constructor(sdk: AuxiliarySdkHost);
|
|
2456
|
-
/** Run auxiliary inference. */
|
|
2457
|
-
infer(payload: AuxiliaryInferRequest): Promise<{
|
|
2458
|
-
ok: true;
|
|
2459
|
-
result: unknown;
|
|
2460
|
-
usage: {
|
|
2461
|
-
inputTokens: number;
|
|
2462
|
-
outputTokens: number;
|
|
2463
|
-
};
|
|
2464
|
-
quota: {
|
|
2465
|
-
used: number;
|
|
2466
|
-
limit: number;
|
|
2467
|
-
remaining: number;
|
|
2468
|
-
resetsAt: string;
|
|
2469
|
-
};
|
|
2470
|
-
} | {
|
|
2471
|
-
ok: false;
|
|
2472
|
-
message: string;
|
|
2473
|
-
code?: string | undefined;
|
|
2474
|
-
}>;
|
|
2475
|
-
/** Get current daily quota. */
|
|
2476
|
-
getQuota(): Promise<{
|
|
2477
|
-
quota: {
|
|
2478
|
-
used: number;
|
|
2479
|
-
limit: number;
|
|
2480
|
-
remaining: number;
|
|
2481
|
-
resetsAt: string;
|
|
2482
|
-
};
|
|
2483
|
-
}>;
|
|
2484
|
-
}
|
|
2485
|
-
|
|
2486
|
-
type index$3_AuxiliaryClient = AuxiliaryClient;
|
|
2487
|
-
declare const index$3_AuxiliaryClient: typeof AuxiliaryClient;
|
|
2488
|
-
type index$3_AuxiliaryInferRequest = AuxiliaryInferRequest;
|
|
2489
|
-
type index$3_AuxiliaryInferResponse = AuxiliaryInferResponse;
|
|
2490
|
-
type index$3_AuxiliaryQuota = AuxiliaryQuota;
|
|
2491
|
-
type index$3_AuxiliaryQuotaResponse = AuxiliaryQuotaResponse;
|
|
2492
|
-
declare const index$3_auxiliaryEndpoints: typeof auxiliaryEndpoints;
|
|
2493
|
-
declare const index$3_auxiliaryInferRequestSchema: typeof auxiliaryInferRequestSchema;
|
|
2494
|
-
declare const index$3_auxiliaryInferResponseSchema: typeof auxiliaryInferResponseSchema;
|
|
2495
|
-
declare const index$3_auxiliaryQuotaResponseSchema: typeof auxiliaryQuotaResponseSchema;
|
|
2496
|
-
declare namespace index$3 {
|
|
2497
|
-
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 };
|
|
2380
|
+
export { index$4_AI_MODEL_CAPABILITY_INPUT_KEYS as AI_MODEL_CAPABILITY_INPUT_KEYS, index$4_AI_MODEL_CAPABILITY_OUTPUT_KEYS as AI_MODEL_CAPABILITY_OUTPUT_KEYS, index$4_AI_MODEL_TAGS as AI_MODEL_TAGS, index$4_AI_MODEL_TAG_LABELS as AI_MODEL_TAG_LABELS, type index$4_AiChatModel as AiChatModel, type index$4_AiChatModelsResponse as AiChatModelsResponse, index$4_AiClient as AiClient, type index$4_AiFileUploadResponse as AiFileUploadResponse, type index$4_AiImageInputs as AiImageInputs, type index$4_AiImageOutput as AiImageOutput, type index$4_AiImageRequest as AiImageRequest, type index$4_AiMediaInput as AiMediaInput, type index$4_AiModel as AiModel, type index$4_AiModelCapabilities as AiModelCapabilities, type index$4_AiModelCapabilitiesInput as AiModelCapabilitiesInput, type index$4_AiModelCapabilitiesOutput as AiModelCapabilitiesOutput, type index$4_AiModelCapabilityInputKey as AiModelCapabilityInputKey, type index$4_AiModelCapabilityOutputKey as AiModelCapabilityOutputKey, type index$4_AiModelTag as AiModelTag, type index$4_AiModelsResponse as AiModelsResponse, type index$4_AiModelsUpdatedAtData as AiModelsUpdatedAtData, type index$4_AiModelsUpdatedAtResponse as AiModelsUpdatedAtResponse, type index$4_AiProviderTemplate as AiProviderTemplate, type index$4_AiProviderTemplateModel as AiProviderTemplateModel, type index$4_AiProviderTemplatesResponse as AiProviderTemplatesResponse, type index$4_AiTaskCancelResponse as AiTaskCancelResponse, type index$4_AiTaskCreatedResponse as AiTaskCreatedResponse, type index$4_AiTaskResponse as AiTaskResponse, type index$4_AiVideoInputs as AiVideoInputs, type index$4_AiVideoOutput as AiVideoOutput, type index$4_AiVideoRequest as AiVideoRequest, index$4_aiChatModelSchema as aiChatModelSchema, index$4_aiChatModelsPayloadSchema as aiChatModelsPayloadSchema, index$4_aiChatModelsResponseSchema as aiChatModelsResponseSchema, index$4_aiChatModelsSuccessSchema as aiChatModelsSuccessSchema, index$4_aiEndpoints as aiEndpoints, index$4_aiErrorResponseSchema as aiErrorResponseSchema, index$4_aiImageInputsSchema as aiImageInputsSchema, index$4_aiImageOutputSchema as aiImageOutputSchema, index$4_aiImageRequestSchema as aiImageRequestSchema, index$4_aiMediaInputSchema as aiMediaInputSchema, index$4_aiModelCapabilitiesInputSchema as aiModelCapabilitiesInputSchema, index$4_aiModelCapabilitiesOutputSchema as aiModelCapabilitiesOutputSchema, index$4_aiModelCapabilitiesSchema as aiModelCapabilitiesSchema, index$4_aiModelCapabilityCommonSchema as aiModelCapabilityCommonSchema, index$4_aiModelParameterFieldSchema as aiModelParameterFieldSchema, index$4_aiModelParamsSchema as aiModelParamsSchema, index$4_aiModelSchema as aiModelSchema, index$4_aiModelsPayloadSchema as aiModelsPayloadSchema, index$4_aiModelsRequestSchema as aiModelsRequestSchema, index$4_aiModelsResponseSchema as aiModelsResponseSchema, index$4_aiModelsSuccessSchema as aiModelsSuccessSchema, index$4_aiModelsUpdatedAtDataSchema as aiModelsUpdatedAtDataSchema, index$4_aiModelsUpdatedAtResponseSchema as aiModelsUpdatedAtResponseSchema, index$4_aiModelsUpdatedAtSuccessSchema as aiModelsUpdatedAtSuccessSchema, index$4_aiProviderTemplateModelSchema as aiProviderTemplateModelSchema, index$4_aiProviderTemplateSchema as aiProviderTemplateSchema, index$4_aiProviderTemplatesPayloadSchema as aiProviderTemplatesPayloadSchema, index$4_aiProviderTemplatesRequestSchema as aiProviderTemplatesRequestSchema, index$4_aiProviderTemplatesResponseSchema as aiProviderTemplatesResponseSchema, index$4_aiProviderTemplatesSuccessSchema as aiProviderTemplatesSuccessSchema, index$4_aiTaskCancelDataSchema as aiTaskCancelDataSchema, index$4_aiTaskCancelRequestSchema as aiTaskCancelRequestSchema, index$4_aiTaskCancelResponseSchema as aiTaskCancelResponseSchema, index$4_aiTaskCancelSuccessSchema as aiTaskCancelSuccessSchema, index$4_aiTaskCreatedDataSchema as aiTaskCreatedDataSchema, index$4_aiTaskCreatedResponseSchema as aiTaskCreatedResponseSchema, index$4_aiTaskCreatedSuccessSchema as aiTaskCreatedSuccessSchema, index$4_aiTaskDataSchema as aiTaskDataSchema, index$4_aiTaskErrorSchema as aiTaskErrorSchema, index$4_aiTaskRequestSchema as aiTaskRequestSchema, index$4_aiTaskResponseSchema as aiTaskResponseSchema, index$4_aiTaskResultTypeSchema as aiTaskResultTypeSchema, index$4_aiTaskStatusSchema as aiTaskStatusSchema, index$4_aiTaskSuccessSchema as aiTaskSuccessSchema, index$4_aiVideoInputsSchema as aiVideoInputsSchema, index$4_aiVideoOutputSchema as aiVideoOutputSchema, index$4_aiVideoRequestSchema as aiVideoRequestSchema };
|
|
2498
2381
|
}
|
|
2499
2382
|
|
|
2500
2383
|
declare const authEndpoints: {
|
|
@@ -2623,28 +2506,162 @@ type AuthExchangeResponse = z.infer<typeof authExchangeResponseSchema>;
|
|
|
2623
2506
|
type AuthLogoutRequest = z.infer<typeof authLogoutRequestSchema>;
|
|
2624
2507
|
type AuthLogoutResponse = z.infer<typeof authLogoutResponseSchema>;
|
|
2625
2508
|
|
|
2626
|
-
type index$
|
|
2627
|
-
declare const index$
|
|
2628
|
-
type index$
|
|
2629
|
-
type index$
|
|
2630
|
-
type index$
|
|
2631
|
-
type index$
|
|
2632
|
-
type index$
|
|
2633
|
-
type index$
|
|
2634
|
-
type index$
|
|
2635
|
-
type index$
|
|
2636
|
-
declare const index$
|
|
2637
|
-
declare const index$
|
|
2638
|
-
declare const index$
|
|
2639
|
-
declare const index$
|
|
2640
|
-
declare const index$
|
|
2641
|
-
declare const index$
|
|
2642
|
-
declare const index$
|
|
2643
|
-
declare const index$
|
|
2644
|
-
declare const index$
|
|
2645
|
-
declare const index$
|
|
2509
|
+
type index$3_AuthClient = AuthClient;
|
|
2510
|
+
declare const index$3_AuthClient: typeof AuthClient;
|
|
2511
|
+
type index$3_AuthExchangeRequest = AuthExchangeRequest;
|
|
2512
|
+
type index$3_AuthExchangeResponse = AuthExchangeResponse;
|
|
2513
|
+
type index$3_AuthLogoutRequest = AuthLogoutRequest;
|
|
2514
|
+
type index$3_AuthLogoutResponse = AuthLogoutResponse;
|
|
2515
|
+
type index$3_AuthRefreshError = AuthRefreshError;
|
|
2516
|
+
type index$3_AuthRefreshRequest = AuthRefreshRequest;
|
|
2517
|
+
type index$3_AuthRefreshResponse = AuthRefreshResponse;
|
|
2518
|
+
type index$3_AuthRefreshSuccess = AuthRefreshSuccess;
|
|
2519
|
+
declare const index$3_authEndpoints: typeof authEndpoints;
|
|
2520
|
+
declare const index$3_authExchangeRequestSchema: typeof authExchangeRequestSchema;
|
|
2521
|
+
declare const index$3_authExchangeResponseSchema: typeof authExchangeResponseSchema;
|
|
2522
|
+
declare const index$3_authLogoutRequestSchema: typeof authLogoutRequestSchema;
|
|
2523
|
+
declare const index$3_authLogoutResponseSchema: typeof authLogoutResponseSchema;
|
|
2524
|
+
declare const index$3_authRefreshErrorSchema: typeof authRefreshErrorSchema;
|
|
2525
|
+
declare const index$3_authRefreshRequestSchema: typeof authRefreshRequestSchema;
|
|
2526
|
+
declare const index$3_authRefreshResponseSchema: typeof authRefreshResponseSchema;
|
|
2527
|
+
declare const index$3_authRefreshSuccessSchema: typeof authRefreshSuccessSchema;
|
|
2528
|
+
declare const index$3_authRefreshUserSchema: typeof authRefreshUserSchema;
|
|
2529
|
+
declare namespace index$3 {
|
|
2530
|
+
export { index$3_AuthClient as AuthClient, type index$3_AuthExchangeRequest as AuthExchangeRequest, type index$3_AuthExchangeResponse as AuthExchangeResponse, type index$3_AuthLogoutRequest as AuthLogoutRequest, type index$3_AuthLogoutResponse as AuthLogoutResponse, type index$3_AuthRefreshError as AuthRefreshError, type index$3_AuthRefreshRequest as AuthRefreshRequest, type index$3_AuthRefreshResponse as AuthRefreshResponse, type index$3_AuthRefreshSuccess as AuthRefreshSuccess, index$3_authEndpoints as authEndpoints, index$3_authExchangeRequestSchema as authExchangeRequestSchema, index$3_authExchangeResponseSchema as authExchangeResponseSchema, index$3_authLogoutRequestSchema as authLogoutRequestSchema, index$3_authLogoutResponseSchema as authLogoutResponseSchema, index$3_authRefreshErrorSchema as authRefreshErrorSchema, index$3_authRefreshRequestSchema as authRefreshRequestSchema, index$3_authRefreshResponseSchema as authRefreshResponseSchema, index$3_authRefreshSuccessSchema as authRefreshSuccessSchema, index$3_authRefreshUserSchema as authRefreshUserSchema };
|
|
2531
|
+
}
|
|
2532
|
+
|
|
2533
|
+
declare const auxiliaryEndpoints: {
|
|
2534
|
+
readonly infer: Endpoint<{
|
|
2535
|
+
capabilityKey: string;
|
|
2536
|
+
systemPrompt: string;
|
|
2537
|
+
context: string;
|
|
2538
|
+
outputMode: "text" | "structured";
|
|
2539
|
+
schema?: Record<string, unknown> | undefined;
|
|
2540
|
+
}, {
|
|
2541
|
+
ok: true;
|
|
2542
|
+
result: unknown;
|
|
2543
|
+
usage: {
|
|
2544
|
+
inputTokens: number;
|
|
2545
|
+
outputTokens: number;
|
|
2546
|
+
};
|
|
2547
|
+
quota: {
|
|
2548
|
+
used: number;
|
|
2549
|
+
limit: number;
|
|
2550
|
+
remaining: number;
|
|
2551
|
+
resetsAt: string;
|
|
2552
|
+
};
|
|
2553
|
+
} | {
|
|
2554
|
+
ok: false;
|
|
2555
|
+
message: string;
|
|
2556
|
+
code?: string | undefined;
|
|
2557
|
+
}>;
|
|
2558
|
+
readonly getQuota: Endpoint<Record<string, never>, {
|
|
2559
|
+
quota: {
|
|
2560
|
+
used: number;
|
|
2561
|
+
limit: number;
|
|
2562
|
+
remaining: number;
|
|
2563
|
+
resetsAt: string;
|
|
2564
|
+
};
|
|
2565
|
+
}>;
|
|
2566
|
+
};
|
|
2567
|
+
|
|
2568
|
+
declare const auxiliaryInferRequestSchema: z.ZodObject<{
|
|
2569
|
+
capabilityKey: z.ZodString;
|
|
2570
|
+
systemPrompt: z.ZodString;
|
|
2571
|
+
context: z.ZodString;
|
|
2572
|
+
outputMode: z.ZodEnum<{
|
|
2573
|
+
text: "text";
|
|
2574
|
+
structured: "structured";
|
|
2575
|
+
}>;
|
|
2576
|
+
schema: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2577
|
+
}, z.core.$strip>;
|
|
2578
|
+
declare const quotaSchema: z.ZodObject<{
|
|
2579
|
+
used: z.ZodNumber;
|
|
2580
|
+
limit: z.ZodNumber;
|
|
2581
|
+
remaining: z.ZodNumber;
|
|
2582
|
+
resetsAt: z.ZodString;
|
|
2583
|
+
}, z.core.$strip>;
|
|
2584
|
+
declare const auxiliaryInferResponseSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
2585
|
+
ok: z.ZodLiteral<true>;
|
|
2586
|
+
result: z.ZodUnknown;
|
|
2587
|
+
usage: z.ZodObject<{
|
|
2588
|
+
inputTokens: z.ZodNumber;
|
|
2589
|
+
outputTokens: z.ZodNumber;
|
|
2590
|
+
}, z.core.$strip>;
|
|
2591
|
+
quota: z.ZodObject<{
|
|
2592
|
+
used: z.ZodNumber;
|
|
2593
|
+
limit: z.ZodNumber;
|
|
2594
|
+
remaining: z.ZodNumber;
|
|
2595
|
+
resetsAt: z.ZodString;
|
|
2596
|
+
}, z.core.$strip>;
|
|
2597
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2598
|
+
ok: z.ZodLiteral<false>;
|
|
2599
|
+
message: z.ZodString;
|
|
2600
|
+
code: z.ZodOptional<z.ZodString>;
|
|
2601
|
+
}, z.core.$strip>]>;
|
|
2602
|
+
declare const auxiliaryQuotaResponseSchema: z.ZodObject<{
|
|
2603
|
+
quota: z.ZodObject<{
|
|
2604
|
+
used: z.ZodNumber;
|
|
2605
|
+
limit: z.ZodNumber;
|
|
2606
|
+
remaining: z.ZodNumber;
|
|
2607
|
+
resetsAt: z.ZodString;
|
|
2608
|
+
}, z.core.$strip>;
|
|
2609
|
+
}, z.core.$strip>;
|
|
2610
|
+
type AuxiliaryInferRequest = z.infer<typeof auxiliaryInferRequestSchema>;
|
|
2611
|
+
type AuxiliaryInferResponse = z.infer<typeof auxiliaryInferResponseSchema>;
|
|
2612
|
+
type AuxiliaryQuotaResponse = z.infer<typeof auxiliaryQuotaResponseSchema>;
|
|
2613
|
+
type AuxiliaryQuota = z.infer<typeof quotaSchema>;
|
|
2614
|
+
|
|
2615
|
+
type AuxiliarySdkHost = SdkHost<{
|
|
2616
|
+
auxiliary: typeof auxiliaryEndpoints;
|
|
2617
|
+
}>;
|
|
2618
|
+
declare class AuxiliaryClient {
|
|
2619
|
+
/** SDK host used for auxiliary requests. */
|
|
2620
|
+
private readonly sdk;
|
|
2621
|
+
/** Create auxiliary client. */
|
|
2622
|
+
constructor(sdk: AuxiliarySdkHost);
|
|
2623
|
+
/** Run auxiliary inference. */
|
|
2624
|
+
infer(payload: AuxiliaryInferRequest): Promise<{
|
|
2625
|
+
ok: true;
|
|
2626
|
+
result: unknown;
|
|
2627
|
+
usage: {
|
|
2628
|
+
inputTokens: number;
|
|
2629
|
+
outputTokens: number;
|
|
2630
|
+
};
|
|
2631
|
+
quota: {
|
|
2632
|
+
used: number;
|
|
2633
|
+
limit: number;
|
|
2634
|
+
remaining: number;
|
|
2635
|
+
resetsAt: string;
|
|
2636
|
+
};
|
|
2637
|
+
} | {
|
|
2638
|
+
ok: false;
|
|
2639
|
+
message: string;
|
|
2640
|
+
code?: string | undefined;
|
|
2641
|
+
}>;
|
|
2642
|
+
/** Get current daily quota. */
|
|
2643
|
+
getQuota(): Promise<{
|
|
2644
|
+
quota: {
|
|
2645
|
+
used: number;
|
|
2646
|
+
limit: number;
|
|
2647
|
+
remaining: number;
|
|
2648
|
+
resetsAt: string;
|
|
2649
|
+
};
|
|
2650
|
+
}>;
|
|
2651
|
+
}
|
|
2652
|
+
|
|
2653
|
+
type index$2_AuxiliaryClient = AuxiliaryClient;
|
|
2654
|
+
declare const index$2_AuxiliaryClient: typeof AuxiliaryClient;
|
|
2655
|
+
type index$2_AuxiliaryInferRequest = AuxiliaryInferRequest;
|
|
2656
|
+
type index$2_AuxiliaryInferResponse = AuxiliaryInferResponse;
|
|
2657
|
+
type index$2_AuxiliaryQuota = AuxiliaryQuota;
|
|
2658
|
+
type index$2_AuxiliaryQuotaResponse = AuxiliaryQuotaResponse;
|
|
2659
|
+
declare const index$2_auxiliaryEndpoints: typeof auxiliaryEndpoints;
|
|
2660
|
+
declare const index$2_auxiliaryInferRequestSchema: typeof auxiliaryInferRequestSchema;
|
|
2661
|
+
declare const index$2_auxiliaryInferResponseSchema: typeof auxiliaryInferResponseSchema;
|
|
2662
|
+
declare const index$2_auxiliaryQuotaResponseSchema: typeof auxiliaryQuotaResponseSchema;
|
|
2646
2663
|
declare namespace index$2 {
|
|
2647
|
-
export { index$
|
|
2664
|
+
export { index$2_AuxiliaryClient as AuxiliaryClient, type index$2_AuxiliaryInferRequest as AuxiliaryInferRequest, type index$2_AuxiliaryInferResponse as AuxiliaryInferResponse, type index$2_AuxiliaryQuota as AuxiliaryQuota, type index$2_AuxiliaryQuotaResponse as AuxiliaryQuotaResponse, index$2_auxiliaryEndpoints as auxiliaryEndpoints, index$2_auxiliaryInferRequestSchema as auxiliaryInferRequestSchema, index$2_auxiliaryInferResponseSchema as auxiliaryInferResponseSchema, index$2_auxiliaryQuotaResponseSchema as auxiliaryQuotaResponseSchema };
|
|
2648
2665
|
}
|
|
2649
2666
|
|
|
2650
2667
|
/** Feedback API endpoints. */
|
|
@@ -2654,7 +2671,7 @@ declare const feedbackEndpoints: {
|
|
|
2654
2671
|
type: "ui" | "performance" | "bug" | "feature" | "other";
|
|
2655
2672
|
content: string;
|
|
2656
2673
|
context: Record<string, unknown>;
|
|
2657
|
-
source?: "tenas" | "openloaf-saas" | undefined;
|
|
2674
|
+
source?: "tenas" | "openloaf" | "openloaf-saas" | undefined;
|
|
2658
2675
|
email?: string | undefined;
|
|
2659
2676
|
}, void | {
|
|
2660
2677
|
message: string;
|
|
@@ -2664,7 +2681,7 @@ declare const feedbackEndpoints: {
|
|
|
2664
2681
|
page?: number | undefined;
|
|
2665
2682
|
pageSize?: number | undefined;
|
|
2666
2683
|
type?: "ui" | "performance" | "bug" | "feature" | "other" | undefined;
|
|
2667
|
-
source?: "tenas" | "openloaf-saas" | undefined;
|
|
2684
|
+
source?: "tenas" | "openloaf" | "openloaf-saas" | undefined;
|
|
2668
2685
|
saasStatus?: "unread" | "read" | "resolved" | "ignored" | undefined;
|
|
2669
2686
|
keyword?: string | undefined;
|
|
2670
2687
|
startAt?: string | undefined;
|
|
@@ -2674,7 +2691,7 @@ declare const feedbackEndpoints: {
|
|
|
2674
2691
|
} | {
|
|
2675
2692
|
items: {
|
|
2676
2693
|
id: string;
|
|
2677
|
-
source: "tenas" | "openloaf-saas";
|
|
2694
|
+
source: "tenas" | "openloaf" | "openloaf-saas";
|
|
2678
2695
|
type: "ui" | "performance" | "bug" | "feature" | "other";
|
|
2679
2696
|
saasStatus: "unread" | "read" | "resolved" | "ignored";
|
|
2680
2697
|
content: string;
|
|
@@ -2694,7 +2711,7 @@ declare const feedbackEndpoints: {
|
|
|
2694
2711
|
} | {
|
|
2695
2712
|
feedback: {
|
|
2696
2713
|
id: string;
|
|
2697
|
-
source: "tenas" | "openloaf-saas";
|
|
2714
|
+
source: "tenas" | "openloaf" | "openloaf-saas";
|
|
2698
2715
|
type: "ui" | "performance" | "bug" | "feature" | "other";
|
|
2699
2716
|
saasStatus: "unread" | "read" | "resolved" | "ignored";
|
|
2700
2717
|
content: string;
|
|
@@ -2710,6 +2727,7 @@ declare const feedbackEndpoints: {
|
|
|
2710
2727
|
/** Feedback source schema. */
|
|
2711
2728
|
declare const feedbackSourceSchema: z.ZodEnum<{
|
|
2712
2729
|
tenas: "tenas";
|
|
2730
|
+
openloaf: "openloaf";
|
|
2713
2731
|
"openloaf-saas": "openloaf-saas";
|
|
2714
2732
|
}>;
|
|
2715
2733
|
/** Feedback category schema. */
|
|
@@ -2731,6 +2749,7 @@ declare const feedbackSaasStatusSchema: z.ZodEnum<{
|
|
|
2731
2749
|
declare const feedbackSubmitRequestSchema: z.ZodObject<{
|
|
2732
2750
|
source: z.ZodOptional<z.ZodEnum<{
|
|
2733
2751
|
tenas: "tenas";
|
|
2752
|
+
openloaf: "openloaf";
|
|
2734
2753
|
"openloaf-saas": "openloaf-saas";
|
|
2735
2754
|
}>>;
|
|
2736
2755
|
type: z.ZodEnum<{
|
|
@@ -2765,6 +2784,7 @@ declare const feedbackListRequestSchema: z.ZodObject<{
|
|
|
2765
2784
|
}>>;
|
|
2766
2785
|
source: z.ZodOptional<z.ZodEnum<{
|
|
2767
2786
|
tenas: "tenas";
|
|
2787
|
+
openloaf: "openloaf";
|
|
2768
2788
|
"openloaf-saas": "openloaf-saas";
|
|
2769
2789
|
}>>;
|
|
2770
2790
|
saasStatus: z.ZodOptional<z.ZodEnum<{
|
|
@@ -2782,6 +2802,7 @@ declare const feedbackItemSchema: z.ZodObject<{
|
|
|
2782
2802
|
id: z.ZodString;
|
|
2783
2803
|
source: z.ZodEnum<{
|
|
2784
2804
|
tenas: "tenas";
|
|
2805
|
+
openloaf: "openloaf";
|
|
2785
2806
|
"openloaf-saas": "openloaf-saas";
|
|
2786
2807
|
}>;
|
|
2787
2808
|
type: z.ZodEnum<{
|
|
@@ -2810,6 +2831,7 @@ declare const feedbackListPayloadSchema: z.ZodObject<{
|
|
|
2810
2831
|
id: z.ZodString;
|
|
2811
2832
|
source: z.ZodEnum<{
|
|
2812
2833
|
tenas: "tenas";
|
|
2834
|
+
openloaf: "openloaf";
|
|
2813
2835
|
"openloaf-saas": "openloaf-saas";
|
|
2814
2836
|
}>;
|
|
2815
2837
|
type: z.ZodEnum<{
|
|
@@ -2842,6 +2864,7 @@ declare const feedbackListResponseSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
2842
2864
|
id: z.ZodString;
|
|
2843
2865
|
source: z.ZodEnum<{
|
|
2844
2866
|
tenas: "tenas";
|
|
2867
|
+
openloaf: "openloaf";
|
|
2845
2868
|
"openloaf-saas": "openloaf-saas";
|
|
2846
2869
|
}>;
|
|
2847
2870
|
type: z.ZodEnum<{
|
|
@@ -2878,6 +2901,7 @@ declare const feedbackDetailPayloadSchema: z.ZodObject<{
|
|
|
2878
2901
|
id: z.ZodString;
|
|
2879
2902
|
source: z.ZodEnum<{
|
|
2880
2903
|
tenas: "tenas";
|
|
2904
|
+
openloaf: "openloaf";
|
|
2881
2905
|
"openloaf-saas": "openloaf-saas";
|
|
2882
2906
|
}>;
|
|
2883
2907
|
type: z.ZodEnum<{
|
|
@@ -2907,6 +2931,7 @@ declare const feedbackDetailResponseSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
2907
2931
|
id: z.ZodString;
|
|
2908
2932
|
source: z.ZodEnum<{
|
|
2909
2933
|
tenas: "tenas";
|
|
2934
|
+
openloaf: "openloaf";
|
|
2910
2935
|
"openloaf-saas": "openloaf-saas";
|
|
2911
2936
|
}>;
|
|
2912
2937
|
type: z.ZodEnum<{
|
|
@@ -2932,6 +2957,13 @@ declare const feedbackDetailResponseSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
2932
2957
|
}, z.core.$strip>, z.ZodObject<{
|
|
2933
2958
|
message: z.ZodString;
|
|
2934
2959
|
}, z.core.$strip>]>;
|
|
2960
|
+
/** Response returned after a successful attachment upload. */
|
|
2961
|
+
type FeedbackAttachmentResponse = {
|
|
2962
|
+
/** Public URL of the uploaded file. */
|
|
2963
|
+
url: string;
|
|
2964
|
+
/** Object key in the storage bucket. */
|
|
2965
|
+
key: string;
|
|
2966
|
+
};
|
|
2935
2967
|
type FeedbackSource = z.infer<typeof feedbackSourceSchema>;
|
|
2936
2968
|
type FeedbackType = z.infer<typeof feedbackTypeSchema>;
|
|
2937
2969
|
type FeedbackSaasStatus = z.infer<typeof feedbackSaasStatusSchema>;
|
|
@@ -2957,12 +2989,18 @@ declare class FeedbackClient {
|
|
|
2957
2989
|
submit(payload: FeedbackSubmitRequest): Promise<void | {
|
|
2958
2990
|
message: string;
|
|
2959
2991
|
}>;
|
|
2992
|
+
/**
|
|
2993
|
+
* Upload a file attachment for feedback.
|
|
2994
|
+
* Returns the public URL and object key to include in feedback context.
|
|
2995
|
+
*/
|
|
2996
|
+
uploadAttachment(file: File | Blob, filename?: string): Promise<FeedbackAttachmentResponse>;
|
|
2960
2997
|
/** List feedback records for the current user. */
|
|
2961
2998
|
list(payload?: FeedbackListRequest): Promise<FeedbackListResponse>;
|
|
2962
2999
|
/** Fetch feedback detail by id. */
|
|
2963
3000
|
detail(feedbackId: string): Promise<FeedbackDetailResponse>;
|
|
2964
3001
|
}
|
|
2965
3002
|
|
|
3003
|
+
type index$1_FeedbackAttachmentResponse = FeedbackAttachmentResponse;
|
|
2966
3004
|
type index$1_FeedbackClient = FeedbackClient;
|
|
2967
3005
|
declare const index$1_FeedbackClient: typeof FeedbackClient;
|
|
2968
3006
|
type index$1_FeedbackDetailPayload = FeedbackDetailPayload;
|
|
@@ -2992,7 +3030,7 @@ declare const index$1_feedbackSubmitRequestSchema: typeof feedbackSubmitRequestS
|
|
|
2992
3030
|
declare const index$1_feedbackSubmitResponseSchema: typeof feedbackSubmitResponseSchema;
|
|
2993
3031
|
declare const index$1_feedbackTypeSchema: typeof feedbackTypeSchema;
|
|
2994
3032
|
declare namespace index$1 {
|
|
2995
|
-
export { index$1_FeedbackClient as FeedbackClient, type index$1_FeedbackDetailPayload as FeedbackDetailPayload, type index$1_FeedbackDetailRequest as FeedbackDetailRequest, type index$1_FeedbackDetailResponse as FeedbackDetailResponse, type index$1_FeedbackListPayload as FeedbackListPayload, type index$1_FeedbackListRequest as FeedbackListRequest, type index$1_FeedbackListResponse as FeedbackListResponse, type index$1_FeedbackSaasStatus as FeedbackSaasStatus, type index$1_FeedbackSource as FeedbackSource, type index$1_FeedbackSubmitError as FeedbackSubmitError, type index$1_FeedbackSubmitRequest as FeedbackSubmitRequest, type index$1_FeedbackSubmitResponse as FeedbackSubmitResponse, type index$1_FeedbackType as FeedbackType, index$1_feedbackDetailPayloadSchema as feedbackDetailPayloadSchema, index$1_feedbackDetailRequestSchema as feedbackDetailRequestSchema, index$1_feedbackDetailResponseSchema as feedbackDetailResponseSchema, index$1_feedbackEndpoints as feedbackEndpoints, index$1_feedbackItemSchema as feedbackItemSchema, index$1_feedbackListPayloadSchema as feedbackListPayloadSchema, index$1_feedbackListRequestSchema as feedbackListRequestSchema, index$1_feedbackListResponseSchema as feedbackListResponseSchema, index$1_feedbackSaasStatusSchema as feedbackSaasStatusSchema, index$1_feedbackSourceSchema as feedbackSourceSchema, index$1_feedbackSubmitErrorSchema as feedbackSubmitErrorSchema, index$1_feedbackSubmitRequestSchema as feedbackSubmitRequestSchema, index$1_feedbackSubmitResponseSchema as feedbackSubmitResponseSchema, index$1_feedbackTypeSchema as feedbackTypeSchema };
|
|
3033
|
+
export { type index$1_FeedbackAttachmentResponse as FeedbackAttachmentResponse, index$1_FeedbackClient as FeedbackClient, type index$1_FeedbackDetailPayload as FeedbackDetailPayload, type index$1_FeedbackDetailRequest as FeedbackDetailRequest, type index$1_FeedbackDetailResponse as FeedbackDetailResponse, type index$1_FeedbackListPayload as FeedbackListPayload, type index$1_FeedbackListRequest as FeedbackListRequest, type index$1_FeedbackListResponse as FeedbackListResponse, type index$1_FeedbackSaasStatus as FeedbackSaasStatus, type index$1_FeedbackSource as FeedbackSource, type index$1_FeedbackSubmitError as FeedbackSubmitError, type index$1_FeedbackSubmitRequest as FeedbackSubmitRequest, type index$1_FeedbackSubmitResponse as FeedbackSubmitResponse, type index$1_FeedbackType as FeedbackType, index$1_feedbackDetailPayloadSchema as feedbackDetailPayloadSchema, index$1_feedbackDetailRequestSchema as feedbackDetailRequestSchema, index$1_feedbackDetailResponseSchema as feedbackDetailResponseSchema, index$1_feedbackEndpoints as feedbackEndpoints, index$1_feedbackItemSchema as feedbackItemSchema, index$1_feedbackListPayloadSchema as feedbackListPayloadSchema, index$1_feedbackListRequestSchema as feedbackListRequestSchema, index$1_feedbackListResponseSchema as feedbackListResponseSchema, index$1_feedbackSaasStatusSchema as feedbackSaasStatusSchema, index$1_feedbackSourceSchema as feedbackSourceSchema, index$1_feedbackSubmitErrorSchema as feedbackSubmitErrorSchema, index$1_feedbackSubmitRequestSchema as feedbackSubmitRequestSchema, index$1_feedbackSubmitResponseSchema as feedbackSubmitResponseSchema, index$1_feedbackTypeSchema as feedbackTypeSchema };
|
|
2996
3034
|
}
|
|
2997
3035
|
|
|
2998
3036
|
/** User API endpoints. */
|
|
@@ -3165,4 +3203,4 @@ declare function createTrpcClient(options: TrpcClientOptions): _trpc_client.TRPC
|
|
|
3165
3203
|
transformer: false;
|
|
3166
3204
|
}, _trpc_server.TRPCDecorateCreateRouterOptions<_trpc_server.TRPCCreateRouterOptions>>>;
|
|
3167
3205
|
|
|
3168
|
-
export { AI_MODEL_CAPABILITY_INPUT_KEYS, AI_MODEL_CAPABILITY_OUTPUT_KEYS, AI_MODEL_TAGS, AI_MODEL_TAG_LABELS, type AiChatModel, type AiChatModelsResponse, AiClient, 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, type AiVideoInputs, type AiVideoOutput, type AiVideoRequest, 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, 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 ResponseType, SaaSClient, type SaaSClientOptions, SaaSContract, SaaSHttpError, SaaSNetworkError, SaaSSchemaError, 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$4 as aiModule, aiProviderTemplateModelSchema, aiProviderTemplateSchema, aiProviderTemplatesPayloadSchema, aiProviderTemplatesRequestSchema, aiProviderTemplatesResponseSchema, aiProviderTemplatesSuccessSchema, aiTaskCancelDataSchema, aiTaskCancelRequestSchema, aiTaskCancelResponseSchema, aiTaskCancelSuccessSchema, aiTaskCreatedDataSchema, aiTaskCreatedResponseSchema, aiTaskCreatedSuccessSchema, aiTaskDataSchema, aiTaskErrorSchema, aiTaskRequestSchema, aiTaskResponseSchema, aiTaskResultTypeSchema, aiTaskStatusSchema, aiTaskSuccessSchema, aiVideoInputsSchema, aiVideoOutputSchema, aiVideoRequestSchema, authEndpoints, authExchangeRequestSchema, authExchangeResponseSchema, authLogoutRequestSchema, authLogoutResponseSchema, index$
|
|
3206
|
+
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, type AiVideoInputs, type AiVideoOutput, type AiVideoRequest, 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 ResponseType, SaaSClient, type SaaSClientOptions, SaaSContract, SaaSHttpError, SaaSNetworkError, SaaSSchemaError, 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$4 as aiModule, aiProviderTemplateModelSchema, aiProviderTemplateSchema, aiProviderTemplatesPayloadSchema, aiProviderTemplatesRequestSchema, aiProviderTemplatesResponseSchema, aiProviderTemplatesSuccessSchema, aiTaskCancelDataSchema, aiTaskCancelRequestSchema, aiTaskCancelResponseSchema, aiTaskCancelSuccessSchema, aiTaskCreatedDataSchema, aiTaskCreatedResponseSchema, aiTaskCreatedSuccessSchema, aiTaskDataSchema, aiTaskErrorSchema, aiTaskRequestSchema, aiTaskResponseSchema, aiTaskResultTypeSchema, aiTaskStatusSchema, aiTaskSuccessSchema, aiVideoInputsSchema, aiVideoOutputSchema, aiVideoRequestSchema, authEndpoints, authExchangeRequestSchema, authExchangeResponseSchema, authLogoutRequestSchema, authLogoutResponseSchema, index$3 as authModule, authRefreshErrorSchema, authRefreshRequestSchema, authRefreshResponseSchema, authRefreshSuccessSchema, authRefreshUserSchema, auxiliaryEndpoints, auxiliaryInferRequestSchema, auxiliaryInferResponseSchema, index$2 as auxiliaryModule, auxiliaryQuotaResponseSchema, contract, createTrpcClient, feedbackDetailPayloadSchema, feedbackDetailRequestSchema, feedbackDetailResponseSchema, feedbackEndpoints, feedbackItemSchema, feedbackListPayloadSchema, feedbackListRequestSchema, feedbackListResponseSchema, index$1 as feedbackModule, feedbackSaasStatusSchema, feedbackSourceSchema, feedbackSubmitErrorSchema, feedbackSubmitRequestSchema, feedbackSubmitResponseSchema, feedbackTypeSchema, mergeHeaders, normalizeHeaders, request, userEndpoints, userMembershipLevelSchema, index as userModule, userSelfRequestSchema, userSelfResponseSchema, userSelfSchema };
|
package/dist/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
var _0x50f445=_0x4deb;(function(_0x3404fc,_0x10ee66){var _0x1091a8=_0x4deb,_0x5b23a9=_0x3404fc();while(!![]){try{var _0x4a827d=-parseInt(_0x1091a8(0x147))/(-0x6d3*-0x5+0x30c+0x2*-0x1295)*(parseInt(_0x1091a8(0x142))/(-0x1*-0x12cd+-0xd*-0x18e+-0x7cd*0x5))+parseInt(_0x1091a8(0x28d))/(0x2e3*0xa+0x17d3+-0x34ae)*(-parseInt(_0x1091a8(0x291))/(0x12e2*0x2+0x2*-0xdab+0x3e*-0x2b))+-parseInt(_0x1091a8(0x121))/(0xceb+-0x7*-0x23b+0x32b*-0x9)*(parseInt(_0x1091a8(0xe8))/(-0xb12+0x616+0x502))+parseInt(_0x1091a8(0xea))/(0x6*-0xb2+-0x128b*-0x1+-0xe58)*(parseInt(_0x1091a8(0x18e))/(-0x9b9+-0x2182*-0x1+-0x17c1))+parseInt(_0x1091a8(0x24c))/(-0x102f+0x190*-0x2+0x1358)*(parseInt(_0x1091a8(0x213))/(0x1*-0x733+-0x1*0x222a+0x1*0x2967))+parseInt(_0x1091a8(0x11b))/(-0x182b+-0x239f*-0x1+-0xb69*0x1)+parseInt(_0x1091a8(0x188))/(-0x2d*0xd3+0x3*-0x347+0x5df*0x8);if(_0x4a827d===_0x10ee66)break;else _0x5b23a9['push'](_0x5b23a9['shift']());}catch(_0x3deb56){_0x5b23a9['push'](_0x5b23a9['shift']());}}}(_0x9d1c,0x63d3b+0xb1*0xb4b+-0x7cb13));import{z}from'zod';import{createTRPCClient,httpBatchLink}from'@trpc/client';var __defProp=Object[_0x50f445(0x1f6)+'eProp'+_0x50f445(0x21b)],__export=(_0x1a9a1c,_0x5b268a)=>{for(var _0x26cd51 in _0x5b268a)__defProp(_0x1a9a1c,_0x26cd51,{'get':_0x5b268a[_0x26cd51],'enumerable':!![]});},ai_exports={},_0x2fe1f7={};_0x2fe1f7[_0x50f445(0x256)+_0x50f445(0x21a)+'APABI'+_0x50f445(0x1a4)+_0x50f445(0x246)+'_KEYS']=()=>AI_MODEL_CAPABILITY_INPUT_KEYS,_0x2fe1f7[_0x50f445(0x256)+'DEL_C'+_0x50f445(0x237)+_0x50f445(0x1a4)+'OUTPU'+_0x50f445(0x1e0)+'S']=()=>AI_MODEL_CAPABILITY_OUTPUT_KEYS,_0x2fe1f7[_0x50f445(0x256)+_0x50f445(0x10a)+_0x50f445(0x235)]=()=>AI_MODEL_TAGS,_0x2fe1f7[_0x50f445(0x256)+_0x50f445(0x10a)+_0x50f445(0x1e6)+_0x50f445(0x1c3)]=()=>AI_MODEL_TAG_LABELS,_0x2fe1f7[_0x50f445(0xf0)+_0x50f445(0xf3)]=()=>AiClient,_0x2fe1f7[_0x50f445(0x270)+_0x50f445(0x107)+_0x50f445(0x16a)+'ma']=()=>aiChatModelSchema,_0x2fe1f7[_0x50f445(0x270)+_0x50f445(0x107)+_0x50f445(0x1ad)+_0x50f445(0x169)+_0x50f445(0x101)]=()=>aiChatModelsPayloadSchema,_0x2fe1f7[_0x50f445(0x270)+_0x50f445(0x107)+_0x50f445(0x1de)+_0x50f445(0x20e)+_0x50f445(0x137)+'a']=()=>aiChatModelsResponseSchema,_0x2fe1f7[_0x50f445(0x270)+_0x50f445(0x107)+_0x50f445(0x170)+_0x50f445(0x183)+_0x50f445(0x101)]=()=>aiChatModelsSuccessSchema,_0x2fe1f7[_0x50f445(0x1a8)+_0x50f445(0x293)+'s']=()=>aiEndpoints,_0x2fe1f7['aiErr'+_0x50f445(0x1b7)+'ponse'+_0x50f445(0x137)+'a']=()=>aiErrorResponseSchema,_0x2fe1f7[_0x50f445(0x1d3)+_0x50f445(0x13f)+_0x50f445(0xfa)+_0x50f445(0x1ac)]=()=>aiImageInputsSchema,_0x2fe1f7[_0x50f445(0x1d3)+'geOut'+_0x50f445(0x182)+_0x50f445(0x1ac)]=()=>aiImageOutputSchema,_0x2fe1f7[_0x50f445(0x1d3)+_0x50f445(0xed)+_0x50f445(0x1cf)+'chema']=()=>aiImageRequestSchema,_0x2fe1f7[_0x50f445(0x116)+'iaInp'+_0x50f445(0x29d)+_0x50f445(0x119)]=()=>aiMediaInputSchema,_0x2fe1f7[_0x50f445(0xd3)+_0x50f445(0xd4)+_0x50f445(0x106)+_0x50f445(0x1f9)+_0x50f445(0x163)+'chema']=()=>aiModelCapabilitiesInputSchema,_0x2fe1f7['aiMod'+'elCap'+'abili'+_0x50f445(0x199)+'utput'+_0x50f445(0x137)+'a']=()=>aiModelCapabilitiesOutputSchema,_0x2fe1f7[_0x50f445(0xd3)+_0x50f445(0xd4)+_0x50f445(0x106)+_0x50f445(0xff)+_0x50f445(0x101)]=()=>aiModelCapabilitiesSchema,_0x2fe1f7[_0x50f445(0xd3)+_0x50f445(0xd4)+'abili'+_0x50f445(0xd5)+_0x50f445(0x202)+_0x50f445(0x1ac)]=()=>aiModelCapabilityCommonSchema,_0x2fe1f7[_0x50f445(0xd3)+_0x50f445(0x24e)+_0x50f445(0x19e)+'rFiel'+'dSche'+'ma']=()=>aiModelParameterFieldSchema,_0x2fe1f7['aiMod'+_0x50f445(0x24e)+_0x50f445(0x28f)+'hema']=()=>aiModelParamsSchema,_0x2fe1f7[_0x50f445(0xd3)+_0x50f445(0x25b)+_0x50f445(0x119)]=()=>aiModelSchema,_0x2fe1f7[_0x50f445(0xd3)+_0x50f445(0x10e)+_0x50f445(0x230)+_0x50f445(0x137)+'a']=()=>aiModelsPayloadSchema,_0x2fe1f7[_0x50f445(0xd3)+_0x50f445(0x29e)+_0x50f445(0xe2)+_0x50f445(0x137)+'a']=()=>aiModelsRequestSchema,_0x2fe1f7['aiMod'+_0x50f445(0x29e)+_0x50f445(0x280)+_0x50f445(0x28b)+'ma']=()=>aiModelsResponseSchema,_0x2fe1f7['aiMod'+_0x50f445(0x128)+_0x50f445(0x27c)+'Schem'+'a']=()=>aiModelsSuccessSchema,_0x2fe1f7[_0x50f445(0xd3)+_0x50f445(0x114)+_0x50f445(0x23d)+'AtDat'+_0x50f445(0x104)+'ma']=()=>aiModelsUpdatedAtDataSchema,_0x2fe1f7[_0x50f445(0xd3)+_0x50f445(0x114)+_0x50f445(0x23d)+'AtRes'+_0x50f445(0x20e)+_0x50f445(0x137)+'a']=()=>aiModelsUpdatedAtResponseSchema,_0x2fe1f7[_0x50f445(0xd3)+'elsUp'+_0x50f445(0x23d)+_0x50f445(0x217)+_0x50f445(0x183)+_0x50f445(0x101)]=()=>aiModelsUpdatedAtSuccessSchema,_0x2fe1f7[_0x50f445(0x1a3)+_0x50f445(0x208)+'Templ'+'ateMo'+'delSc'+_0x50f445(0x1ac)]=()=>aiProviderTemplateModelSchema,_0x2fe1f7[_0x50f445(0x1a3)+_0x50f445(0x208)+_0x50f445(0x135)+'ateSc'+'hema']=()=>aiProviderTemplateSchema,_0x2fe1f7[_0x50f445(0x1a3)+_0x50f445(0x208)+_0x50f445(0x135)+_0x50f445(0x1e1)+_0x50f445(0x165)+_0x50f445(0x266)+'ma']=()=>aiProviderTemplatesPayloadSchema,_0x2fe1f7[_0x50f445(0x1a3)+_0x50f445(0x208)+_0x50f445(0x135)+_0x50f445(0x1be)+_0x50f445(0x15e)+_0x50f445(0x126)+'ma']=()=>aiProviderTemplatesRequestSchema,_0x2fe1f7[_0x50f445(0x1a3)+_0x50f445(0x208)+_0x50f445(0x135)+_0x50f445(0x1be)+_0x50f445(0x238)+_0x50f445(0x2a3)+'ema']=()=>aiProviderTemplatesResponseSchema,_0x2fe1f7[_0x50f445(0x1a3)+_0x50f445(0x208)+_0x50f445(0x135)+_0x50f445(0x1d6)+_0x50f445(0x205)+'sSche'+'ma']=()=>aiProviderTemplatesSuccessSchema,_0x2fe1f7[_0x50f445(0x2a0)+_0x50f445(0x14d)+_0x50f445(0x13a)+_0x50f445(0x104)+'ma']=()=>aiTaskCancelDataSchema,_0x2fe1f7[_0x50f445(0x2a0)+_0x50f445(0x14d)+'elReq'+_0x50f445(0x1cf)+_0x50f445(0x101)]=()=>aiTaskCancelRequestSchema,_0x2fe1f7[_0x50f445(0x2a0)+_0x50f445(0x14d)+_0x50f445(0x278)+'ponse'+'Schem'+'a']=()=>aiTaskCancelResponseSchema,_0x2fe1f7[_0x50f445(0x2a0)+_0x50f445(0x14d)+_0x50f445(0x1d1)+_0x50f445(0x183)+_0x50f445(0x101)]=()=>aiTaskCancelSuccessSchema,_0x2fe1f7['aiTas'+_0x50f445(0x16f)+_0x50f445(0x186)+_0x50f445(0x155)+_0x50f445(0x119)]=()=>aiTaskCreatedDataSchema,_0x2fe1f7[_0x50f445(0x2a0)+_0x50f445(0x16f)+_0x50f445(0x1bf)+_0x50f445(0x280)+_0x50f445(0x28b)+'ma']=()=>aiTaskCreatedResponseSchema,_0x2fe1f7[_0x50f445(0x2a0)+_0x50f445(0x16f)+_0x50f445(0x24f)+'ccess'+'Schem'+'a']=()=>aiTaskCreatedSuccessSchema,_0x2fe1f7[_0x50f445(0x2a0)+_0x50f445(0x1ab)+_0x50f445(0x137)+'a']=()=>aiTaskDataSchema,_0x2fe1f7[_0x50f445(0x2a0)+_0x50f445(0x219)+'rSche'+'ma']=()=>aiTaskErrorSchema,_0x2fe1f7[_0x50f445(0x2a0)+_0x50f445(0x1ae)+_0x50f445(0x15a)+_0x50f445(0x1ac)]=()=>aiTaskRequestSchema,_0x2fe1f7[_0x50f445(0x2a0)+_0x50f445(0x29a)+'onseS'+_0x50f445(0x101)]=()=>aiTaskResponseSchema,_0x2fe1f7[_0x50f445(0x2a0)+'kResu'+'ltTyp'+_0x50f445(0x28b)+'ma']=()=>aiTaskResultTypeSchema,_0x2fe1f7[_0x50f445(0x2a0)+_0x50f445(0x11c)+_0x50f445(0x24b)+_0x50f445(0x119)]=()=>aiTaskStatusSchema,_0x2fe1f7[_0x50f445(0x2a0)+_0x50f445(0x12c)+'essSc'+_0x50f445(0x1ac)]=()=>aiTaskSuccessSchema,_0x2fe1f7[_0x50f445(0x22f)+_0x50f445(0xdb)+_0x50f445(0xfa)+_0x50f445(0x1ac)]=()=>aiVideoInputsSchema,_0x2fe1f7[_0x50f445(0x22f)+_0x50f445(0x236)+_0x50f445(0x182)+_0x50f445(0x1ac)]=()=>aiVideoOutputSchema,_0x2fe1f7[_0x50f445(0x22f)+'eoReq'+_0x50f445(0x1cf)+'chema']=()=>aiVideoRequestSchema,__export(ai_exports,_0x2fe1f7);var AiClient=class{[_0x50f445(0x1e2)];constructor(_0xe45ed1){var _0x59cc92=_0x50f445;this[_0x59cc92(0x1e2)]=_0xe45ed1;}async[_0x50f445(0x1a5)](_0x1a824f){var _0x366c19=_0x50f445;const _0x412705=await this[_0x366c19(0x1e2)][_0x366c19(0x156)+_0x366c19(0x1c6)+_0x366c19(0x1fc)]();return this[_0x366c19(0x1e2)][_0x366c19(0x19c)+'st'](this['sdk'][_0x366c19(0x29f)+_0x366c19(0x299)]['ai'][_0x366c19(0x1a5)],{'baseUrl':this[_0x366c19(0x1e2)][_0x366c19(0x209)+_0x366c19(0x201)](),'headers':_0x412705,'body':_0x1a824f});}async[_0x50f445(0x159)](_0x53db42){var _0x361d70=_0x50f445;const _0x2d9595=await this[_0x361d70(0x1e2)][_0x361d70(0x156)+_0x361d70(0x1c6)+_0x361d70(0x1fc)]();return this[_0x361d70(0x1e2)][_0x361d70(0x19c)+'st'](this[_0x361d70(0x1e2)][_0x361d70(0x29f)+_0x361d70(0x299)]['ai'][_0x361d70(0x159)],{'baseUrl':this[_0x361d70(0x1e2)][_0x361d70(0x209)+_0x361d70(0x201)](),'headers':_0x2d9595,'body':_0x53db42});}async[_0x50f445(0xd1)](_0x50c105){var _0x110e12=_0x50f445;const _0x49476b=await this[_0x110e12(0x1e2)]['build'+_0x110e12(0x1c6)+'eader']();return this[_0x110e12(0x1e2)][_0x110e12(0x19c)+'st'](this[_0x110e12(0x1e2)][_0x110e12(0x29f)+_0x110e12(0x299)]['ai'][_0x110e12(0xd1)](_0x50c105),{'baseUrl':this[_0x110e12(0x1e2)][_0x110e12(0x209)+_0x110e12(0x201)](),'headers':_0x49476b,'body':void(0x11*0x89+-0x1835+-0x78e*-0x2)});}async['cance'+'lTask'](_0x100895){var _0x5a6e9f=_0x50f445;const _0xd99877=await this['sdk'][_0x5a6e9f(0x156)+_0x5a6e9f(0x1c6)+_0x5a6e9f(0x1fc)]();return this[_0x5a6e9f(0x1e2)][_0x5a6e9f(0x19c)+'st'](this[_0x5a6e9f(0x1e2)]['contr'+_0x5a6e9f(0x299)]['ai'][_0x5a6e9f(0x1b0)+_0x5a6e9f(0x168)](_0x100895),{'baseUrl':this[_0x5a6e9f(0x1e2)][_0x5a6e9f(0x209)+_0x5a6e9f(0x201)](),'headers':_0xd99877,'body':void(0x3d*-0x35+0x58d+0x714)});}async[_0x50f445(0x1a5)+'Model'+'s'](){var _0x5b1d01=_0x50f445;const _0x184376=await this[_0x5b1d01(0x1e2)][_0x5b1d01(0x156)+'AuthH'+_0x5b1d01(0x1fc)]();return this[_0x5b1d01(0x1e2)]['reque'+'st'](this[_0x5b1d01(0x1e2)]['contr'+_0x5b1d01(0x299)]['ai'][_0x5b1d01(0x1a5)+_0x5b1d01(0x284)+'s'],{'baseUrl':this[_0x5b1d01(0x1e2)][_0x5b1d01(0x209)+'seUrl'](),'headers':_0x184376,'body':void(-0x2*-0xc41+0xf3a+-0x27bc)});}async[_0x50f445(0x159)+_0x50f445(0x284)+'s'](){var _0x3123c7=_0x50f445;const _0x44a708=await this[_0x3123c7(0x1e2)][_0x3123c7(0x156)+_0x3123c7(0x1c6)+_0x3123c7(0x1fc)]();return this[_0x3123c7(0x1e2)][_0x3123c7(0x19c)+'st'](this[_0x3123c7(0x1e2)][_0x3123c7(0x29f)+'act']['ai'][_0x3123c7(0x159)+_0x3123c7(0x284)+'s'],{'baseUrl':this[_0x3123c7(0x1e2)][_0x3123c7(0x209)+_0x3123c7(0x201)](),'headers':_0x44a708,'body':void(-0x2e*0x3b+0x2*-0x724+-0xd*-0x1ea)});}async[_0x50f445(0x1d8)+_0x50f445(0x173)](){var _0x147b2e=_0x50f445;const _0x346787=await this[_0x147b2e(0x1e2)]['build'+_0x147b2e(0x1c6)+_0x147b2e(0x1fc)]();return this[_0x147b2e(0x1e2)][_0x147b2e(0x19c)+'st'](this[_0x147b2e(0x1e2)][_0x147b2e(0x29f)+_0x147b2e(0x299)]['ai'][_0x147b2e(0x1d8)+_0x147b2e(0x173)],{'baseUrl':this[_0x147b2e(0x1e2)]['getBa'+'seUrl'](),'headers':_0x346787,'body':void(0x1f85+0x1e58+-0x3ddd)});}async[_0x50f445(0x172)+_0x50f445(0x254)+_0x50f445(0x1df)](){var _0x48fa55=_0x50f445;return this[_0x48fa55(0x1e2)][_0x48fa55(0x19c)+'st'](this['sdk'][_0x48fa55(0x29f)+'act']['ai'][_0x48fa55(0x172)+'sUpda'+_0x48fa55(0x1df)],{'baseUrl':this['sdk']['getBa'+_0x48fa55(0x201)](),'headers':{},'body':void(0x5ed+-0x80a+0x21d)});}async[_0x50f445(0x162)+_0x50f445(0x152)+_0x50f445(0x228)+'es'](){var _0x28e25f=_0x50f445;return this[_0x28e25f(0x1e2)][_0x28e25f(0x19c)+'st'](this[_0x28e25f(0x1e2)]['contr'+'act']['ai'][_0x28e25f(0x162)+_0x28e25f(0x152)+_0x28e25f(0x228)+'es'],{'baseUrl':this[_0x28e25f(0x1e2)][_0x28e25f(0x209)+_0x28e25f(0x201)](),'headers':{},'body':void(-0x54*0x6+-0xe7d+0x1075)});}},AI_MODEL_TAGS=['image'+'_gene'+_0x50f445(0x148)+'n','image'+_0x50f445(0x1c7)+_0x50f445(0x223)+'ut',_0x50f445(0x1a5)+'_inpu'+'t','image'+_0x50f445(0x1c7)+_0x50f445(0xf7)+_0x50f445(0x115)+'on',_0x50f445(0x1a5)+_0x50f445(0x1c5),_0x50f445(0x159)+_0x50f445(0x157)+_0x50f445(0x148)+'n','chat',_0x50f445(0x1e3)+_0x50f445(0x139),_0x50f445(0x1a2)+_0x50f445(0x25d),_0x50f445(0x1a5)+'_anal'+_0x50f445(0x22a),_0x50f445(0x159)+'_anal'+_0x50f445(0x22a),_0x50f445(0x220)+_0x50f445(0x1d0)+_0x50f445(0x22a),_0x50f445(0x1fe)],_0x2665b8={};_0x2665b8['image'+_0x50f445(0x157)+_0x50f445(0x148)+'n']=_0x50f445(0xd0),_0x2665b8[_0x50f445(0x1a5)+_0x50f445(0x1c7)+_0x50f445(0x223)+'ut']=_0x50f445(0x178),_0x2665b8[_0x50f445(0x1a5)+_0x50f445(0x15b)+'t']=_0x50f445(0x124),_0x2665b8[_0x50f445(0x1a5)+_0x50f445(0x1c7)+'i_gen'+'erati'+'on']='多图生成',_0x2665b8['image'+_0x50f445(0x1c5)]=_0x50f445(0xf4),_0x2665b8[_0x50f445(0x159)+_0x50f445(0x157)+'ratio'+'n']=_0x50f445(0x1e9),_0x2665b8[_0x50f445(0x231)]='对话',_0x2665b8[_0x50f445(0x1e3)+_0x50f445(0x139)]='推理',_0x2665b8[_0x50f445(0x1a2)+_0x50f445(0x25d)]=_0x50f445(0x1a7),_0x2665b8[_0x50f445(0x1a5)+_0x50f445(0x1d0)+_0x50f445(0x22a)]=_0x50f445(0x100),_0x2665b8[_0x50f445(0x159)+_0x50f445(0x1d0)+_0x50f445(0x22a)]=_0x50f445(0x282),_0x2665b8['audio'+_0x50f445(0x1d0)+'ysis']='音频理解',_0x2665b8[_0x50f445(0x1fe)]='代码';var AI_MODEL_TAG_LABELS=_0x2665b8,AI_MODEL_CAPABILITY_INPUT_KEYS=[_0x50f445(0x25e)+_0x50f445(0x22e),_0x50f445(0xfd)+_0x50f445(0x2a2)+'sk',_0x50f445(0xfd)+'rtsRe'+'feren'+_0x50f445(0x23a)+'eo',_0x50f445(0xfd)+'rtsSt'+_0x50f445(0x179)+'d'],AI_MODEL_CAPABILITY_OUTPUT_KEYS=[_0x50f445(0xfd)+_0x50f445(0x1b1)+'lti',_0x50f445(0xfd)+'rtsAu'+_0x50f445(0x120)],Endpoint=class{[_0x50f445(0x26d)+'d'];['path'];[_0x50f445(0x249)+_0x50f445(0x248)+'pe'];['reque'+'st'];[_0x50f445(0x249)+_0x50f445(0xd2)];constructor(_0x566c99){var _0xadaa26=_0x50f445;this[_0xadaa26(0x26d)+'d']=_0x566c99[_0xadaa26(0x26d)+'d'],this[_0xadaa26(0x1ce)]=_0x566c99['path'],this[_0xadaa26(0x19c)+'st']=_0x566c99[_0xadaa26(0x19c)+_0xadaa26(0x167)+_0xadaa26(0x119)],this[_0xadaa26(0x249)+_0xadaa26(0xd2)]=_0x566c99[_0xadaa26(0x249)+_0xadaa26(0x17a)+_0xadaa26(0x1ac)],this['respo'+_0xadaa26(0x248)+'pe']=_0x566c99[_0xadaa26(0x249)+_0xadaa26(0x248)+'pe']??_0xadaa26(0x130);}[_0x50f445(0x185)+_0x50f445(0x1c8)+'st'](_0x2ea9df){var _0x3b2478=_0x50f445;return this[_0x3b2478(0x19c)+'st']['parse'](_0x2ea9df);}['parse'+_0x50f445(0x21c)+'nse'](_0x28cd89){var _0x39323f=_0x50f445;return this[_0x39323f(0x249)+_0x39323f(0xd2)][_0x39323f(0x185)](_0x28cd89);}[_0x50f445(0x10c)+_0x50f445(0x28c)+_0x50f445(0x15e)+'t'](_0x4940af){var _0x5aa3ca=_0x50f445;return this['reque'+'st'][_0x5aa3ca(0x10c)+_0x5aa3ca(0x295)](_0x4940af);}[_0x50f445(0x10c)+_0x50f445(0x28c)+_0x50f445(0x238)+'se'](_0x509fd9){var _0x35052e=_0x50f445;return this[_0x35052e(0x249)+_0x35052e(0xd2)][_0x35052e(0x10c)+'arse'](_0x509fd9);}},aiVoidRequestSchema=z[_0x50f445(0x17e)](),_0x600ceb={};_0x600ceb[_0x50f445(0x206)+'ge']=_0x50f445(0x1b8)+_0x50f445(0x16d)+_0x50f445(0x252)+'ase64'+_0x50f445(0x297)+_0x50f445(0x11a)+'ed';var aiMediaInputSchema=z[_0x50f445(0x1a1)+'t']({'url':z[_0x50f445(0xec)+'g']()[_0x50f445(0x1f1)]()[_0x50f445(0x14c)+'ibe'](_0x50f445(0x15f)+'L')[_0x50f445(0x10f)+'nal'](),'base64':z[_0x50f445(0xec)+'g']()[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x294)+_0x50f445(0x11e)+'数据')[_0x50f445(0x10f)+'nal'](),'mediaType':z[_0x50f445(0xec)+'g']()['descr'+'ibe'](_0x50f445(0x204))[_0x50f445(0x10f)+'nal']()})['refin'+'e'](_0x30192a=>Boolean(_0x30192a[_0x50f445(0x1f1)]||_0x30192a[_0x50f445(0x1cc)+'4']),_0x600ceb),aiImageInputsSchema=z[_0x50f445(0x1a1)+'t']({'images':z[_0x50f445(0x1e8)](aiMediaInputSchema)[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x111)+'表')[_0x50f445(0x10f)+_0x50f445(0x23b)](),'mask':aiMediaInputSchema['descr'+_0x50f445(0x27a)](_0x50f445(0x11f))['optio'+_0x50f445(0x23b)]()}),aiVideoInputsSchema=z[_0x50f445(0x1a1)+'t']({'images':z[_0x50f445(0x1e8)](aiMediaInputSchema)['descr'+'ibe']('输入图片列'+'表')[_0x50f445(0x10f)+'nal'](),'startImage':aiMediaInputSchema[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x16e))[_0x50f445(0x10f)+_0x50f445(0x23b)](),'endImage':aiMediaInputSchema[_0x50f445(0x14c)+'ibe'](_0x50f445(0x1aa))[_0x50f445(0x10f)+_0x50f445(0x23b)](),'referenceVideo':aiMediaInputSchema['descr'+_0x50f445(0x27a)](_0x50f445(0xeb))[_0x50f445(0x10f)+'nal']()}),aiImageAspectRatioSchema=z[_0x50f445(0x19d)](['1:1',_0x50f445(0x241),'9:16','4:3'])[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x1f2)),aiImageQualitySchema=z[_0x50f445(0x19d)](['stand'+_0x50f445(0x12f),'hd'])[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x27d)),aiImageOutputSchema=z[_0x50f445(0x1a1)+'t']({'count':z['numbe'+'r']()[_0x50f445(0x198)]()[_0x50f445(0x244)](-0x1739+0x16f*0x17+-0x9bf)[_0x50f445(0x12e)](0x25e9+0x14e9+-0x3acd)[_0x50f445(0x14c)+'ibe'](_0x50f445(0x1c4)+'量')[_0x50f445(0x10f)+_0x50f445(0x23b)](),'aspectRatio':aiImageAspectRatioSchema[_0x50f445(0x14c)+'ibe'](_0x50f445(0x229)+'高比')[_0x50f445(0x10f)+_0x50f445(0x23b)](),'quality':aiImageQualitySchema[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x233)+'量')[_0x50f445(0x10f)+'nal']()}),aiVideoOutputSchema=z['objec'+'t']({'aspectRatio':z[_0x50f445(0xec)+'g']()[_0x50f445(0x14c)+'ibe'](_0x50f445(0x25c)+'高比')[_0x50f445(0x10f)+'nal'](),'duration':z[_0x50f445(0x196)+'r']()[_0x50f445(0x1f8)+_0x50f445(0x180)]()[_0x50f445(0x14c)+_0x50f445(0x27a)]('生成视频时'+_0x50f445(0x290))['optio'+_0x50f445(0x23b)](),'clarity':z['strin'+'g']()[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x222))[_0x50f445(0x10f)+'nal'](),'withAudio':z['boole'+'an']()[_0x50f445(0x14c)+'ibe'](_0x50f445(0x18f)+'频')[_0x50f445(0x10f)+_0x50f445(0x23b)]()}),aiImageRequestSchema=z[_0x50f445(0x1a1)+'t']({'modelId':z[_0x50f445(0xec)+'g']()[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x161)),'prompt':z[_0x50f445(0xec)+'g']()['descr'+'ibe']('提示词'),'negativePrompt':z['strin'+'g']()[_0x50f445(0x14c)+'ibe']('反向提示词')[_0x50f445(0x10f)+_0x50f445(0x23b)](),'style':z[_0x50f445(0xec)+'g']()[_0x50f445(0x14c)+_0x50f445(0x27a)]('风格')['optio'+_0x50f445(0x23b)](),'inputs':aiImageInputsSchema[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0xde))['optio'+_0x50f445(0x23b)](),'output':aiImageOutputSchema[_0x50f445(0x14c)+'ibe'](_0x50f445(0x1ed))[_0x50f445(0x10f)+_0x50f445(0x23b)](),'parameters':z[_0x50f445(0x103)+'d'](z[_0x50f445(0xec)+'g'](),z['unkno'+'wn']())[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x153))[_0x50f445(0x10f)+'nal']()}),aiVideoRequestSchema=z['objec'+'t']({'modelId':z[_0x50f445(0xec)+'g']()[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x161)),'prompt':z['strin'+'g']()[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x18c)),'negativePrompt':z['strin'+'g']()[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x22d))[_0x50f445(0x10f)+'nal'](),'style':z[_0x50f445(0xec)+'g']()['descr'+_0x50f445(0x27a)]('风格')[_0x50f445(0x10f)+_0x50f445(0x23b)](),'inputs':aiVideoInputsSchema[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0xde))[_0x50f445(0x10f)+_0x50f445(0x23b)](),'output':aiVideoOutputSchema[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x1ed))[_0x50f445(0x10f)+_0x50f445(0x23b)](),'parameters':z['recor'+'d'](z[_0x50f445(0xec)+'g'](),z[_0x50f445(0x275)+'wn']())[_0x50f445(0x14c)+'ibe'](_0x50f445(0x153))[_0x50f445(0x10f)+_0x50f445(0x23b)]()}),aiTaskCreatedDataSchema=z[_0x50f445(0x1a1)+'t']({'taskId':z['strin'+'g']()[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x118))}),aiErrorResponseSchema=z['objec'+'t']({'success':z[_0x50f445(0x227)+'al'](![])['descr'+_0x50f445(0x27a)]('是否成功'),'code':z['strin'+'g']()[_0x50f445(0x14c)+_0x50f445(0x27a)]('错误码')[_0x50f445(0x10f)+_0x50f445(0x23b)](),'message':z[_0x50f445(0xec)+'g']()['descr'+_0x50f445(0x27a)](_0x50f445(0x164))}),aiTaskCreatedSuccessSchema=z[_0x50f445(0x1a1)+'t']({'success':z[_0x50f445(0x227)+'al'](!![])[_0x50f445(0x14c)+'ibe'](_0x50f445(0x250)),'data':aiTaskCreatedDataSchema['descr'+_0x50f445(0x27a)](_0x50f445(0xf6))}),aiTaskCreatedResponseSchema=z['union']([aiTaskCreatedSuccessSchema,aiErrorResponseSchema]),aiTaskStatusSchema=z[_0x50f445(0x19d)]([_0x50f445(0x140)+'d',_0x50f445(0x23e)+'ng',_0x50f445(0x224)+'eded',_0x50f445(0x276)+'d',_0x50f445(0x1b0)+_0x50f445(0x22c)])[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x289)+'举'),aiTaskResultTypeSchema=z[_0x50f445(0x19d)]([_0x50f445(0x1a5),_0x50f445(0x159)])[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x26a)+'型'),aiTaskErrorSchema=z[_0x50f445(0x1a1)+'t']({'code':z[_0x50f445(0xec)+'g']()[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x218))[_0x50f445(0x10f)+_0x50f445(0x23b)](),'message':z[_0x50f445(0xec)+'g']()['descr'+_0x50f445(0x27a)](_0x50f445(0x164))}),aiTaskDataSchema=z[_0x50f445(0x1a1)+'t']({'status':aiTaskStatusSchema[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x1c9)),'progress':z['numbe'+'r']()[_0x50f445(0x244)](0x1*0xe7e+-0xbf5*0x1+-0x289)[_0x50f445(0x12e)](0x8ac+-0x158*0x9+0x3d0)[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x1fa))[_0x50f445(0x10f)+'nal'](),'resultType':aiTaskResultTypeSchema[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x296))[_0x50f445(0x10f)+_0x50f445(0x23b)](),'resultUrls':z[_0x50f445(0x1e8)](z['strin'+'g']())[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x17d)+'表')[_0x50f445(0x10f)+'nal'](),'error':aiTaskErrorSchema[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x164))[_0x50f445(0x10f)+_0x50f445(0x23b)](),'creditsConsumed':z[_0x50f445(0x196)+'r']()[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x160))[_0x50f445(0x10f)+'nal']()}),aiTaskSuccessSchema=z['objec'+'t']({'success':z['liter'+'al'](!![])[_0x50f445(0x14c)+_0x50f445(0x27a)]('是否成功'),'data':aiTaskDataSchema[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0xf6))}),aiTaskResponseSchema=z['union']([aiTaskSuccessSchema,aiErrorResponseSchema]),aiTaskCancelDataSchema=z[_0x50f445(0x1a1)+'t']({'status':z[_0x50f445(0x19d)]([_0x50f445(0x1b0)+_0x50f445(0x22c),_0x50f445(0x193)+_0x50f445(0xe1)])[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x1af)+'态')}),aiTaskCancelSuccessSchema=z[_0x50f445(0x1a1)+'t']({'success':z[_0x50f445(0x227)+'al'](!![])[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x250)),'data':aiTaskCancelDataSchema[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0xf6))}),aiTaskCancelResponseSchema=z['union']([aiTaskCancelSuccessSchema,aiErrorResponseSchema]),aiModelCapabilitiesInputSchema=z['objec'+'t']({'maxImages':z[_0x50f445(0x196)+'r']()[_0x50f445(0x198)]()[_0x50f445(0x14c)+'ibe'](_0x50f445(0x175)+_0x50f445(0xe0))['optio'+_0x50f445(0x23b)](),'supportsMask':z['boole'+'an']()['descr'+_0x50f445(0x27a)](_0x50f445(0x214)+'罩')[_0x50f445(0x10f)+'nal'](),'supportsReferenceVideo':z[_0x50f445(0x18b)+'an']()[_0x50f445(0x14c)+'ibe'](_0x50f445(0x13e)+'考视频')[_0x50f445(0x10f)+'nal'](),'supportsStartEnd':z[_0x50f445(0x18b)+'an']()[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x225)+'尾帧')[_0x50f445(0x10f)+'nal']()}),aiModelCapabilitiesOutputSchema=z[_0x50f445(0x1a1)+'t']({'supportsMulti':z['boole'+'an']()[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x1d4)+'输出')[_0x50f445(0x10f)+_0x50f445(0x23b)](),'supportsAudio':z[_0x50f445(0x18b)+'an']()[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x1dd)+_0x50f445(0x286))['optio'+_0x50f445(0x23b)]()}),aiModelCapabilityCommonSchema=z['objec'+'t']({'maxContextK':z['numbe'+'r']()[_0x50f445(0x198)]()[_0x50f445(0x1d2)+_0x50f445(0x279)+'e']()[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x22b)+_0x50f445(0x215))[_0x50f445(0x10f)+'nal'](),'supportsStructuredOutput':z[_0x50f445(0x18b)+'an']()[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x12a)+_0x50f445(0x110))[_0x50f445(0x10f)+_0x50f445(0x23b)](),'supportsWebSearch':z[_0x50f445(0x18b)+'an']()['descr'+_0x50f445(0x27a)](_0x50f445(0x263)+_0x50f445(0x1f3))['optio'+_0x50f445(0x23b)]()}),aiModelParameterValueSchema=z[_0x50f445(0x136)]([z[_0x50f445(0xec)+'g'](),z[_0x50f445(0x196)+'r'](),z['boole'+'an']()]),aiModelParameterFieldSchema=z[_0x50f445(0x1a1)+'t']({'key':z[_0x50f445(0xec)+'g']()['descr'+_0x50f445(0x27a)](_0x50f445(0x265)+'y'),'title':z[_0x50f445(0xec)+'g']()[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x259)),'description':z[_0x50f445(0xec)+'g']()['descr'+_0x50f445(0x27a)](_0x50f445(0x29c))[_0x50f445(0x10f)+_0x50f445(0x23b)](),'type':z['enum']([_0x50f445(0x1cb)+'t',_0x50f445(0x196)+'r','boole'+'an',_0x50f445(0x1f0)])[_0x50f445(0x14c)+_0x50f445(0x27a)]('参数类型'),'unit':z['strin'+'g']()[_0x50f445(0x14c)+_0x50f445(0x27a)]('单位')['optio'+_0x50f445(0x23b)](),'values':z[_0x50f445(0x1e8)](aiModelParameterValueSchema)[_0x50f445(0x14c)+_0x50f445(0x27a)]('可选值')[_0x50f445(0x10f)+'nal'](),'min':z[_0x50f445(0x196)+'r']()[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0xf5))['optio'+_0x50f445(0x23b)](),'max':z[_0x50f445(0x196)+'r']()[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x1f5))[_0x50f445(0x10f)+'nal'](),'step':z['numbe'+'r']()[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x12d))[_0x50f445(0x10f)+_0x50f445(0x23b)](),'default':aiModelParameterValueSchema[_0x50f445(0x14c)+_0x50f445(0x27a)]('默认值')[_0x50f445(0x10f)+_0x50f445(0x23b)](),'request':z[_0x50f445(0x18b)+'an']()['descr'+_0x50f445(0x27a)](_0x50f445(0x1b3))}),aiModelParamsSchema=z[_0x50f445(0x1a1)+'t']({'features':z[_0x50f445(0x1e8)](z[_0x50f445(0xec)+'g']())[_0x50f445(0x14c)+_0x50f445(0x27a)]('参数特性')[_0x50f445(0x10f)+'nal'](),'fields':z['array'](aiModelParameterFieldSchema)[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x292))[_0x50f445(0x10f)+_0x50f445(0x23b)]()}),aiModelCapabilitiesSchema=z[_0x50f445(0x1a1)+'t']({'common':aiModelCapabilityCommonSchema[_0x50f445(0x14c)+_0x50f445(0x27a)]('通用能力')[_0x50f445(0x10f)+'nal'](),'params':aiModelParamsSchema[_0x50f445(0x14c)+_0x50f445(0x27a)]('参数定义')[_0x50f445(0x10f)+_0x50f445(0x23b)](),'input':aiModelCapabilitiesInputSchema[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x17b))['optio'+_0x50f445(0x23b)](),'output':aiModelCapabilitiesOutputSchema[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x1ee))[_0x50f445(0x10f)+_0x50f445(0x23b)]()}),aiModelSchema=z[_0x50f445(0x1a1)+'t']({'id':z['strin'+'g']()[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x161)),'name':z[_0x50f445(0xec)+'g']()[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x27b))[_0x50f445(0x10f)+'nal'](),'familyId':z[_0x50f445(0xec)+'g']()['descr'+'ibe'](_0x50f445(0x184)+'ID')[_0x50f445(0x10f)+'nal'](),'providerId':z[_0x50f445(0xec)+'g']()[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x176)+'D')[_0x50f445(0x10f)+'nal'](),'tags':z[_0x50f445(0x1e8)](z[_0x50f445(0xec)+'g']())[_0x50f445(0x14c)+'ibe'](_0x50f445(0x1c0))[_0x50f445(0x10f)+_0x50f445(0x23b)](),'capabilities':aiModelCapabilitiesSchema['descr'+_0x50f445(0x27a)](_0x50f445(0x1ef))[_0x50f445(0x10f)+_0x50f445(0x23b)]()})['passt'+_0x50f445(0x26c)+'h'](),aiModelsPayloadSchema=z['objec'+'t']({'data':z['array'](aiModelSchema)[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x255)),'updatedAt':z[_0x50f445(0xec)+'g']()[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x149))[_0x50f445(0x10f)+'nal']()}),aiModelsSuccessSchema=z[_0x50f445(0x1a1)+'t']({'success':z['liter'+'al'](!![])[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x250)),'data':aiModelsPayloadSchema[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0xf6))}),aiModelsResponseSchema=z['union']([aiModelsSuccessSchema,aiErrorResponseSchema]),aiChatModelSchema=z[_0x50f445(0x1a1)+'t']({'id':z[_0x50f445(0xec)+'g']()['descr'+_0x50f445(0x27a)]('模型\x20ID'),'provider':z[_0x50f445(0xec)+'g']()[_0x50f445(0x14c)+_0x50f445(0x27a)]('供应商'),'displayName':z[_0x50f445(0xec)+'g']()['descr'+_0x50f445(0x27a)](_0x50f445(0x259)),'familyId':z['strin'+'g']()[_0x50f445(0x14c)+'ibe']('模型家族\x20'+'ID')[_0x50f445(0x10f)+_0x50f445(0x23b)](),'tags':z['array'](z[_0x50f445(0xec)+'g']())[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x1c0)),'capabilities':aiModelCapabilitiesSchema['descr'+_0x50f445(0x27a)](_0x50f445(0x1ef))['optio'+_0x50f445(0x23b)]()}),aiChatModelsPayloadSchema=z[_0x50f445(0x1a1)+'t']({'data':z[_0x50f445(0x1e8)](aiChatModelSchema)[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x255)),'updatedAt':z[_0x50f445(0xec)+'g']()[_0x50f445(0x14c)+_0x50f445(0x27a)]('更新时间')['optio'+_0x50f445(0x23b)]()}),aiChatModelsSuccessSchema=z[_0x50f445(0x1a1)+'t']({'success':z[_0x50f445(0x227)+'al'](!![])[_0x50f445(0x14c)+_0x50f445(0x27a)]('是否成功'),'data':aiChatModelsPayloadSchema[_0x50f445(0x14c)+'ibe'](_0x50f445(0xf6))}),aiChatModelsResponseSchema=z[_0x50f445(0x136)]([aiChatModelsSuccessSchema,aiErrorResponseSchema]),aiModelsUpdatedAtDataSchema=z['objec'+'t']({'chatUpdatedAt':z[_0x50f445(0xec)+'g']()[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x113)+_0x50f445(0x112)),'imageUpdatedAt':z[_0x50f445(0xec)+'g']()[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x1b9)+_0x50f445(0x112)),'videoUpdatedAt':z[_0x50f445(0xec)+'g']()[_0x50f445(0x14c)+'ibe'](_0x50f445(0x17f)+_0x50f445(0x112)),'latestUpdatedAt':z['strin'+'g']()[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x17c)+'的最新更新'+'时间')}),aiModelsUpdatedAtSuccessSchema=z[_0x50f445(0x1a1)+'t']({'success':z[_0x50f445(0x227)+'al'](!![])[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x250)),'data':aiModelsUpdatedAtDataSchema['descr'+_0x50f445(0x27a)](_0x50f445(0xf6))}),aiModelsUpdatedAtResponseSchema=z[_0x50f445(0x136)]([aiModelsUpdatedAtSuccessSchema,aiErrorResponseSchema]),aiModelsRequestSchema=aiVoidRequestSchema,aiTaskRequestSchema=aiVoidRequestSchema,aiTaskCancelRequestSchema=aiVoidRequestSchema,aiProviderTemplateModelSchema=z['objec'+'t']({'id':z[_0x50f445(0xec)+'g']()[_0x50f445(0x14c)+'ibe'](_0x50f445(0x161)),'providerId':z[_0x50f445(0xec)+'g']()[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x176)+'D'),'displayName':z[_0x50f445(0xec)+'g']()[_0x50f445(0x1e7)+'sh']()[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x259)),'description':z[_0x50f445(0xec)+'g']()[_0x50f445(0x1e7)+'sh']()[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x125)),'familyId':z[_0x50f445(0xec)+'g']()[_0x50f445(0x14c)+_0x50f445(0x27a)]('模型家族\x20'+'ID')['optio'+_0x50f445(0x23b)](),'tags':z[_0x50f445(0x1e8)](z['strin'+'g']())[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x1c0)),'capabilities':aiModelCapabilitiesSchema[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x1ef))[_0x50f445(0x10f)+'nal']()}),aiProviderTemplateSchema=z[_0x50f445(0x1a1)+'t']({'id':z[_0x50f445(0xec)+'g']()[_0x50f445(0x14c)+'ibe']('供应商\x20I'+'D'),'label':z[_0x50f445(0xec)+'g']()['descr'+_0x50f445(0x27a)]('供应商名称'),'adapter':z[_0x50f445(0xec)+'g']()[_0x50f445(0x14c)+_0x50f445(0x27a)]('AI\x20SD'+_0x50f445(0x1ca)+'标识'),'apiUrl':z[_0x50f445(0xec)+'g']()[_0x50f445(0x14c)+'ibe'](_0x50f445(0x14e)+'址')[_0x50f445(0x10f)+_0x50f445(0x23b)](),'authType':z[_0x50f445(0xec)+'g']()[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x26e))[_0x50f445(0x10f)+_0x50f445(0x23b)](),'websiteUrl':z[_0x50f445(0xec)+'g']()[_0x50f445(0x1e7)+'sh']()[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0x122)),'docUrl':z[_0x50f445(0xec)+'g']()[_0x50f445(0x1e7)+'sh']()[_0x50f445(0x14c)+'ibe'](_0x50f445(0x24d)),'models':z[_0x50f445(0x1e8)](aiProviderTemplateModelSchema)['descr'+_0x50f445(0x27a)](_0x50f445(0x255))}),aiProviderTemplatesPayloadSchema=z['objec'+'t']({'providers':z[_0x50f445(0x1e8)](aiProviderTemplateSchema)['descr'+_0x50f445(0x27a)](_0x50f445(0x298)),'updatedAt':z[_0x50f445(0xec)+'g']()[_0x50f445(0x14c)+_0x50f445(0x27a)]('更新时间')[_0x50f445(0x10f)+_0x50f445(0x23b)]()}),aiProviderTemplatesSuccessSchema=z[_0x50f445(0x1a1)+'t']({'success':z[_0x50f445(0x227)+'al'](!![])[_0x50f445(0x14c)+'ibe']('是否成功'),'data':aiProviderTemplatesPayloadSchema[_0x50f445(0x14c)+_0x50f445(0x27a)](_0x50f445(0xf6))}),aiProviderTemplatesResponseSchema=z[_0x50f445(0x136)]([aiProviderTemplatesSuccessSchema,aiErrorResponseSchema]),aiProviderTemplatesRequestSchema=z[_0x50f445(0x17e)](),_0x4bcddd={};_0x4bcddd['metho'+'d']=_0x50f445(0x1e5),_0x4bcddd[_0x50f445(0x1ce)]=_0x50f445(0x1b5)+_0x50f445(0x269)+'age',_0x4bcddd['reque'+_0x50f445(0x167)+'ema']=aiImageRequestSchema,_0x4bcddd[_0x50f445(0x249)+_0x50f445(0x17a)+_0x50f445(0x1ac)]=aiTaskCreatedResponseSchema;var _0x4afdf9={};_0x4afdf9[_0x50f445(0x26d)+'d']=_0x50f445(0x1e5),_0x4afdf9[_0x50f445(0x1ce)]=_0x50f445(0x1b5)+_0x50f445(0x274)+_0x50f445(0x120),_0x4afdf9[_0x50f445(0x19c)+_0x50f445(0x167)+_0x50f445(0x119)]=aiVideoRequestSchema,_0x4afdf9[_0x50f445(0x249)+_0x50f445(0x17a)+_0x50f445(0x1ac)]=aiTaskCreatedResponseSchema;var _0x5c2a27={};_0x5c2a27[_0x50f445(0x26d)+'d']='GET',_0x5c2a27[_0x50f445(0x1ce)]=_0x50f445(0x1b5)+_0x50f445(0x273)+_0x50f445(0x10b)+_0x50f445(0x1a5)+_0x50f445(0x243)+'ls',_0x5c2a27[_0x50f445(0x19c)+_0x50f445(0x167)+_0x50f445(0x119)]=aiModelsRequestSchema,_0x5c2a27['respo'+_0x50f445(0x17a)+_0x50f445(0x1ac)]=aiModelsResponseSchema;var _0x4348ca={};_0x4348ca[_0x50f445(0x26d)+'d']='GET',_0x4348ca['path']=_0x50f445(0x1b5)+_0x50f445(0x273)+_0x50f445(0x10b)+_0x50f445(0x23f)+_0x50f445(0x243)+'ls',_0x4348ca[_0x50f445(0x19c)+_0x50f445(0x167)+_0x50f445(0x119)]=aiModelsRequestSchema,_0x4348ca[_0x50f445(0x249)+_0x50f445(0x17a)+_0x50f445(0x1ac)]=aiModelsResponseSchema;var _0xe4abc5={};_0xe4abc5[_0x50f445(0x26d)+'d']=_0x50f445(0x191),_0xe4abc5[_0x50f445(0x1ce)]=_0x50f445(0x1b5)+_0x50f445(0x273)+_0x50f445(0x10b)+_0x50f445(0x16b)+'model'+'s',_0xe4abc5[_0x50f445(0x19c)+_0x50f445(0x167)+_0x50f445(0x119)]=aiModelsRequestSchema,_0xe4abc5['respo'+_0x50f445(0x17a)+'hema']=aiChatModelsResponseSchema;var _0x5db989={};_0x5db989['metho'+'d']='GET',_0x5db989[_0x50f445(0x1ce)]=_0x50f445(0x1b5)+'publi'+_0x50f445(0x10b)+_0x50f445(0x172)+_0x50f445(0x29b)+_0x50f445(0xe5)+'at',_0x5db989[_0x50f445(0x19c)+_0x50f445(0x167)+_0x50f445(0x119)]=aiModelsRequestSchema,_0x5db989['respo'+_0x50f445(0x17a)+'hema']=aiModelsUpdatedAtResponseSchema;var _0x3dfc7f={};_0x3dfc7f[_0x50f445(0x26d)+'d']='GET',_0x3dfc7f[_0x50f445(0x1ce)]=_0x50f445(0x1b5)+_0x50f445(0x273)+_0x50f445(0x10b)+_0x50f445(0x162)+_0x50f445(0xdd),_0x3dfc7f['reque'+_0x50f445(0x167)+_0x50f445(0x119)]=aiProviderTemplatesRequestSchema,_0x3dfc7f['respo'+_0x50f445(0x17a)+_0x50f445(0x1ac)]=aiProviderTemplatesResponseSchema;var aiEndpoints={'image':new Endpoint(_0x4bcddd),'video':new Endpoint(_0x4afdf9),'task':_0x325650=>new Endpoint({'method':'GET','path':_0x50f445(0x1b5)+_0x50f445(0x24a)+_0x50f445(0x154)+_0x325650,'requestSchema':aiTaskRequestSchema,'responseSchema':aiTaskResponseSchema}),'cancelTask':_0x27dbdf=>new Endpoint({'method':_0x50f445(0x1e5),'path':'/api/'+_0x50f445(0x24a)+_0x50f445(0x154)+_0x27dbdf+('/canc'+'el'),'requestSchema':aiTaskCancelRequestSchema,'responseSchema':aiTaskCancelResponseSchema}),'imageModels':new Endpoint(_0x5c2a27),'videoModels':new Endpoint(_0x4348ca),'chatModels':new Endpoint(_0xe4abc5),'modelsUpdatedAt':new Endpoint(_0x5db989),'providerTemplates':new Endpoint(_0x3dfc7f)},auxiliary_exports={},_0x40d7a7={};_0x40d7a7[_0x50f445(0x251)+_0x50f445(0x26f)+_0x50f445(0x19a)]=()=>AuxiliaryClient,_0x40d7a7[_0x50f445(0x272)+_0x50f445(0x20a)+_0x50f445(0x1b2)+'nts']=()=>auxiliaryEndpoints,_0x40d7a7[_0x50f445(0x272)+_0x50f445(0x242)+_0x50f445(0x211)+_0x50f445(0x15e)+_0x50f445(0x126)+'ma']=()=>auxiliaryInferRequestSchema,_0x40d7a7['auxil'+'iaryI'+_0x50f445(0x211)+_0x50f445(0x238)+_0x50f445(0x2a3)+_0x50f445(0x119)]=()=>auxiliaryInferResponseSchema,_0x40d7a7[_0x50f445(0x272)+_0x50f445(0x1a0)+_0x50f445(0x240)+_0x50f445(0x238)+_0x50f445(0x2a3)+_0x50f445(0x119)]=()=>auxiliaryQuotaResponseSchema,__export(auxiliary_exports,_0x40d7a7);var AuxiliaryClient=class{[_0x50f445(0x1e2)];constructor(_0x425677){var _0xda9ee2=_0x50f445;this[_0xda9ee2(0x1e2)]=_0x425677;}async[_0x50f445(0x1cd)](_0x4b07c6){var _0x44456f=_0x50f445;const _0x1dc756=await this[_0x44456f(0x1e2)]['build'+_0x44456f(0x1c6)+_0x44456f(0x1fc)]();return this['sdk'][_0x44456f(0x19c)+'st'](this[_0x44456f(0x1e2)]['contr'+_0x44456f(0x299)][_0x44456f(0x272)+'iary'][_0x44456f(0x1cd)],{'baseUrl':this[_0x44456f(0x1e2)][_0x44456f(0x209)+_0x44456f(0x201)](),'headers':_0x1dc756,'body':_0x4b07c6});}async[_0x50f445(0x174)+_0x50f445(0x150)](){var _0x2211fd=_0x50f445;const _0x33d7df=await this['sdk'][_0x2211fd(0x156)+_0x2211fd(0x1c6)+'eader']();return this[_0x2211fd(0x1e2)][_0x2211fd(0x19c)+'st'](this[_0x2211fd(0x1e2)][_0x2211fd(0x29f)+_0x2211fd(0x299)]['auxil'+_0x2211fd(0x1fb)][_0x2211fd(0x174)+_0x2211fd(0x150)],{'baseUrl':this[_0x2211fd(0x1e2)][_0x2211fd(0x209)+_0x2211fd(0x201)](),'headers':_0x33d7df,'body':{}});}},auxiliaryInferRequestSchema=z[_0x50f445(0x1a1)+'t']({'capabilityKey':z['strin'+'g'](),'systemPrompt':z[_0x50f445(0xec)+'g'](),'context':z[_0x50f445(0xec)+'g']()[_0x50f445(0x12e)](0x1*-0x6737+0x43f*-0x54+0x28f33),'outputMode':z[_0x50f445(0x19d)](['struc'+_0x50f445(0x12b),_0x50f445(0x1f0)]),'schema':z[_0x50f445(0x103)+'d'](z[_0x50f445(0xec)+'g'](),z[_0x50f445(0x275)+'wn']())[_0x50f445(0x10f)+_0x50f445(0x23b)]()}),quotaSchema=z['objec'+'t']({'used':z['numbe'+'r'](),'limit':z[_0x50f445(0x196)+'r'](),'remaining':z['numbe'+'r'](),'resetsAt':z[_0x50f445(0xec)+'g']()}),usageSchema=z[_0x50f445(0x1a1)+'t']({'inputTokens':z[_0x50f445(0x196)+'r'](),'outputTokens':z[_0x50f445(0x196)+'r']()}),auxiliaryInferResponseSchema=z[_0x50f445(0x136)]([z[_0x50f445(0x1a1)+'t']({'ok':z[_0x50f445(0x227)+'al'](!![]),'result':z[_0x50f445(0x275)+'wn'](),'usage':usageSchema,'quota':quotaSchema}),z['objec'+'t']({'ok':z[_0x50f445(0x227)+'al'](![]),'message':z[_0x50f445(0xec)+'g'](),'code':z[_0x50f445(0xec)+'g']()[_0x50f445(0x10f)+'nal']()})]),_0x5e7197={};_0x5e7197[_0x50f445(0x133)]=quotaSchema;var auxiliaryQuotaResponseSchema=z[_0x50f445(0x1a1)+'t'](_0x5e7197),_0x1647ae={};_0x1647ae[_0x50f445(0x26d)+'d']='POST',_0x1647ae['path']=_0x50f445(0x1b5)+_0x50f445(0x272)+_0x50f445(0xe9)+'infer',_0x1647ae['reque'+_0x50f445(0x167)+'ema']=auxiliaryInferRequestSchema,_0x1647ae[_0x50f445(0x249)+'nseSc'+_0x50f445(0x1ac)]=auxiliaryInferResponseSchema;var auxiliaryEndpoints={'infer':new Endpoint(_0x1647ae),'getQuota':new Endpoint({'method':_0x50f445(0x1e5),'path':_0x50f445(0x1b5)+'auxil'+_0x50f445(0xe9)+_0x50f445(0x133),'requestSchema':z['objec'+'t']({}),'responseSchema':auxiliaryQuotaResponseSchema})},auth_exports={},_0x2ac25f={};_0x2ac25f[_0x50f445(0x253)+_0x50f445(0x19a)]=()=>AuthClient,_0x2ac25f[_0x50f445(0x21e)+_0x50f445(0x1b2)+_0x50f445(0xe7)]=()=>authEndpoints,_0x2ac25f['authE'+_0x50f445(0x117)+_0x50f445(0xed)+_0x50f445(0x1cf)+_0x50f445(0x101)]=()=>authExchangeRequestSchema,_0x2ac25f['authE'+_0x50f445(0x117)+'geRes'+_0x50f445(0x20e)+_0x50f445(0x137)+'a']=()=>authExchangeResponseSchema,_0x2ac25f[_0x50f445(0x261)+_0x50f445(0x200)+'Reque'+_0x50f445(0x167)+_0x50f445(0x119)]=()=>authLogoutRequestSchema,_0x2ac25f['authL'+_0x50f445(0x200)+_0x50f445(0x21c)+_0x50f445(0x17a)+'hema']=()=>authLogoutResponseSchema,_0x2ac25f[_0x50f445(0xe4)+_0x50f445(0x212)+_0x50f445(0x190)+'rSche'+'ma']=()=>authRefreshErrorSchema,_0x2ac25f[_0x50f445(0xe4)+_0x50f445(0x212)+'hRequ'+_0x50f445(0x15a)+_0x50f445(0x1ac)]=()=>authRefreshRequestSchema,_0x2ac25f[_0x50f445(0xe4)+_0x50f445(0x212)+_0x50f445(0x102)+_0x50f445(0x221)+_0x50f445(0x101)]=()=>authRefreshResponseSchema,_0x2ac25f[_0x50f445(0xe4)+_0x50f445(0x212)+'hSucc'+'essSc'+_0x50f445(0x1ac)]=()=>authRefreshSuccessSchema,_0x2ac25f[_0x50f445(0xe4)+_0x50f445(0x212)+_0x50f445(0x1c1)+_0x50f445(0x137)+'a']=()=>authRefreshUserSchema,__export(auth_exports,_0x2ac25f);var AuthClient=class{[_0x50f445(0x1e2)];constructor(_0x4120e2){this['sdk']=_0x4120e2;}async[_0x50f445(0x1db)+_0x50f445(0xfc)](_0x3ce2f1){var _0x2d3210=_0x50f445,_0x3c98fc={};return _0x3c98fc[_0x2d3210(0x177)+_0x2d3210(0x105)]=_0x3ce2f1,this['sdk'][_0x2d3210(0x19c)+'st'](this[_0x2d3210(0x1e2)]['contr'+_0x2d3210(0x299)][_0x2d3210(0x226)][_0x2d3210(0x1db)+_0x2d3210(0xfc)],{'baseUrl':this[_0x2d3210(0x1e2)][_0x2d3210(0x209)+'seUrl'](),'body':_0x3c98fc});}async['refre'+'sh'](_0x1bd1d1){var _0x87ceac=_0x50f445,_0x46f95b={};return _0x46f95b['refre'+_0x87ceac(0x1eb)+'en']=_0x1bd1d1,this[_0x87ceac(0x1e2)][_0x87ceac(0x19c)+'st'](this[_0x87ceac(0x1e2)]['contr'+_0x87ceac(0x299)][_0x87ceac(0x226)][_0x87ceac(0x108)+'sh'],{'baseUrl':this[_0x87ceac(0x1e2)][_0x87ceac(0x209)+_0x87ceac(0x201)](),'body':_0x46f95b});}async[_0x50f445(0x239)+'t'](_0x1d5a73){var _0x5cbe80=_0x50f445,_0x271bd4={};return _0x271bd4[_0x5cbe80(0x108)+_0x5cbe80(0x1eb)+'en']=_0x1d5a73,this[_0x5cbe80(0x1e2)][_0x5cbe80(0x19c)+'st'](this[_0x5cbe80(0x1e2)][_0x5cbe80(0x29f)+'act']['auth'][_0x5cbe80(0x239)+'t'],{'baseUrl':this[_0x5cbe80(0x1e2)][_0x5cbe80(0x209)+_0x5cbe80(0x201)](),'body':_0x271bd4});}},authRefreshRequestSchema=z[_0x50f445(0x1a1)+'t']({'refreshToken':z[_0x50f445(0xec)+'g']()[_0x50f445(0x244)](-0x996+0x1b7b+-0x4*0x479)}),authExchangeRequestSchema=z[_0x50f445(0x1a1)+'t']({'loginCode':z[_0x50f445(0xec)+'g']()['min'](-0x9*0x32b+-0x23*-0x56+0x10c2)}),authRefreshUserSchema=z[_0x50f445(0x1a1)+'t']({'name':z[_0x50f445(0xec)+'g']()[_0x50f445(0x10f)+_0x50f445(0x23b)](),'email':z[_0x50f445(0xec)+'g']()[_0x50f445(0x10f)+_0x50f445(0x23b)](),'avatarUrl':z['strin'+'g']()[_0x50f445(0x10f)+_0x50f445(0x23b)]()}),authRefreshSuccessSchema=z[_0x50f445(0x1a1)+'t']({'accessToken':z['strin'+'g'](),'refreshToken':z[_0x50f445(0xec)+'g'](),'user':authRefreshUserSchema}),authRefreshErrorSchema=z[_0x50f445(0x1a1)+'t']({'message':z[_0x50f445(0xec)+'g']()}),authExchangeResponseSchema=authRefreshSuccessSchema,authLogoutRequestSchema=z['objec'+'t']({'refreshToken':z[_0x50f445(0xec)+'g']()['min'](-0x5*0x12b+-0x13d0+0x19a8)}),authLogoutResponseSchema=z[_0x50f445(0x1a1)+'t']({'success':z[_0x50f445(0x18b)+'an']()}),authRefreshResponseSchema=z[_0x50f445(0x136)]([authRefreshSuccessSchema,authRefreshErrorSchema]),_0x4cbfda={};_0x4cbfda[_0x50f445(0x26d)+'d']=_0x50f445(0x1e5),_0x4cbfda[_0x50f445(0x1ce)]=_0x50f445(0x1b5)+_0x50f445(0x138)+_0x50f445(0x1db)+_0x50f445(0xfc),_0x4cbfda[_0x50f445(0x19c)+_0x50f445(0x167)+_0x50f445(0x119)]=authExchangeRequestSchema,_0x4cbfda[_0x50f445(0x249)+_0x50f445(0x17a)+_0x50f445(0x1ac)]=authExchangeResponseSchema;var _0x23deea={};_0x23deea[_0x50f445(0x26d)+'d']=_0x50f445(0x1e5),_0x23deea[_0x50f445(0x1ce)]='/api/'+_0x50f445(0x138)+'refre'+'sh',_0x23deea[_0x50f445(0x19c)+_0x50f445(0x167)+_0x50f445(0x119)]=authRefreshRequestSchema,_0x23deea[_0x50f445(0x249)+_0x50f445(0x17a)+'hema']=authRefreshResponseSchema;var _0x3db798={};_0x3db798[_0x50f445(0x26d)+'d']=_0x50f445(0x1e5),_0x3db798[_0x50f445(0x1ce)]=_0x50f445(0x1b5)+_0x50f445(0x138)+_0x50f445(0x239)+'t',_0x3db798['reque'+'stSch'+_0x50f445(0x119)]=authLogoutRequestSchema,_0x3db798[_0x50f445(0x249)+_0x50f445(0x17a)+'hema']=authLogoutResponseSchema;var authEndpoints={'exchange':new Endpoint(_0x4cbfda),'refresh':new Endpoint(_0x23deea),'logout':new Endpoint(_0x3db798)},feedback_exports={},_0x336f47={};_0x336f47[_0x50f445(0x189)+_0x50f445(0x277)+'ient']=()=>FeedbackClient,_0x336f47['feedb'+_0x50f445(0xd7)+_0x50f445(0x166)+_0x50f445(0x165)+'dSche'+'ma']=()=>feedbackDetailPayloadSchema,_0x336f47[_0x50f445(0x2a4)+'ackDe'+_0x50f445(0x2a6)+_0x50f445(0x15e)+_0x50f445(0x126)+'ma']=()=>feedbackDetailRequestSchema,_0x336f47[_0x50f445(0x2a4)+_0x50f445(0xd7)+_0x50f445(0x2a6)+_0x50f445(0x238)+_0x50f445(0x2a3)+_0x50f445(0x119)]=()=>feedbackDetailResponseSchema,_0x336f47[_0x50f445(0x2a4)+_0x50f445(0x28a)+_0x50f445(0xcf)+'ts']=()=>feedbackEndpoints,_0x336f47[_0x50f445(0x2a4)+_0x50f445(0x260)+_0x50f445(0x171)+_0x50f445(0x119)]=()=>feedbackItemSchema,_0x336f47['feedb'+_0x50f445(0x268)+_0x50f445(0x267)+_0x50f445(0x169)+_0x50f445(0x101)]=()=>feedbackListPayloadSchema,_0x336f47[_0x50f445(0x2a4)+'ackLi'+_0x50f445(0x216)+_0x50f445(0x1cf)+_0x50f445(0x101)]=()=>feedbackListRequestSchema,_0x336f47['feedb'+_0x50f445(0x268)+_0x50f445(0x131)+_0x50f445(0x20e)+_0x50f445(0x137)+'a']=()=>feedbackListResponseSchema,_0x336f47[_0x50f445(0x2a4)+_0x50f445(0xee)+'asSta'+_0x50f445(0x27f)+_0x50f445(0x1ac)]=()=>feedbackSaasStatusSchema,_0x336f47[_0x50f445(0x2a4)+_0x50f445(0x194)+_0x50f445(0x143)+_0x50f445(0x101)]=()=>feedbackSourceSchema,_0x336f47[_0x50f445(0x2a4)+_0x50f445(0x1da)+_0x50f445(0xfe)+_0x50f445(0x1ec)+'chema']=()=>feedbackSubmitErrorSchema,_0x336f47[_0x50f445(0x2a4)+_0x50f445(0x1da)+_0x50f445(0x234)+_0x50f445(0x15e)+_0x50f445(0x126)+'ma']=()=>feedbackSubmitRequestSchema,_0x336f47['feedb'+_0x50f445(0x1da)+_0x50f445(0x234)+_0x50f445(0x238)+_0x50f445(0x2a3)+_0x50f445(0x119)]=()=>feedbackSubmitResponseSchema,_0x336f47[_0x50f445(0x2a4)+_0x50f445(0x258)+_0x50f445(0x264)+_0x50f445(0x119)]=()=>feedbackTypeSchema,__export(feedback_exports,_0x336f47);var FeedbackClient=class{['sdk'];constructor(_0x5043f8){var _0x39e16f=_0x50f445;this[_0x39e16f(0x1e2)]=_0x5043f8;}async['submi'+'t'](_0x754a2){var _0x30ac10=_0x50f445;const _0x104a16=await this['sdk'][_0x30ac10(0x156)+_0x30ac10(0x1c6)+_0x30ac10(0x1fc)]();return this[_0x30ac10(0x1e2)][_0x30ac10(0x19c)+'st'](this['sdk'][_0x30ac10(0x29f)+_0x30ac10(0x299)][_0x30ac10(0x2a4)+_0x30ac10(0x1dc)][_0x30ac10(0x20c)+'t'],{'baseUrl':this[_0x30ac10(0x1e2)][_0x30ac10(0x209)+'seUrl'](),'headers':_0x104a16,'body':_0x754a2});}async[_0x50f445(0x2a1)](_0x5cac3e){var _0x59a2b2=_0x50f445;const _0x1243e0=await this[_0x59a2b2(0x1e2)][_0x59a2b2(0x156)+_0x59a2b2(0x1c6)+_0x59a2b2(0x1fc)]();return this[_0x59a2b2(0x1e2)][_0x59a2b2(0x19c)+'st'](this[_0x59a2b2(0x1e2)]['contr'+_0x59a2b2(0x299)][_0x59a2b2(0x2a4)+_0x59a2b2(0x1dc)]['list'],{'baseUrl':this[_0x59a2b2(0x1e2)][_0x59a2b2(0x209)+_0x59a2b2(0x201)](),'headers':_0x1243e0,'body':_0x5cac3e??{}});}async[_0x50f445(0xf9)+'l'](_0x3fb8f6){var _0xd1bb0b=_0x50f445;const _0x3f4976=await this[_0xd1bb0b(0x1e2)][_0xd1bb0b(0x156)+_0xd1bb0b(0x1c6)+_0xd1bb0b(0x1fc)]();return this[_0xd1bb0b(0x1e2)]['reque'+'st'](this[_0xd1bb0b(0x1e2)]['contr'+_0xd1bb0b(0x299)]['feedb'+_0xd1bb0b(0x1dc)][_0xd1bb0b(0xf9)+'l'](_0x3fb8f6),{'baseUrl':this[_0xd1bb0b(0x1e2)][_0xd1bb0b(0x209)+'seUrl'](),'headers':_0x3f4976,'body':void(-0x5*0x733+0x1a5a*0x1+0x337*0x3)});}},feedbackSourceSchema=z['enum']([_0x50f445(0x197),_0x50f445(0x203)+_0x50f445(0x14a)+_0x50f445(0x181)]),feedbackTypeSchema=z[_0x50f445(0x19d)](['ui',_0x50f445(0x27e)+_0x50f445(0x1b4)+'e',_0x50f445(0x257),_0x50f445(0x210)+'re',_0x50f445(0x19b)]),feedbackSaasStatusSchema=z[_0x50f445(0x19d)]([_0x50f445(0x20d)+'d',_0x50f445(0xd6),_0x50f445(0xf2)+_0x50f445(0x1a6),'ignor'+'ed']),feedbackSubmitRequestSchema=z[_0x50f445(0x1a1)+'t']({'source':feedbackSourceSchema[_0x50f445(0x10f)+_0x50f445(0x23b)](),'type':feedbackTypeSchema,'content':z[_0x50f445(0xec)+'g']()['trim']()[_0x50f445(0x244)](-0xb4f+-0x29*-0x4f+0x7*-0x31),'context':z[_0x50f445(0x103)+'d'](z[_0x50f445(0xec)+'g'](),z[_0x50f445(0x275)+'wn']()),'email':z[_0x50f445(0xec)+'g']()[_0x50f445(0x144)]()['email']()[_0x50f445(0x10f)+_0x50f445(0x23b)]()}),feedbackSubmitErrorSchema=z['objec'+'t']({'message':z[_0x50f445(0xec)+'g']()}),feedbackSubmitResponseSchema=z['union']([z[_0x50f445(0x17e)](),feedbackSubmitErrorSchema]),feedbackListRequestSchema=z['objec'+'t']({'page':z[_0x50f445(0x196)+'r']()[_0x50f445(0x198)]()[_0x50f445(0x244)](0x5*0x329+0x7b8+-0x1784)[_0x50f445(0x10f)+_0x50f445(0x23b)](),'pageSize':z[_0x50f445(0x196)+'r']()['int']()[_0x50f445(0x244)](0x10e+-0xb15*-0x3+-0x224c)[_0x50f445(0x12e)](0x5*0x506+0x24f9+-0x3db3)[_0x50f445(0x10f)+_0x50f445(0x23b)](),'type':feedbackTypeSchema[_0x50f445(0x10f)+_0x50f445(0x23b)](),'source':feedbackSourceSchema[_0x50f445(0x10f)+_0x50f445(0x23b)](),'saasStatus':feedbackSaasStatusSchema[_0x50f445(0x10f)+_0x50f445(0x23b)](),'keyword':z['strin'+'g']()[_0x50f445(0x144)]()['min'](-0xf5*-0x10+0x5eb+-0x153a)[_0x50f445(0x10f)+'nal'](),'startAt':z['strin'+'g']()['datet'+_0x50f445(0x127)]()[_0x50f445(0x10f)+_0x50f445(0x23b)](),'endAt':z[_0x50f445(0xec)+'g']()[_0x50f445(0x10d)+'ime']()['optio'+'nal']()}),feedbackItemSchema=z[_0x50f445(0x1a1)+'t']({'id':z[_0x50f445(0xec)+'g'](),'source':feedbackSourceSchema,'type':feedbackTypeSchema,'saasStatus':feedbackSaasStatusSchema,'response':z['strin'+'g']()[_0x50f445(0x10f)+_0x50f445(0x23b)](),'userId':z[_0x50f445(0xec)+'g']()[_0x50f445(0x10f)+_0x50f445(0x23b)](),'email':z[_0x50f445(0xec)+'g']()[_0x50f445(0x10f)+'nal'](),'content':z[_0x50f445(0xec)+'g'](),'context':z[_0x50f445(0x103)+'d'](z[_0x50f445(0xec)+'g'](),z[_0x50f445(0x275)+'wn']()),'createdAt':z[_0x50f445(0xec)+'g']()}),feedbackListPayloadSchema=z[_0x50f445(0x1a1)+'t']({'items':z[_0x50f445(0x1e8)](feedbackItemSchema),'page':z[_0x50f445(0x196)+'r']()['int'](),'pageSize':z[_0x50f445(0x196)+'r']()[_0x50f445(0x198)](),'total':z[_0x50f445(0x196)+'r']()[_0x50f445(0x198)]()}),feedbackListResponseSchema=z[_0x50f445(0x136)]([feedbackListPayloadSchema,feedbackSubmitErrorSchema]),feedbackDetailRequestSchema=z['void'](),_0x395eac={};_0x395eac[_0x50f445(0x2a4)+_0x50f445(0x1dc)]=feedbackItemSchema;var feedbackDetailPayloadSchema=z['objec'+'t'](_0x395eac),feedbackDetailResponseSchema=z[_0x50f445(0x136)]([feedbackDetailPayloadSchema,feedbackSubmitErrorSchema]),_0x142671={};_0x142671[_0x50f445(0x26d)+'d']=_0x50f445(0x1e5),_0x142671[_0x50f445(0x1ce)]=_0x50f445(0x1b5)+_0x50f445(0x273)+_0x50f445(0x26b)+_0x50f445(0xef),_0x142671[_0x50f445(0x19c)+_0x50f445(0x167)+_0x50f445(0x119)]=feedbackSubmitRequestSchema,_0x142671[_0x50f445(0x249)+_0x50f445(0x17a)+'hema']=feedbackSubmitResponseSchema;var _0x436b7d={};_0x436b7d[_0x50f445(0x26d)+'d']=_0x50f445(0x1e5),_0x436b7d[_0x50f445(0x1ce)]=_0x50f445(0x1b5)+_0x50f445(0x2a4)+_0x50f445(0x1b6)+_0x50f445(0x146),_0x436b7d[_0x50f445(0x19c)+_0x50f445(0x167)+_0x50f445(0x119)]=feedbackListRequestSchema,_0x436b7d['respo'+_0x50f445(0x17a)+_0x50f445(0x1ac)]=feedbackListResponseSchema;var feedbackEndpoints={'submit':new Endpoint(_0x142671),'list':new Endpoint(_0x436b7d),'detail':_0x35a9fa=>new Endpoint({'method':'GET','path':_0x50f445(0x1b5)+_0x50f445(0x2a4)+'ack/'+_0x35a9fa,'requestSchema':feedbackDetailRequestSchema,'responseSchema':feedbackDetailResponseSchema})},user_exports={},_0x1c6a7f={};_0x1c6a7f[_0x50f445(0x1bc)+_0x50f445(0x19a)]=()=>UserClient,_0x1c6a7f[_0x50f445(0x129)+_0x50f445(0x1b2)+_0x50f445(0xe7)]=()=>userEndpoints,_0x1c6a7f[_0x50f445(0x1d7)+_0x50f445(0xe3)+_0x50f445(0xfb)+_0x50f445(0x232)+'chema']=()=>userMembershipLevelSchema,_0x1c6a7f[_0x50f445(0x109)+'elfRe'+_0x50f445(0xe2)+_0x50f445(0x137)+'a']=()=>userSelfRequestSchema,_0x1c6a7f[_0x50f445(0x109)+_0x50f445(0x1ea)+_0x50f445(0x280)+_0x50f445(0x28b)+'ma']=()=>userSelfResponseSchema,_0x1c6a7f[_0x50f445(0x109)+_0x50f445(0x285)+_0x50f445(0x1ac)]=()=>userSelfSchema,__export(user_exports,_0x1c6a7f);var UserClient=class{['sdk'];constructor(_0x1fc1d8){this['sdk']=_0x1fc1d8;}async['self'](){var _0x22f70a=_0x50f445;const _0x2c7140=await this[_0x22f70a(0x1e2)][_0x22f70a(0x156)+'AuthH'+_0x22f70a(0x1fc)]();return this['sdk'][_0x22f70a(0x19c)+'st'](this[_0x22f70a(0x1e2)][_0x22f70a(0x29f)+_0x22f70a(0x299)][_0x22f70a(0x158)][_0x22f70a(0x1fd)],{'baseUrl':this[_0x22f70a(0x1e2)][_0x22f70a(0x209)+_0x22f70a(0x201)](),'headers':_0x2c7140,'body':void(-0xa5a*0x2+0x17d7+-0x49*0xb)});}},userMembershipLevelSchema=z[_0x50f445(0x19d)]([_0x50f445(0x2a5),_0x50f445(0x132),'svip',_0x50f445(0x134)+_0x50f445(0x287)]),userSelfSchema=z[_0x50f445(0x1a1)+'t']({'id':z[_0x50f445(0xec)+'g'](),'email':z[_0x50f445(0xec)+'g']()[_0x50f445(0x10f)+'nal'](),'name':z[_0x50f445(0xec)+'g']()[_0x50f445(0x10f)+_0x50f445(0x23b)](),'avatarUrl':z[_0x50f445(0xec)+'g']()[_0x50f445(0x10f)+_0x50f445(0x23b)](),'provider':z[_0x50f445(0xec)+'g'](),'membershipLevel':userMembershipLevelSchema,'creditsBalance':z[_0x50f445(0x196)+'r'](),'createdAt':z[_0x50f445(0xec)+'g'](),'updatedAt':z[_0x50f445(0xec)+'g']()}),userSelfRequestSchema=z[_0x50f445(0x17e)](),_0x187bcc={};function _0x4deb(_0x40d7a7,_0x231716){_0x40d7a7=_0x40d7a7-(-0x1251+-0x1b8f+0x2eaf);var _0x4275f9=_0x9d1c();var _0x3207c7=_0x4275f9[_0x40d7a7];if(_0x4deb['suziqw']===undefined){var _0x42af20=function(_0x5e7197){var _0x1647ae='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var _0x2ac25f='',_0x2bc2d4='';for(var _0x484e5a=0x2225+0x1295*0x2+0x3*-0x17c5,_0x7ea923,_0x23fcef,_0x513a3e=-0x1835*0x1+-0xb69*-0x1+0xccc;_0x23fcef=_0x5e7197['charAt'](_0x513a3e++);~_0x23fcef&&(_0x7ea923=_0x484e5a%(-0x1d*-0x31+0x2bb+0x17*-0x5c)?_0x7ea923*(0x1ca8+-0xde2+-0xe86)+_0x23fcef:_0x23fcef,_0x484e5a++%(-0xe48+0x1*0x2293+-0x1*0x1447))?_0x2ac25f+=String['fromCharCode'](0x1f85+0x1e58+-0x3cde&_0x7ea923>>(-(0x5ed+-0x80a+0x21f)*_0x484e5a&-0x54*0x6+-0xe7d+0x107b)):-0x251b+-0x7*0x4e1+0x517*0xe){_0x23fcef=_0x1647ae['indexOf'](_0x23fcef);}for(var _0x164c88=-0x12e*0x13+0x25e9+-0xf7f,_0x1048c7=_0x2ac25f['length'];_0x164c88<_0x1048c7;_0x164c88++){_0x2bc2d4+='%'+('00'+_0x2ac25f['charCodeAt'](_0x164c88)['toString'](0x1*0xe7e+-0xbf5*0x1+-0x279))['slice'](-(0x8ac+-0x158*0x9+0x36e));}return decodeURIComponent(_0x2bc2d4);};_0x4deb['jNlesU']=_0x42af20,_0x4deb['yfDGzz']={},_0x4deb['suziqw']=!![];}var _0x46a99e=_0x4275f9[0x1*0x1709+0x165f+0x4*-0xb5a],_0x486465=_0x40d7a7+_0x46a99e,_0x27e356=_0x4deb['yfDGzz'][_0x486465];return!_0x27e356?(_0x3207c7=_0x4deb['jNlesU'](_0x3207c7),_0x4deb['yfDGzz'][_0x486465]=_0x3207c7):_0x3207c7=_0x27e356,_0x3207c7;}_0x187bcc[_0x50f445(0x158)]=userSelfSchema;var userSelfResponseSchema=z[_0x50f445(0x1a1)+'t'](_0x187bcc),_0x37db33={};_0x37db33[_0x50f445(0x26d)+'d']=_0x50f445(0x191),_0x37db33['path']=_0x50f445(0x1b5)+_0x50f445(0x123)+_0x50f445(0x1fd),_0x37db33[_0x50f445(0x19c)+_0x50f445(0x167)+_0x50f445(0x119)]=userSelfRequestSchema,_0x37db33[_0x50f445(0x249)+_0x50f445(0x17a)+_0x50f445(0x1ac)]=userSelfResponseSchema;var userEndpoints={'self':new Endpoint(_0x37db33)},SaaSContract=class{[_0x50f445(0x226)]=authEndpoints;['ai']=aiEndpoints;['auxil'+'iary']=auxiliaryEndpoints;[_0x50f445(0x2a4)+_0x50f445(0x1dc)]=feedbackEndpoints;[_0x50f445(0x158)]=userEndpoints;},contract=new SaaSContract();function setHeader(_0xcd29e7,_0x5c494d,_0x4e39cf){var _0x4834f6=_0x50f445;_0xcd29e7[_0x5c494d[_0x4834f6(0x283)+'erCas'+'e']()]=_0x4e39cf;}function normalizeHeaders(_0x445cc2){var _0x3dbd9d=_0x50f445;const _0x2b1e42={};if(!_0x445cc2)return _0x2b1e42;if(Array['isArr'+'ay'](_0x445cc2)){for(const [_0x38a6f8,_0x3f90ae]of _0x445cc2){setHeader(_0x2b1e42,_0x38a6f8,_0x3f90ae);}return _0x2b1e42;}if(typeof _0x445cc2[_0x3dbd9d(0x1f7)+'ch']===_0x3dbd9d(0x28e)+_0x3dbd9d(0x20f))return _0x445cc2[_0x3dbd9d(0x1f7)+'ch']((_0x1816e0,_0x4afc83)=>{setHeader(_0x2b1e42,_0x4afc83,_0x1816e0);}),_0x2b1e42;for(const [_0x237e65,_0x10b0d0]of Object[_0x3dbd9d(0x14b)+'es'](_0x445cc2)){typeof _0x10b0d0===_0x3dbd9d(0xec)+'g'&&setHeader(_0x2b1e42,_0x237e65,_0x10b0d0);}return _0x2b1e42;}function mergeHeaders(..._0x79dfc2){const _0x34acc4={};for(const _0x28f9f0 of _0x79dfc2){const _0x387115=normalizeHeaders(_0x28f9f0);for(const [_0x12e332,_0x1f5b76]of Object['entri'+'es'](_0x387115)){_0x34acc4[_0x12e332]=_0x1f5b76;}}return _0x34acc4;}function _0x9d1c(){var _0x46715e=['54Mh5PwW6yEp','C3nPBMC','CxvLC3q','zw1Izxi','yxv0Afi','yxrLzc0','AxnZDwu','BNrZ','mJaYmdHjEKTvsNi','AwfYEs8','mJy3mZGZoxLpBhb1qq','5y+c6icd6kEg6Akr','C3rYAw4','z2vszxe','ywnRu2e','zgjHy2S','qwLdBgK','rxjYB3i','CMvZB2W','zw50','5zU+54Mh57Yw6l6r','5PYa5Bcp5yc8','6l+u5zUE5PwW5O2U','Av9Nzw4','AwXLza','zgv0ywK','DxrZu2m','C2HPCeW','BMDL','C3vWCg8','yM1PDeu','DgLLC1m','5zU+54Mh55cg6kEJ','y2HLBwe','AfjLC3a','CMvJB3i','yvnJAgu','q29Kzq','ywjPBgK','De1Vzgu','CMvMCMu','DxnLCLm','revmx1q','yY9HAs8','C2fMzva','zgf0zxq','zwXZuge','B3b0Aw8','5P6e5yYw6l6t5yE6','6l6t5ywL5zU+54Mh5yIx','5zco5PU05PAW5PE26zE0','6igk5AsP5QIH5z6l5PYa','zwXZvxa','zxjHDgK','ywLnzwq','EgnOyw4','5lU75yQHieLe','zw1H','zxf1Axi','odGZntCXn2TfsgXYCa','A1n0yxq','Dg9tDhi','C2u2nca','6ygU572P5zU+','zgLV','mta1nujAqLfutq','5A6y572r5zYW5z2a','DxnLCI8','5zU+54Mh6l6t5ywL','5QIH5z6l5O+p6l+W','DfnJAgu','Aw1L','zwXZu3u','DxnLCKu','5PIV5zcM5PsV5OYb57Ut','DhvYzwq','A1n1y2m','5Q2L6l+B5yc8','Bwf4','yxjK','ANnVBG','C3rszxm','DMLW','CxvVDge','Aw5MAw4','vgvTCgW','Dw5PB24','u2nOzw0','yxv0Ac8','BMLUzW','zwXeyxq','y29UDgu','C3rHDhu','zxjYB3i','5PIV5zcM5PsV5OYb5y+c','z2vjBNa','CxvLDwu','Cgf5Bg8','mtbYEhLqvwG','DxjJzvm','DhjPBq','tMv0D28','Axn0','mteZmJm2D2fUvhHA','CMf0Aw8','5PU05PAW5PE26zE0','B2fMlxm','zw50CMK','zgvZy3i','A0nHBMm','qvbjiowCSa','qMvHCMu','B3rH','BI9QC28','zgvYvgu','6AkD5Asw5y+c5PwW','C2SV','Dgfty2G','yNvPBgq','x2DLBMu','DxnLCG','DMLKzw8','zxn0u2m','x2LUChu','C1rLEhq','BNnLigK','zxf1zxm','5AQs5l2tifvs','5RAi6icx56EV5yIg','5QIH5z6lieLe','ChjVDMK','BNb1Dfm','6zsz6k+V5l+H5OgV','yxLSB2e','DgfPBfa','C3rty2G','BfrHC2S','Bg9Hzfm','BfnJAgu','y2HHDc8','zcbku08','CIb1CMW','6AAw5BIN5zU+54Mh','A0nYzwe','BhntDwm','zw1ty2G','Bw9KzwW','B2rLBhm','z2v0uxu','5PYa5AsN6l6t5ywL5zU+','5l6B5BQu5zwgieK','Bg9NAw4','5AsA5zU+6l6t5ywL','yxj0rw4','BNnLu2m','6l6t5ywL6io95yQB','5lIj57g75QIH5z6l5lIT','57Ut5P6C5zYW5z2a5yIx','DM9Pza','6kEg6Akr5QIH5z6l5PYa','AxzL','ywfZ','Chv0u2m','y2vZC1m','5QIH5z6l5A625PEpia','CgfYC2u','DgvKrge','zxn0igu','mtKZndi4q0nuz05Q','rMvLzgi','u2fHu04','yM9VBgu','5O+q56s66k+n','zMv0y2G','og94AfLMva','5PIV5zcM5yYf5zcR6z+Z','AevYCM8','r0vu','CYbUB3q','ChjVy2u','ywnRu28','C3qGzMe','BNvTyMu','DgvUyxm','Aw50','DgLLC08','BgLLBNq','B3rOzxi','CMvXDwu','zw51Bq','yw1LDgu','Aw5N','AwfYEve','B2jQzwm','Dg9VBf8','ywLqCM8','teLuwv8','Aw1Hz2u','DMvK','5BEL5yw36lcd55sO','ywLfBMq','igzHAwW','5Bc+5BIN5zU+54Mh','A0rHDge','AgvTyq','BhnqyxK','A1jLCxu','5y+w5RAi57Ut5P6C54Q2','y2fUy2u','CNrZtxu','BMrWB2K','5PIV5zcM5B+f5AgR','CM1HBMm','l2fWAs8','ywnRl2W','B3jszxm','rwL0Agu','5zU+54Mh5QIH5z6l5PYa','CML6yxq','B2TLBG','vxnLCKm','DMfSAwq','yxrLC1i','DgvKuMu','5QIH5z6l5Qch562+','AfvZzxi','CNjVCG','qKvmuW','55sF5OIq5zU+54Mh5PwW','x2vKAxq','qxv0AeG','x211Bhq','uMvXDwu','5lU75yQH54Q25Ocb','sYdPGilPHy3LMAG','C2vSzwm','yMfZzty','Aw5Mzxi','Cgf0Aa','DwvZDfm','x2fUywW','zwXtDwm','BM9UBMu','ywLjBwe','5PIV5zcM5PsV5OYb5AsA','ihjLCxu','yxrLC1m','DxnLCK0','y2HHDe0','BNqTDhK','ywnRu3u','zxHJAge','ywnR','5PIV5zcM5PsV5OYb6z+Z','Bhnszxm','DgvKqxq','vf9lrvK','yxrLC1a','C2rR','CMvHC28','u2fHu0G','ue9tva','quDFtee','BNvSBgK','yxjYyxK','6kEg6Akr55sF5OIq','zwXMuMu','C2HuB2S','CNjVCLm','6l6t5yE65y+c5PwW','6l6t5yE66io95yQB','5QIH5z6l6io95yQB','Dgv4Da','DxjS','5zU+5yop5A696AUy5Q+u','572r5PcC57sI','ihzHBgK','5PYa5AsN5yc8','zgvMAw4','zM9Yrwe','Cg9ZAxq','DgLLC0K','5lU75yQH6l+B5BQM','AwfYEq','zwfKzxi','C2vSzG','y29Kzq','zgf0Aw8','B2DVDxq','C2vvCMW','Bw9Uu2m','B3bLBMW','5AQs5l2t57g75z6l','DwnJzxm','BwvZC2e','BMfTzq','DMLKzxi','z2v0qMe','AwfYEuu','z2LMEq','C3vIBwK','Dw5Yzwe','Cg9UC2u','Aw9U','zMvHDhu','BMzLCLi','zwzYzxm','mtyWqNjhDLbW','5PIV5zcM5PsV5OYb6ygU','6zw/5BQMkeSP','C3rszxe','qxrtDwm','6zsz6k+V56cb','A0vYCM8','revmx0m','zxj0Eq','uMvZCg8','DhrWrxi','yxv0Aeu','yM9KEq','yxvKAw8','B25Zzvm','5RIf5PMW5BQM','Av9PBNa','C3vJy2u','5PIV5zcM5PsV5OYb6AAw','yxv0Aa','BgL0zxi','BxbSyxq','55sF5OIq5zU+54Mh5A69','ExnPCW','5PYa5AsN5lIk5lIl5PAh','BgvK','5y+n5zcr5O+q56s66k+n','ywDLCW','ywLwAwq','EwXVywq','y2HHDa','zxzLBfm','55sF5OIq5zU+54Mh6lsO','yM1PDfi','quDt','zw9pDxq','qvbbqKK','zxnWB24','Bg9NB3u','y2vwAwq','BMfS','z2v0qwm','zgf0zwq','CNvUBMK','DMvKAw8','Dw90yvi','mty6oq','AwfYEuK','l21Vzgu','BwLU','AgvTysa','su5qvvq','BNnLihm','BNnLvhK','CMvZCg8','ywKVDge','Dxnty2G','mZa1ntu5r0LkqNzk','5PAh5QgJ5zYW5z2a','zwXqyxi','DgvKu3u','5PIV5zcM5OIq5yQF','qxv4AwW','ig9Yigi','qxv0Aem','C1vWzge','5QIH5z6l5yIx6kgO','quLFtu8','yNvN','ywnRvhK','5Bgv56s65zcn56EW','u2fHu1m','zwXty2G','55sF5OIq6kEg6Akr5A69','y2fSBa','Bwf4sw0','C3qGC2m','ywnRsxq','yxv0AeW','BIbMywK','5PIV5zcM5PsV5OYb6igu','Cgvty2G','5y+c5PwWigTL','zfnJAgu','C3rqyxK','ywnRtgK','ywKVAw0','5lU75yQH57Ut5P6C57g7','yY9Mzwu','AhjVDwC','Bwv0Ag8','6k6K6k+b5PA55BYp','AwfYEum','ywLdAge','w3nKA10','yxv4AwW','ChvIBgK','ywKVDMu','Dw5RBM8','zMfPBgu','ywnRq2W','zwXszxm','z2f0Axy','AwjL','5QIH5z6l5zcn56EW','y2nLC3m','5zU+5yop6lsO6yEp','CgvYzM8','DhvZu2m','C3bVBNm','y2f1C2u','6kEg6Akr55cg6kEJ','Dg9mB3C','tw9KzwW','zwXMu2m','6Akr6l6t5yE6','Axr5','l3rYCgm','5lU75yQH54Q25Ocb5P6A','ywnRrw4','zvnJAgu','yxjZzvi','ody4mdHbsKzAA0C','zNvUy3q','yw1Zu2m','6zw/77Yi56Es77Yj','ofDSuMjAwq','5y+c5PwW5A2x5Q61','Cg9PBNq','5AQs5l2tiejH','yxjZzq','57Ut5P6C57g75z6l','igLZihi','5l6B5BQu5zwg5yIx6kgO','ywn0','A1jLC3a','CY91Cgq','5y+c5PwW6k+05PIo','Dxrty2G','zwXZuMu','y29UDhi','ywLuyxm','BgLZDa','CNrZtwe','C2vty2G','zMvLzgi','zNjLzq','DgfPBfi','zhbVAw4','5PAh55sF5zU+','DgfZAW','BNnL','ywLnB2q','zwXdyxa','DhLdB20','CMvHza','ywnRrgu','yMfZzvu','AgvHzgu','yxrPB24','zw9jBNa','CMSGCMu','zgvYCW','6l6t5ywL5y+c5PwW','y2vZC1q'];_0x9d1c=function(){return _0x46715e;};return _0x9d1c();}var SaaSHttpError=class extends Error{[_0x50f445(0x13c)+'s'];[_0x50f445(0x13c)+_0x50f445(0x15c)];[_0x50f445(0x141)+'ad'];constructor(_0x17483e,_0xed0a1){var _0x4c7859=_0x50f445;super(_0x17483e),this[_0x4c7859(0x207)]=_0x4c7859(0x1e4)+_0x4c7859(0x21d)+'ror',this['statu'+'s']=_0xed0a1['statu'+'s'],this[_0x4c7859(0x13c)+_0x4c7859(0x15c)]=_0xed0a1[_0x4c7859(0x13c)+_0x4c7859(0x15c)],this[_0x4c7859(0x141)+'ad']=_0xed0a1[_0x4c7859(0x141)+'ad'];}},SaaSSchemaError=class extends Error{[_0x50f445(0xe6)+'s'];constructor(_0x58b190,_0x4af52a){var _0x624217=_0x50f445;super(_0x58b190),this[_0x624217(0x207)]=_0x624217(0x25a)+'chema'+_0x624217(0xf1),this[_0x624217(0xe6)+'s']=_0x4af52a;}},SaaSNetworkError=class extends Error{[_0x50f445(0x281)];constructor(_0x368b0b,_0x176cc9){var _0x4eaf76=_0x50f445;super(_0x368b0b),this['name']=_0x4eaf76(0x18a)+'etwor'+_0x4eaf76(0x219)+'r',this[_0x4eaf76(0x281)]=_0x176cc9;}};function logSdkError(_0x4c3ca7){var _0x110061=_0x50f445;try{console[_0x110061(0x13d)](_0x110061(0x271)+_0x110061(0x1d5)+_0x110061(0x187)+_0x110061(0x1c2),_0x4c3ca7);}catch{}}async function request(_0x238874,_0x5a5582,_0x140217){var _0x1a8262=_0x50f445;const _0x5d959b=new URL(_0x5a5582[_0x1a8262(0x1ce)],_0x140217[_0x1a8262(0xd8)+'rl']);let _0x5a9bda;try{_0x5a9bda=_0x5a5582[_0x1a8262(0x185)+_0x1a8262(0x1c8)+'st'](_0x140217[_0x1a8262(0x21f)]);}catch(_0x2c9a3d){const _0x483ccf=_0x2c9a3d&&typeof _0x2c9a3d===_0x1a8262(0x1a1)+'t'?_0x2c9a3d[_0x1a8262(0xe6)+'s']:void(-0x735+0xa93+-0x35e);logSdkError({'message':_0x1a8262(0x1c8)+_0x1a8262(0x25f)+_0x1a8262(0x245)+_0x1a8262(0x1bd)+'ation'+_0x1a8262(0x1a9)+'ed','url':_0x5d959b[_0x1a8262(0x11d)+_0x1a8262(0x19f)](),'method':_0x5a5582[_0x1a8262(0x26d)+'d'],'payload':_0x140217[_0x1a8262(0x21f)],'error':_0x2c9a3d});throw new SaaSSchemaError(_0x1a8262(0x1c8)+_0x1a8262(0x25f)+_0x1a8262(0x245)+_0x1a8262(0x1bd)+_0x1a8262(0xda)+_0x1a8262(0x1a9)+'ed',_0x483ccf);}const _0x2b77ec=mergeHeaders(_0x140217[_0x1a8262(0xd9)+'rs']);var _0xa3fd74={};_0xa3fd74['metho'+'d']=_0x5a5582[_0x1a8262(0x26d)+'d'],_0xa3fd74[_0x1a8262(0xd9)+'rs']=_0x2b77ec;const _0x50bb07=_0xa3fd74;_0x5a9bda!==void(0x1af2*-0x1+-0x419*0x2+0x2324)&&(!_0x2b77ec[_0x1a8262(0x13b)+_0x1a8262(0x1d9)+'pe']&&(_0x2b77ec[_0x1a8262(0x13b)+'nt-ty'+'pe']='appli'+'catio'+_0x1a8262(0x151)+'n'),_0x50bb07['body']=JSON['strin'+_0x1a8262(0x20b)](_0x5a9bda));let _0x5f1ae5;try{_0x5f1ae5=await _0x238874(_0x5d959b[_0x1a8262(0x11d)+_0x1a8262(0x19f)](),_0x50bb07);}catch(_0x3368de){logSdkError({'message':_0x1a8262(0x145)+_0x1a8262(0xdc)+_0x1a8262(0xe2)+_0x1a8262(0x1a9)+'ed','url':_0x5d959b['toStr'+_0x1a8262(0x19f)](),'method':_0x5a5582[_0x1a8262(0x26d)+'d'],'error':_0x3368de});throw new SaaSNetworkError(_0x1a8262(0x145)+_0x1a8262(0xdc)+_0x1a8262(0xe2)+'\x20fail'+'ed',_0x3368de);}const _0x3e2a04=await _0x5f1ae5[_0x1a8262(0x1f0)]();let _0x12c724;if(_0x5a5582[_0x1a8262(0x249)+_0x1a8262(0x248)+'pe']===_0x1a8262(0x1f0))_0x12c724=_0x3e2a04;else{if(_0x3e2a04)try{_0x12c724=JSON[_0x1a8262(0x185)](_0x3e2a04);}catch{logSdkError({'message':_0x1a8262(0x21c)+_0x1a8262(0x15d)+'s\x20not'+_0x1a8262(0x1f4)+_0x1a8262(0x16c)+'N','url':_0x5d959b[_0x1a8262(0x11d)+'ing'](),'method':_0x5a5582[_0x1a8262(0x26d)+'d'],'status':_0x5f1ae5[_0x1a8262(0x13c)+'s'],'statusText':_0x5f1ae5['statu'+_0x1a8262(0x15c)],'payload':_0x3e2a04});var _0x3b9164={};_0x3b9164[_0x1a8262(0x13c)+'s']=_0x5f1ae5['statu'+'s'],_0x3b9164['statu'+_0x1a8262(0x15c)]=_0x5f1ae5[_0x1a8262(0x13c)+_0x1a8262(0x15c)],_0x3b9164[_0x1a8262(0x141)+'ad']=_0x3e2a04;throw new SaaSHttpError('Respo'+_0x1a8262(0x15d)+_0x1a8262(0x192)+_0x1a8262(0x1f4)+_0x1a8262(0x16c)+'N',_0x3b9164);}}let _0x152bd1;try{_0x152bd1=_0x5a5582[_0x1a8262(0x185)+_0x1a8262(0x21c)+_0x1a8262(0xd2)](_0x12c724);}catch(_0x213ea9){const _0x41b2a0=_0x213ea9&&typeof _0x213ea9===_0x1a8262(0x1a1)+'t'?_0x213ea9['issue'+'s']:void(-0x6d*0x13+-0xdee*-0x1+-0x5*0x12b);logSdkError({'message':_0x1a8262(0x21c)+_0x1a8262(0x247)+_0x1a8262(0x101)+_0x1a8262(0x1f4)+_0x1a8262(0x1ff)+_0x1a8262(0x262)+_0x1a8262(0x22c),'url':_0x5d959b['toStr'+_0x1a8262(0x19f)](),'method':_0x5a5582['metho'+'d'],'status':_0x5f1ae5[_0x1a8262(0x13c)+'s'],'statusText':_0x5f1ae5[_0x1a8262(0x13c)+_0x1a8262(0x15c)],'payload':_0x12c724,'error':_0x213ea9});throw new SaaSSchemaError(_0x1a8262(0x21c)+'nse\x20s'+_0x1a8262(0x101)+_0x1a8262(0x1f4)+_0x1a8262(0x1ff)+_0x1a8262(0x262)+_0x1a8262(0x22c),_0x41b2a0);}if(!_0x5f1ae5['ok']){logSdkError({'message':_0x1a8262(0x1c8)+_0x1a8262(0x195)+_0x1a8262(0xf8),'url':_0x5d959b['toStr'+_0x1a8262(0x19f)](),'method':_0x5a5582[_0x1a8262(0x26d)+'d'],'status':_0x5f1ae5[_0x1a8262(0x13c)+'s'],'statusText':_0x5f1ae5[_0x1a8262(0x13c)+_0x1a8262(0x15c)],'payload':_0x152bd1});var _0x2a5e5e={};_0x2a5e5e[_0x1a8262(0x13c)+'s']=_0x5f1ae5[_0x1a8262(0x13c)+'s'],_0x2a5e5e[_0x1a8262(0x13c)+_0x1a8262(0x15c)]=_0x5f1ae5[_0x1a8262(0x13c)+'sText'],_0x2a5e5e[_0x1a8262(0x141)+'ad']=_0x152bd1;throw new SaaSHttpError(_0x1a8262(0x1c8)+_0x1a8262(0x195)+_0x1a8262(0xf8),_0x2a5e5e);}return _0x152bd1;}var BaseSaaSClient=class{[_0x50f445(0x29f)+_0x50f445(0x299)];['baseU'+'rl'];['getAc'+_0x50f445(0xdf)+'oken'];[_0x50f445(0x18d)+'er'];['heade'+'rs'];constructor(_0x314506){var _0x563a42=_0x50f445;this['baseU'+'rl']=_0x314506['baseU'+'rl'],this[_0x563a42(0x23c)+'cessT'+_0x563a42(0x1bb)]=_0x314506[_0x563a42(0x23c)+_0x563a42(0xdf)+_0x563a42(0x1bb)],this[_0x563a42(0x18d)+'er']=_0x314506[_0x563a42(0x18d)+'er']??fetch,this[_0x563a42(0xd9)+'rs']=_0x314506[_0x563a42(0xd9)+'rs'],this[_0x563a42(0x29f)+_0x563a42(0x299)]=_0x314506[_0x563a42(0x29f)+'act'];}async[_0x50f445(0x19c)+'st'](_0x5caceb,_0xeec418){var _0x56971f=_0x50f445;const _0x497929=mergeHeaders(this[_0x56971f(0xd9)+'rs'],_0xeec418[_0x56971f(0xd9)+'rs']);return request(this['fetch'+'er'],_0x5caceb,{'baseUrl':_0xeec418[_0x56971f(0xd8)+'rl']??this[_0x56971f(0xd8)+'rl'],'headers':_0x497929,'body':_0xeec418[_0x56971f(0x21f)]});}async['build'+_0x50f445(0x1c6)+'eader'](){var _0x2f4e41=_0x50f445;if(!this[_0x2f4e41(0x23c)+'cessT'+_0x2f4e41(0x1bb)])return{};const _0x4c072d=await this[_0x2f4e41(0x23c)+_0x2f4e41(0xdf)+_0x2f4e41(0x1bb)]();if(!_0x4c072d)return{};var _0x59706d={};return _0x59706d['Autho'+_0x2f4e41(0x1ba)+'ion']=_0x2f4e41(0x14f)+'r\x20'+_0x4c072d,_0x59706d;}[_0x50f445(0x209)+_0x50f445(0x201)](){return this['baseU'+'rl'];}},SaaSClient=class extends BaseSaaSClient{[_0x50f445(0x226)];['ai'];['auxil'+_0x50f445(0x1fb)];[_0x50f445(0x2a4)+_0x50f445(0x1dc)];[_0x50f445(0x158)];constructor(_0x416057){var _0x1b2851=_0x50f445,_0x41c0cf={..._0x416057};_0x41c0cf[_0x1b2851(0x29f)+_0x1b2851(0x299)]=_0x416057[_0x1b2851(0x29f)+_0x1b2851(0x299)]??contract,super(_0x41c0cf),this[_0x1b2851(0x226)]=new AuthClient(this),this['ai']=new AiClient(this),this[_0x1b2851(0x272)+_0x1b2851(0x1fb)]=new AuxiliaryClient(this),this[_0x1b2851(0x2a4)+'ack']=new FeedbackClient(this),this[_0x1b2851(0x158)]=new UserClient(this);}};function createTrpcClient(_0x271e70){var _0x5fd14e=_0x50f445;return createTRPCClient({'links':[httpBatchLink({'url':new URL(_0x5fd14e(0x288),_0x271e70[_0x5fd14e(0xd8)+'rl'])[_0x5fd14e(0x11d)+_0x5fd14e(0x19f)](),'headers':async()=>{var _0x5cba16=_0x5fd14e;const _0x1b8510=_0x271e70['getAc'+_0x5cba16(0xdf)+_0x5cba16(0x1bb)]?await _0x271e70['getAc'+'cessT'+_0x5cba16(0x1bb)]():'',_0x4c752f=_0x1b8510?{'Authorization':'Beare'+'r\x20'+_0x1b8510}:{};return mergeHeaders(_0x271e70[_0x5cba16(0xd9)+'rs'],_0x4c752f);}})]});}export{AI_MODEL_CAPABILITY_INPUT_KEYS,AI_MODEL_CAPABILITY_OUTPUT_KEYS,AI_MODEL_TAGS,AI_MODEL_TAG_LABELS,AiClient,AuthClient,AuxiliaryClient,Endpoint,FeedbackClient,SaaSClient,SaaSHttpError,SaaSNetworkError,SaaSSchemaError,UserClient,aiChatModelSchema,aiChatModelsPayloadSchema,aiChatModelsResponseSchema,aiChatModelsSuccessSchema,aiEndpoints,aiErrorResponseSchema,aiImageInputsSchema,aiImageOutputSchema,aiImageRequestSchema,aiMediaInputSchema,aiModelCapabilitiesInputSchema,aiModelCapabilitiesOutputSchema,aiModelCapabilitiesSchema,aiModelCapabilityCommonSchema,aiModelParameterFieldSchema,aiModelParamsSchema,aiModelSchema,aiModelsPayloadSchema,aiModelsRequestSchema,aiModelsResponseSchema,aiModelsSuccessSchema,aiModelsUpdatedAtDataSchema,aiModelsUpdatedAtResponseSchema,aiModelsUpdatedAtSuccessSchema,ai_exports as aiModule,aiProviderTemplateModelSchema,aiProviderTemplateSchema,aiProviderTemplatesPayloadSchema,aiProviderTemplatesRequestSchema,aiProviderTemplatesResponseSchema,aiProviderTemplatesSuccessSchema,aiTaskCancelDataSchema,aiTaskCancelRequestSchema,aiTaskCancelResponseSchema,aiTaskCancelSuccessSchema,aiTaskCreatedDataSchema,aiTaskCreatedResponseSchema,aiTaskCreatedSuccessSchema,aiTaskDataSchema,aiTaskErrorSchema,aiTaskRequestSchema,aiTaskResponseSchema,aiTaskResultTypeSchema,aiTaskStatusSchema,aiTaskSuccessSchema,aiVideoInputsSchema,aiVideoOutputSchema,aiVideoRequestSchema,authEndpoints,authExchangeRequestSchema,authExchangeResponseSchema,authLogoutRequestSchema,authLogoutResponseSchema,auth_exports as authModule,authRefreshErrorSchema,authRefreshRequestSchema,authRefreshResponseSchema,authRefreshSuccessSchema,authRefreshUserSchema,auxiliaryEndpoints,auxiliaryInferRequestSchema,auxiliaryInferResponseSchema,auxiliary_exports as auxiliaryModule,auxiliaryQuotaResponseSchema,contract,createTrpcClient,feedbackDetailPayloadSchema,feedbackDetailRequestSchema,feedbackDetailResponseSchema,feedbackEndpoints,feedbackItemSchema,feedbackListPayloadSchema,feedbackListRequestSchema,feedbackListResponseSchema,feedback_exports as feedbackModule,feedbackSaasStatusSchema,feedbackSourceSchema,feedbackSubmitErrorSchema,feedbackSubmitRequestSchema,feedbackSubmitResponseSchema,feedbackTypeSchema,mergeHeaders,normalizeHeaders,request,userEndpoints,userMembershipLevelSchema,user_exports as userModule,userSelfRequestSchema,userSelfResponseSchema,userSelfSchema};
|
|
1
|
+
var _0xc0113b=_0x4aa9;(function(_0x114298,_0x17690f){var _0x585d43=_0x4aa9,_0x4e559b=_0x114298();while(!![]){try{var _0x2a1481=parseInt(_0x585d43(0x2a9))/(-0xd76+0xdc6+-0x4f)*(-parseInt(_0x585d43(0x24d))/(-0x140+-0x1dc4+0x1f06))+-parseInt(_0x585d43(0x3a2))/(0x2590+-0xb*-0x173+-0x357e)*(-parseInt(_0x585d43(0x340))/(0x4*0x151+0x1*0x18b9+-0x1df9))+parseInt(_0x585d43(0x1e8))/(0x1*-0xc1+0x13b7+-0x12f1)+-parseInt(_0x585d43(0x22f))/(0x1*0x1bd1+0x37c*-0x1+-0x184f*0x1)+-parseInt(_0x585d43(0x32e))/(0x1ef7+-0x5e2+-0x190e)+parseInt(_0x585d43(0x37d))/(0x16b5+0x257*-0xd+0x7be)+parseInt(_0x585d43(0x299))/(-0xfcb*-0x1+-0xb*0x25f+0xa53);if(_0x2a1481===_0x17690f)break;else _0x4e559b['push'](_0x4e559b['shift']());}catch(_0x5f41e5){_0x4e559b['push'](_0x4e559b['shift']());}}}(_0x3445,0x3fd*-0x89+0x2c2*-0xf5+0x673af*0x1));import{z}from'zod';import{createTRPCClient,httpBatchLink}from'@trpc/client';var __defProp=Object[_0xc0113b(0x2f2)+_0xc0113b(0x23e)+_0xc0113b(0x3a7)],__export=(_0x54bf68,_0x31e1ba)=>{for(var _0x2e4a62 in _0x31e1ba)__defProp(_0x54bf68,_0x2e4a62,{'get':_0x31e1ba[_0x2e4a62],'enumerable':!![]});},ai_exports={},_0x2af3f0={};_0x2af3f0[_0xc0113b(0x262)+_0xc0113b(0x280)+_0xc0113b(0x25e)+'LITY_'+_0xc0113b(0x37a)+'_KEYS']=()=>AI_MODEL_CAPABILITY_INPUT_KEYS,_0x2af3f0[_0xc0113b(0x262)+'DEL_C'+_0xc0113b(0x25e)+_0xc0113b(0x202)+_0xc0113b(0x359)+_0xc0113b(0x37e)+'S']=()=>AI_MODEL_CAPABILITY_OUTPUT_KEYS,_0x2af3f0[_0xc0113b(0x262)+_0xc0113b(0x2cd)+_0xc0113b(0x344)]=()=>AI_MODEL_TAGS,_0x2af3f0[_0xc0113b(0x262)+_0xc0113b(0x2cd)+_0xc0113b(0x367)+_0xc0113b(0x24c)]=()=>AI_MODEL_TAG_LABELS,_0x2af3f0[_0xc0113b(0x3a8)+_0xc0113b(0x1f1)]=()=>AiClient,_0x2af3f0['aiCha'+_0xc0113b(0x28f)+_0xc0113b(0x23a)+'ma']=()=>aiChatModelSchema,_0x2af3f0[_0xc0113b(0x376)+_0xc0113b(0x28f)+'lsPay'+_0xc0113b(0x3b0)+_0xc0113b(0x34c)]=()=>aiChatModelsPayloadSchema,_0x2af3f0[_0xc0113b(0x376)+_0xc0113b(0x28f)+_0xc0113b(0x32a)+_0xc0113b(0x385)+_0xc0113b(0x2e2)+'a']=()=>aiChatModelsResponseSchema,_0x2af3f0[_0xc0113b(0x376)+_0xc0113b(0x28f)+_0xc0113b(0x298)+_0xc0113b(0x335)+_0xc0113b(0x34c)]=()=>aiChatModelsSuccessSchema,_0x2af3f0[_0xc0113b(0x35b)+_0xc0113b(0x23d)+'s']=()=>aiEndpoints,_0x2af3f0[_0xc0113b(0x1fe)+_0xc0113b(0x343)+_0xc0113b(0x385)+_0xc0113b(0x2e2)+'a']=()=>aiErrorResponseSchema,_0x2af3f0[_0xc0113b(0x21d)+_0xc0113b(0x25c)+_0xc0113b(0x368)+_0xc0113b(0x249)]=()=>aiImageInputsSchema,_0x2af3f0[_0xc0113b(0x21d)+_0xc0113b(0x1ee)+_0xc0113b(0x256)+_0xc0113b(0x249)]=()=>aiImageOutputSchema,_0x2af3f0[_0xc0113b(0x21d)+_0xc0113b(0x287)+_0xc0113b(0x2b8)+_0xc0113b(0x34c)]=()=>aiImageRequestSchema,_0x2af3f0[_0xc0113b(0x2ee)+_0xc0113b(0x35e)+_0xc0113b(0x29c)+_0xc0113b(0x2c4)]=()=>aiMediaInputSchema,_0x2af3f0[_0xc0113b(0x26c)+_0xc0113b(0x36a)+'abili'+_0xc0113b(0x379)+_0xc0113b(0x387)+_0xc0113b(0x34c)]=()=>aiModelCapabilitiesInputSchema,_0x2af3f0[_0xc0113b(0x26c)+_0xc0113b(0x36a)+_0xc0113b(0x245)+_0xc0113b(0x341)+'utput'+'Schem'+'a']=()=>aiModelCapabilitiesOutputSchema,_0x2af3f0[_0xc0113b(0x26c)+_0xc0113b(0x36a)+_0xc0113b(0x245)+_0xc0113b(0x267)+_0xc0113b(0x34c)]=()=>aiModelCapabilitiesSchema,_0x2af3f0[_0xc0113b(0x26c)+'elCap'+_0xc0113b(0x245)+'tyCom'+_0xc0113b(0x355)+_0xc0113b(0x249)]=()=>aiModelCapabilityCommonSchema,_0x2af3f0[_0xc0113b(0x26c)+_0xc0113b(0x26d)+_0xc0113b(0x293)+_0xc0113b(0x22c)+_0xc0113b(0x241)+'ma']=()=>aiModelParameterFieldSchema,_0x2af3f0[_0xc0113b(0x26c)+_0xc0113b(0x26d)+_0xc0113b(0x28e)+_0xc0113b(0x249)]=()=>aiModelParamsSchema,_0x2af3f0[_0xc0113b(0x26c)+_0xc0113b(0x2fa)+_0xc0113b(0x2c4)]=()=>aiModelSchema,_0x2af3f0[_0xc0113b(0x26c)+_0xc0113b(0x38d)+'yload'+'Schem'+'a']=()=>aiModelsPayloadSchema,_0x2af3f0[_0xc0113b(0x26c)+_0xc0113b(0x38c)+'quest'+_0xc0113b(0x2e2)+'a']=()=>aiModelsRequestSchema,_0x2af3f0[_0xc0113b(0x26c)+_0xc0113b(0x38c)+_0xc0113b(0x297)+_0xc0113b(0x27e)+'ma']=()=>aiModelsResponseSchema,_0x2af3f0[_0xc0113b(0x26c)+_0xc0113b(0x2d2)+_0xc0113b(0x2be)+_0xc0113b(0x2e2)+'a']=()=>aiModelsSuccessSchema,_0x2af3f0[_0xc0113b(0x26c)+_0xc0113b(0x2a8)+_0xc0113b(0x2de)+_0xc0113b(0x3b8)+_0xc0113b(0x3a9)+'ma']=()=>aiModelsUpdatedAtDataSchema,_0x2af3f0[_0xc0113b(0x26c)+_0xc0113b(0x2a8)+_0xc0113b(0x2de)+_0xc0113b(0x234)+_0xc0113b(0x385)+_0xc0113b(0x2e2)+'a']=()=>aiModelsUpdatedAtResponseSchema,_0x2af3f0[_0xc0113b(0x26c)+'elsUp'+_0xc0113b(0x2de)+'AtSuc'+_0xc0113b(0x335)+_0xc0113b(0x34c)]=()=>aiModelsUpdatedAtSuccessSchema,_0x2af3f0[_0xc0113b(0x2ed)+_0xc0113b(0x270)+_0xc0113b(0x20e)+'ateMo'+_0xc0113b(0x1df)+_0xc0113b(0x249)]=()=>aiProviderTemplateModelSchema,_0x2af3f0[_0xc0113b(0x2ed)+_0xc0113b(0x270)+_0xc0113b(0x20e)+_0xc0113b(0x369)+'hema']=()=>aiProviderTemplateSchema,_0x2af3f0[_0xc0113b(0x2ed)+_0xc0113b(0x270)+_0xc0113b(0x20e)+_0xc0113b(0x207)+'ayloa'+_0xc0113b(0x241)+'ma']=()=>aiProviderTemplatesPayloadSchema,_0x2af3f0['aiPro'+_0xc0113b(0x270)+'Templ'+'atesR'+_0xc0113b(0x1e7)+'tSche'+'ma']=()=>aiProviderTemplatesRequestSchema,_0x2af3f0[_0xc0113b(0x2ed)+_0xc0113b(0x270)+_0xc0113b(0x20e)+_0xc0113b(0x2e1)+_0xc0113b(0x3a5)+'seSch'+_0xc0113b(0x2c4)]=()=>aiProviderTemplatesResponseSchema,_0x2af3f0['aiPro'+'vider'+'Templ'+_0xc0113b(0x1fc)+_0xc0113b(0x372)+_0xc0113b(0x323)+'ma']=()=>aiProviderTemplatesSuccessSchema,_0x2af3f0[_0xc0113b(0x3af)+_0xc0113b(0x2ca)+_0xc0113b(0x27a)+'aSche'+'ma']=()=>aiTaskCancelDataSchema,_0x2af3f0[_0xc0113b(0x3af)+'kCanc'+_0xc0113b(0x229)+'uestS'+_0xc0113b(0x34c)]=()=>aiTaskCancelRequestSchema,_0x2af3f0[_0xc0113b(0x3af)+_0xc0113b(0x2ca)+_0xc0113b(0x2a2)+_0xc0113b(0x385)+_0xc0113b(0x2e2)+'a']=()=>aiTaskCancelResponseSchema,_0x2af3f0[_0xc0113b(0x3af)+_0xc0113b(0x2ca)+_0xc0113b(0x31f)+_0xc0113b(0x335)+_0xc0113b(0x34c)]=()=>aiTaskCancelSuccessSchema,_0x2af3f0[_0xc0113b(0x3af)+_0xc0113b(0x334)+_0xc0113b(0x39d)+_0xc0113b(0x20b)+_0xc0113b(0x2c4)]=()=>aiTaskCreatedDataSchema,_0x2af3f0[_0xc0113b(0x3af)+_0xc0113b(0x334)+_0xc0113b(0x352)+'spons'+_0xc0113b(0x27e)+'ma']=()=>aiTaskCreatedResponseSchema,_0x2af3f0['aiTas'+_0xc0113b(0x334)+'tedSu'+'ccess'+'Schem'+'a']=()=>aiTaskCreatedSuccessSchema,_0x2af3f0[_0xc0113b(0x3af)+_0xc0113b(0x32f)+_0xc0113b(0x2e2)+'a']=()=>aiTaskDataSchema,_0x2af3f0[_0xc0113b(0x3af)+_0xc0113b(0x349)+'rSche'+'ma']=()=>aiTaskErrorSchema,_0x2af3f0[_0xc0113b(0x3af)+_0xc0113b(0x289)+_0xc0113b(0x217)+_0xc0113b(0x249)]=()=>aiTaskRequestSchema,_0x2af3f0['aiTas'+_0xc0113b(0x28b)+_0xc0113b(0x314)+_0xc0113b(0x34c)]=()=>aiTaskResponseSchema,_0x2af3f0[_0xc0113b(0x3af)+_0xc0113b(0x2f7)+_0xc0113b(0x33b)+_0xc0113b(0x27e)+'ma']=()=>aiTaskResultTypeSchema,_0x2af3f0[_0xc0113b(0x3af)+_0xc0113b(0x2e7)+_0xc0113b(0x290)+_0xc0113b(0x2c4)]=()=>aiTaskStatusSchema,_0x2af3f0[_0xc0113b(0x3af)+_0xc0113b(0x1e2)+_0xc0113b(0x2af)+_0xc0113b(0x249)]=()=>aiTaskSuccessSchema,_0x2af3f0[_0xc0113b(0x311)+_0xc0113b(0x31e)+_0xc0113b(0x368)+_0xc0113b(0x249)]=()=>aiVideoInputsSchema,_0x2af3f0[_0xc0113b(0x311)+_0xc0113b(0x218)+_0xc0113b(0x256)+_0xc0113b(0x249)]=()=>aiVideoOutputSchema,_0x2af3f0[_0xc0113b(0x311)+_0xc0113b(0x3aa)+_0xc0113b(0x2b8)+_0xc0113b(0x34c)]=()=>aiVideoRequestSchema,__export(ai_exports,_0x2af3f0);var AiClient=class{[_0xc0113b(0x2b5)];constructor(_0x12af80){var _0x4d7829=_0xc0113b;this[_0x4d7829(0x2b5)]=_0x12af80;}async['image'](_0xc44afe){var _0xe71eab=_0xc0113b;const _0x14ba10=await this[_0xe71eab(0x2b5)][_0xe71eab(0x383)+_0xe71eab(0x313)+_0xe71eab(0x22e)]();return this[_0xe71eab(0x2b5)][_0xe71eab(0x2aa)+'st'](this[_0xe71eab(0x2b5)]['contr'+_0xe71eab(0x232)]['ai']['image'],{'baseUrl':this[_0xe71eab(0x2b5)][_0xe71eab(0x3bb)+_0xe71eab(0x2c2)](),'headers':_0x14ba10,'body':_0xc44afe});}async[_0xc0113b(0x32b)](_0x43ad1d){var _0x444b02=_0xc0113b;const _0x457750=await this[_0x444b02(0x2b5)][_0x444b02(0x383)+_0x444b02(0x313)+_0x444b02(0x22e)]();return this[_0x444b02(0x2b5)][_0x444b02(0x2aa)+'st'](this[_0x444b02(0x2b5)][_0x444b02(0x370)+_0x444b02(0x232)]['ai'][_0x444b02(0x32b)],{'baseUrl':this['sdk'][_0x444b02(0x3bb)+_0x444b02(0x2c2)](),'headers':_0x457750,'body':_0x43ad1d});}async[_0xc0113b(0x23b)](_0x2622e1){var _0x443212=_0xc0113b;const _0x45aae0=await this[_0x443212(0x2b5)]['build'+_0x443212(0x313)+_0x443212(0x22e)]();return this['sdk'][_0x443212(0x2aa)+'st'](this[_0x443212(0x2b5)][_0x443212(0x370)+_0x443212(0x232)]['ai'][_0x443212(0x23b)](_0x2622e1),{'baseUrl':this[_0x443212(0x2b5)][_0x443212(0x3bb)+_0x443212(0x2c2)](),'headers':_0x45aae0,'body':void(-0x1248+-0x2*0xbaf+-0x14d3*-0x2)});}async[_0xc0113b(0x375)+_0xc0113b(0x350)](_0x3e2830){var _0x23a9b8=_0xc0113b;const _0x6e9e43=await this[_0x23a9b8(0x2b5)][_0x23a9b8(0x383)+_0x23a9b8(0x313)+_0x23a9b8(0x22e)]();return this[_0x23a9b8(0x2b5)][_0x23a9b8(0x2aa)+'st'](this[_0x23a9b8(0x2b5)][_0x23a9b8(0x370)+_0x23a9b8(0x232)]['ai'][_0x23a9b8(0x375)+'lTask'](_0x3e2830),{'baseUrl':this['sdk'][_0x23a9b8(0x3bb)+'seUrl'](),'headers':_0x6e9e43,'body':void(0x1*0x1f5d+-0x36f*-0x5+-0x611*0x8)});}async[_0xc0113b(0x2dd)+_0xc0113b(0x1ec)+'s'](){var _0x4e3096=_0xc0113b;const _0x13ad29=await this['sdk'][_0x4e3096(0x383)+_0x4e3096(0x313)+_0x4e3096(0x22e)]();return this[_0x4e3096(0x2b5)][_0x4e3096(0x2aa)+'st'](this[_0x4e3096(0x2b5)][_0x4e3096(0x370)+'act']['ai'][_0x4e3096(0x2dd)+_0x4e3096(0x1ec)+'s'],{'baseUrl':this[_0x4e3096(0x2b5)][_0x4e3096(0x3bb)+_0x4e3096(0x2c2)](),'headers':_0x13ad29,'body':void(-0x3*-0x829+0x183c+-0x3*0x103d)});}async[_0xc0113b(0x32b)+_0xc0113b(0x1ec)+'s'](){var _0x33e705=_0xc0113b;const _0x5349f9=await this[_0x33e705(0x2b5)][_0x33e705(0x383)+_0x33e705(0x313)+_0x33e705(0x22e)]();return this[_0x33e705(0x2b5)][_0x33e705(0x2aa)+'st'](this[_0x33e705(0x2b5)][_0x33e705(0x370)+_0x33e705(0x232)]['ai'][_0x33e705(0x32b)+_0x33e705(0x1ec)+'s'],{'baseUrl':this[_0x33e705(0x2b5)][_0x33e705(0x3bb)+'seUrl'](),'headers':_0x5349f9,'body':void(0xb24+0x23ba+-0x2ede)});}async[_0xc0113b(0x254)+_0xc0113b(0x3ad)](){var _0x2653f3=_0xc0113b;const _0x5395f8=await this[_0x2653f3(0x2b5)][_0x2653f3(0x383)+_0x2653f3(0x313)+_0x2653f3(0x22e)]();return this[_0x2653f3(0x2b5)]['reque'+'st'](this[_0x2653f3(0x2b5)][_0x2653f3(0x370)+_0x2653f3(0x232)]['ai'][_0x2653f3(0x254)+_0x2653f3(0x3ad)],{'baseUrl':this[_0x2653f3(0x2b5)][_0x2653f3(0x3bb)+_0x2653f3(0x2c2)](),'headers':_0x5395f8,'body':void(0x2492+-0x2*0x24b+-0x1ffc)});}async[_0xc0113b(0x2f9)+_0xc0113b(0x2f3)+_0xc0113b(0x240)](){var _0x2b5f29=_0xc0113b;return this[_0x2b5f29(0x2b5)][_0x2b5f29(0x2aa)+'st'](this[_0x2b5f29(0x2b5)][_0x2b5f29(0x370)+_0x2b5f29(0x232)]['ai'][_0x2b5f29(0x2f9)+_0x2b5f29(0x2f3)+_0x2b5f29(0x240)],{'baseUrl':this[_0x2b5f29(0x2b5)][_0x2b5f29(0x3bb)+_0x2b5f29(0x2c2)](),'headers':{},'body':void(0x1912+-0x13c6+-0x54c)});}async[_0xc0113b(0x278)+_0xc0113b(0x21e)](_0x5a44f0,_0x23f366){var _0xb41bee=_0xc0113b;const _0x41a132=new FormData();_0x41a132['appen'+'d'](_0xb41bee(0x212),_0x5a44f0,_0x23f366??(_0x5a44f0 instanceof File?_0x5a44f0[_0xb41bee(0x2c1)]:_0xb41bee(0x212)));const _0x2cae9a=await this[_0xb41bee(0x2b5)][_0xb41bee(0x383)+_0xb41bee(0x313)+_0xb41bee(0x22e)](),_0x3a5444=this[_0xb41bee(0x2b5)][_0xb41bee(0x3bb)+_0xb41bee(0x2c2)]()+(_0xb41bee(0x1f0)+_0xb41bee(0x1e5)+_0xb41bee(0x357)+_0xb41bee(0x395));var _0x24272e={};_0x24272e[_0xb41bee(0x39a)+'d']=_0xb41bee(0x34b),_0x24272e[_0xb41bee(0x319)+'rs']=_0x2cae9a,_0x24272e[_0xb41bee(0x228)]=_0x41a132;const _0x31a0f6=await fetch(_0x3a5444,_0x24272e);if(!_0x31a0f6['ok']){const _0x4b389d=await _0x31a0f6[_0xb41bee(0x2ab)]()['catch'](()=>({'message':_0xb41bee(0x269)+_0xb41bee(0x325)+_0xb41bee(0x2b9)}));throw new Error(_0x4b389d[_0xb41bee(0x1ed)+'ge']??_0xb41bee(0x269)+_0xb41bee(0x325)+_0xb41bee(0x2b9));}return _0x31a0f6[_0xb41bee(0x2ab)]();}async['provi'+_0xc0113b(0x261)+_0xc0113b(0x3ab)+'es'](){var _0x57b6c1=_0xc0113b;return this[_0x57b6c1(0x2b5)][_0x57b6c1(0x2aa)+'st'](this['sdk'][_0x57b6c1(0x370)+_0x57b6c1(0x232)]['ai'][_0x57b6c1(0x2bf)+_0x57b6c1(0x261)+'mplat'+'es'],{'baseUrl':this[_0x57b6c1(0x2b5)]['getBa'+_0x57b6c1(0x2c2)](),'headers':{},'body':void(-0x17*0xe3+0x19*-0xa5+0x2*0x1241)});}},AI_MODEL_TAGS=[_0xc0113b(0x2dd)+_0xc0113b(0x2fc)+_0xc0113b(0x2e8)+'n','image'+'_mult'+_0xc0113b(0x1da)+'ut',_0xc0113b(0x2dd)+'_inpu'+'t',_0xc0113b(0x2dd)+_0xc0113b(0x251)+_0xc0113b(0x2cf)+_0xc0113b(0x316)+'on',_0xc0113b(0x2dd)+_0xc0113b(0x3b1),_0xc0113b(0x32b)+_0xc0113b(0x2fc)+_0xc0113b(0x2e8)+'n','chat',_0xc0113b(0x239)+_0xc0113b(0x2c5),_0xc0113b(0x20f)+_0xc0113b(0x31b),_0xc0113b(0x2dd)+'_anal'+_0xc0113b(0x20d),'video'+_0xc0113b(0x2c6)+_0xc0113b(0x20d),_0xc0113b(0x35c)+_0xc0113b(0x2c6)+_0xc0113b(0x20d),_0xc0113b(0x3b5)],_0x26ed1a={};_0x26ed1a[_0xc0113b(0x2dd)+_0xc0113b(0x2fc)+'ratio'+'n']=_0xc0113b(0x31d),_0x26ed1a['image'+_0xc0113b(0x251)+_0xc0113b(0x1da)+'ut']=_0xc0113b(0x2ae),_0x26ed1a[_0xc0113b(0x2dd)+_0xc0113b(0x2b0)+'t']='图片输入',_0x26ed1a[_0xc0113b(0x2dd)+_0xc0113b(0x251)+_0xc0113b(0x2cf)+_0xc0113b(0x316)+'on']=_0xc0113b(0x2c3),_0x26ed1a['image'+_0xc0113b(0x3b1)]=_0xc0113b(0x22d),_0x26ed1a[_0xc0113b(0x32b)+_0xc0113b(0x2fc)+'ratio'+'n']='视频生成',_0x26ed1a[_0xc0113b(0x2b6)]='对话',_0x26ed1a['reaso'+'ning']='推理',_0x26ed1a['tool_'+'call']=_0xc0113b(0x30f),_0x26ed1a[_0xc0113b(0x2dd)+_0xc0113b(0x2c6)+_0xc0113b(0x20d)]=_0xc0113b(0x281),_0x26ed1a[_0xc0113b(0x32b)+'_anal'+'ysis']=_0xc0113b(0x304),_0x26ed1a['audio'+_0xc0113b(0x2c6)+_0xc0113b(0x20d)]=_0xc0113b(0x2bd),_0x26ed1a[_0xc0113b(0x3b5)]='代码';var AI_MODEL_TAG_LABELS=_0x26ed1a,AI_MODEL_CAPABILITY_INPUT_KEYS=[_0xc0113b(0x2c8)+_0xc0113b(0x1f5),_0xc0113b(0x252)+_0xc0113b(0x390)+'sk',_0xc0113b(0x252)+'rtsRe'+_0xc0113b(0x236)+_0xc0113b(0x27d)+'eo',_0xc0113b(0x252)+_0xc0113b(0x2b1)+'artEn'+'d'],AI_MODEL_CAPABILITY_OUTPUT_KEYS=[_0xc0113b(0x252)+_0xc0113b(0x292)+_0xc0113b(0x1ef),_0xc0113b(0x252)+_0xc0113b(0x22b)+_0xc0113b(0x381)],Endpoint=class{[_0xc0113b(0x39a)+'d'];[_0xc0113b(0x2f6)];[_0xc0113b(0x204)+'nseTy'+'pe'];[_0xc0113b(0x2aa)+'st'];[_0xc0113b(0x204)+_0xc0113b(0x268)];constructor(_0x343a51){var _0x1467b3=_0xc0113b;this[_0x1467b3(0x39a)+'d']=_0x343a51[_0x1467b3(0x39a)+'d'],this[_0x1467b3(0x2f6)]=_0x343a51[_0x1467b3(0x2f6)],this[_0x1467b3(0x2aa)+'st']=_0x343a51[_0x1467b3(0x2aa)+'stSch'+'ema'],this[_0x1467b3(0x204)+'nse']=_0x343a51[_0x1467b3(0x204)+_0x1467b3(0x209)+'hema'],this[_0x1467b3(0x204)+_0x1467b3(0x226)+'pe']=_0x343a51[_0x1467b3(0x204)+_0x1467b3(0x226)+'pe']??_0x1467b3(0x2ab);}['parse'+_0xc0113b(0x37f)+'st'](_0x2cddb8){var _0x348917=_0xc0113b;return this[_0x348917(0x2aa)+'st'][_0x348917(0x374)](_0x2cddb8);}['parse'+_0xc0113b(0x285)+_0xc0113b(0x268)](_0x770206){var _0xf8adf2=_0xc0113b;return this[_0xf8adf2(0x204)+_0xf8adf2(0x268)][_0xf8adf2(0x374)](_0x770206);}[_0xc0113b(0x396)+_0xc0113b(0x275)+_0xc0113b(0x1e7)+'t'](_0x2460fb){var _0x33eb8b=_0xc0113b;return this[_0x33eb8b(0x2aa)+'st'][_0x33eb8b(0x396)+'arse'](_0x2460fb);}[_0xc0113b(0x396)+'arseR'+_0xc0113b(0x3a5)+'se'](_0x3d2a46){var _0x506596=_0xc0113b;return this[_0x506596(0x204)+_0x506596(0x268)][_0x506596(0x396)+_0x506596(0x221)](_0x3d2a46);}},aiVoidRequestSchema=z[_0xc0113b(0x1f7)](),_0x4dcb5d={};_0x4dcb5d[_0xc0113b(0x1ed)+'ge']=_0xc0113b(0x2d1)+_0xc0113b(0x2cb)+'\x20or\x20b'+_0xc0113b(0x35f)+_0xc0113b(0x373)+_0xc0113b(0x39e)+'ed';var aiMediaInputSchema=z['objec'+'t']({'url':z[_0xc0113b(0x33e)+'g']()[_0xc0113b(0x33c)]()[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x1e9)+'L')[_0xc0113b(0x328)+_0xc0113b(0x238)](),'base64':z[_0xc0113b(0x33e)+'g']()['descr'+_0xc0113b(0x39f)](_0xc0113b(0x296)+_0xc0113b(0x276)+'数据')['optio'+_0xc0113b(0x238)](),'mediaType':z['strin'+'g']()[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x220))[_0xc0113b(0x328)+_0xc0113b(0x238)]()})[_0xc0113b(0x2ce)+'e'](_0x317147=>Boolean(_0x317147['url']||_0x317147[_0xc0113b(0x2ea)+'4']),_0x4dcb5d),aiImageInputsSchema=z[_0xc0113b(0x1e3)+'t']({'images':z['array'](aiMediaInputSchema)[_0xc0113b(0x380)+'ibe'](_0xc0113b(0x258)+'表')[_0xc0113b(0x328)+'nal'](),'mask':aiMediaInputSchema[_0xc0113b(0x380)+'ibe'](_0xc0113b(0x3be))[_0xc0113b(0x328)+_0xc0113b(0x238)]()}),aiVideoInputsSchema=z[_0xc0113b(0x1e3)+'t']({'images':z[_0xc0113b(0x2e4)](aiMediaInputSchema)[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x258)+'表')['optio'+'nal'](),'startImage':aiMediaInputSchema['descr'+'ibe'](_0xc0113b(0x34d))[_0xc0113b(0x328)+'nal'](),'endImage':aiMediaInputSchema[_0xc0113b(0x380)+_0xc0113b(0x39f)]('尾帧图片')[_0xc0113b(0x328)+_0xc0113b(0x238)](),'referenceVideo':aiMediaInputSchema[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x284))[_0xc0113b(0x328)+_0xc0113b(0x238)]()}),aiImageAspectRatioSchema=z['enum']([_0xc0113b(0x338),_0xc0113b(0x248),_0xc0113b(0x2e0),_0xc0113b(0x1e1)])[_0xc0113b(0x380)+_0xc0113b(0x39f)]('图像宽高比'),aiImageQualitySchema=z[_0xc0113b(0x265)]([_0xc0113b(0x2fe)+_0xc0113b(0x260),'hd'])[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x342)),aiImageOutputSchema=z['objec'+'t']({'count':z['numbe'+'r']()['int']()['min'](0xab9+0x1dd8+-0x2890)[_0xc0113b(0x39c)](-0x1c5a+-0x1029+-0x4*-0xb22)[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x36d)+'量')['optio'+_0xc0113b(0x238)](),'aspectRatio':aiImageAspectRatioSchema[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x358)+'高比')[_0xc0113b(0x328)+_0xc0113b(0x238)](),'quality':aiImageQualitySchema[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x215)+'量')[_0xc0113b(0x328)+'nal']()}),aiVideoOutputSchema=z[_0xc0113b(0x1e3)+'t']({'aspectRatio':z[_0xc0113b(0x33e)+'g']()[_0xc0113b(0x380)+'ibe'](_0xc0113b(0x315)+'高比')[_0xc0113b(0x328)+_0xc0113b(0x238)](),'duration':z[_0xc0113b(0x2a4)+'r']()['posit'+_0xc0113b(0x36c)]()[_0xc0113b(0x380)+'ibe'](_0xc0113b(0x244)+'长(秒)')[_0xc0113b(0x328)+_0xc0113b(0x238)](),'clarity':z['strin'+'g']()[_0xc0113b(0x380)+'ibe'](_0xc0113b(0x27c))[_0xc0113b(0x328)+'nal'](),'withAudio':z['boole'+'an']()['descr'+_0xc0113b(0x39f)](_0xc0113b(0x205)+'频')[_0xc0113b(0x328)+_0xc0113b(0x238)]()}),aiImageRequestSchema=z[_0xc0113b(0x1e3)+'t']({'modelId':z['strin'+'g']()[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x2bc)),'prompt':z['strin'+'g']()[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x364)),'negativePrompt':z[_0xc0113b(0x33e)+'g']()['descr'+_0xc0113b(0x39f)](_0xc0113b(0x34a))[_0xc0113b(0x328)+_0xc0113b(0x238)](),'style':z[_0xc0113b(0x33e)+'g']()[_0xc0113b(0x380)+_0xc0113b(0x39f)]('风格')[_0xc0113b(0x328)+_0xc0113b(0x238)](),'inputs':aiImageInputsSchema[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x384))['optio'+_0xc0113b(0x238)](),'output':aiImageOutputSchema['descr'+'ibe']('输出参数')[_0xc0113b(0x328)+'nal'](),'parameters':z[_0xc0113b(0x1f6)+'d'](z[_0xc0113b(0x33e)+'g'](),z[_0xc0113b(0x2d4)+'wn']())[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x393))[_0xc0113b(0x328)+_0xc0113b(0x238)]()}),aiVideoRequestSchema=z['objec'+'t']({'modelId':z[_0xc0113b(0x33e)+'g']()[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x2bc)),'prompt':z['strin'+'g']()['descr'+'ibe'](_0xc0113b(0x364)),'negativePrompt':z[_0xc0113b(0x33e)+'g']()[_0xc0113b(0x380)+'ibe'](_0xc0113b(0x34a))[_0xc0113b(0x328)+_0xc0113b(0x238)](),'style':z[_0xc0113b(0x33e)+'g']()[_0xc0113b(0x380)+_0xc0113b(0x39f)]('风格')[_0xc0113b(0x328)+_0xc0113b(0x238)](),'inputs':aiVideoInputsSchema['descr'+_0xc0113b(0x39f)](_0xc0113b(0x384))[_0xc0113b(0x328)+_0xc0113b(0x238)](),'output':aiVideoOutputSchema[_0xc0113b(0x380)+_0xc0113b(0x39f)]('输出参数')[_0xc0113b(0x328)+_0xc0113b(0x238)](),'parameters':z[_0xc0113b(0x1f6)+'d'](z[_0xc0113b(0x33e)+'g'](),z[_0xc0113b(0x2d4)+'wn']())['descr'+_0xc0113b(0x39f)]('额外参数')['optio'+_0xc0113b(0x238)]()}),aiTaskCreatedDataSchema=z[_0xc0113b(0x1e3)+'t']({'taskId':z['strin'+'g']()[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x23c))}),aiErrorResponseSchema=z[_0xc0113b(0x1e3)+'t']({'success':z[_0xc0113b(0x351)+'al'](![])[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x329)),'code':z['strin'+'g']()[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x2fd))[_0xc0113b(0x328)+_0xc0113b(0x238)](),'message':z[_0xc0113b(0x33e)+'g']()['descr'+_0xc0113b(0x39f)](_0xc0113b(0x36b))}),aiTaskCreatedSuccessSchema=z['objec'+'t']({'success':z[_0xc0113b(0x351)+'al'](!![])['descr'+'ibe'](_0xc0113b(0x329)),'data':aiTaskCreatedDataSchema[_0xc0113b(0x380)+'ibe'](_0xc0113b(0x361))}),aiTaskCreatedResponseSchema=z['union']([aiTaskCreatedSuccessSchema,aiErrorResponseSchema]),aiTaskStatusSchema=z[_0xc0113b(0x265)](['queue'+'d',_0xc0113b(0x3b9)+'ng',_0xc0113b(0x2a3)+_0xc0113b(0x246),_0xc0113b(0x2f5)+'d','cance'+_0xc0113b(0x2b9)])[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x2d6)+'举'),aiTaskResultTypeSchema=z[_0xc0113b(0x265)]([_0xc0113b(0x2dd),_0xc0113b(0x32b)])[_0xc0113b(0x380)+'ibe'](_0xc0113b(0x35d)+'型'),aiTaskErrorSchema=z['objec'+'t']({'code':z[_0xc0113b(0x33e)+'g']()['descr'+_0xc0113b(0x39f)](_0xc0113b(0x2fd))[_0xc0113b(0x328)+_0xc0113b(0x238)](),'message':z[_0xc0113b(0x33e)+'g']()[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x36b))}),aiTaskDataSchema=z[_0xc0113b(0x1e3)+'t']({'status':aiTaskStatusSchema[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x3ae)),'progress':z[_0xc0113b(0x2a4)+'r']()['min'](0x15dd+0x1010+0x13*-0x1ff)[_0xc0113b(0x39c)](-0x139*0x4+0xa13*-0x1+0xf5b)[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x32c))[_0xc0113b(0x328)+_0xc0113b(0x238)](),'resultType':aiTaskResultTypeSchema[_0xc0113b(0x380)+_0xc0113b(0x39f)]('结果类型')[_0xc0113b(0x328)+_0xc0113b(0x238)](),'resultUrls':z[_0xc0113b(0x2e4)](z[_0xc0113b(0x33e)+'g']())[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x263)+'表')[_0xc0113b(0x328)+_0xc0113b(0x238)](),'error':aiTaskErrorSchema[_0xc0113b(0x380)+'ibe'](_0xc0113b(0x36b))[_0xc0113b(0x328)+_0xc0113b(0x238)](),'creditsConsumed':z[_0xc0113b(0x2a4)+'r']()['descr'+_0xc0113b(0x39f)](_0xc0113b(0x224))[_0xc0113b(0x328)+_0xc0113b(0x238)]()}),aiTaskSuccessSchema=z[_0xc0113b(0x1e3)+'t']({'success':z[_0xc0113b(0x351)+'al'](!![])[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x329)),'data':aiTaskDataSchema[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x361))}),aiTaskResponseSchema=z[_0xc0113b(0x333)]([aiTaskSuccessSchema,aiErrorResponseSchema]),aiTaskCancelDataSchema=z[_0xc0113b(0x1e3)+'t']({'status':z[_0xc0113b(0x265)](['cance'+'led',_0xc0113b(0x27b)+_0xc0113b(0x2d0)])[_0xc0113b(0x380)+'ibe'](_0xc0113b(0x391)+'态')}),aiTaskCancelSuccessSchema=z['objec'+'t']({'success':z[_0xc0113b(0x351)+'al'](!![])['descr'+_0xc0113b(0x39f)](_0xc0113b(0x329)),'data':aiTaskCancelDataSchema[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x361))}),aiTaskCancelResponseSchema=z['union']([aiTaskCancelSuccessSchema,aiErrorResponseSchema]),aiModelCapabilitiesInputSchema=z[_0xc0113b(0x1e3)+'t']({'maxImages':z[_0xc0113b(0x2a4)+'r']()[_0xc0113b(0x213)]()['descr'+'ibe'](_0xc0113b(0x259)+_0xc0113b(0x306))[_0xc0113b(0x328)+_0xc0113b(0x238)](),'supportsMask':z['boole'+'an']()[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x20a)+'罩')[_0xc0113b(0x328)+_0xc0113b(0x238)](),'supportsReferenceVideo':z['boole'+'an']()[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x231)+'考视频')[_0xc0113b(0x328)+'nal'](),'supportsStartEnd':z[_0xc0113b(0x371)+'an']()[_0xc0113b(0x380)+'ibe'](_0xc0113b(0x28a)+'尾帧')[_0xc0113b(0x328)+_0xc0113b(0x238)]()}),aiModelCapabilitiesOutputSchema=z[_0xc0113b(0x1e3)+'t']({'supportsMulti':z['boole'+'an']()[_0xc0113b(0x380)+'ibe'](_0xc0113b(0x2f8)+'输出')[_0xc0113b(0x328)+_0xc0113b(0x238)](),'supportsAudio':z[_0xc0113b(0x371)+'an']()['descr'+'ibe'](_0xc0113b(0x264)+'频输出')[_0xc0113b(0x328)+_0xc0113b(0x238)]()}),aiModelCapabilityCommonSchema=z[_0xc0113b(0x1e3)+'t']({'maxContextK':z[_0xc0113b(0x2a4)+'r']()['int']()[_0xc0113b(0x309)+_0xc0113b(0x31c)+'e']()[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x2ff)+_0xc0113b(0x28d))['optio'+_0xc0113b(0x238)](),'supportsStructuredOutput':z[_0xc0113b(0x371)+'an']()['descr'+_0xc0113b(0x39f)]('是否支持结'+_0xc0113b(0x2e5))['optio'+_0xc0113b(0x238)](),'supportsWebSearch':z['boole'+'an']()['descr'+_0xc0113b(0x39f)](_0xc0113b(0x29f)+_0xc0113b(0x25a))[_0xc0113b(0x328)+_0xc0113b(0x238)]()}),aiModelParameterValueSchema=z[_0xc0113b(0x333)]([z['strin'+'g'](),z[_0xc0113b(0x2a4)+'r'](),z[_0xc0113b(0x371)+'an']()]),aiModelParameterFieldSchema=z['objec'+'t']({'key':z[_0xc0113b(0x33e)+'g']()[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x318)+'y'),'title':z['strin'+'g']()['descr'+_0xc0113b(0x39f)](_0xc0113b(0x214)),'description':z['strin'+'g']()['descr'+_0xc0113b(0x39f)]('参数说明')[_0xc0113b(0x328)+'nal'](),'type':z[_0xc0113b(0x265)]([_0xc0113b(0x1f9)+'t','numbe'+'r',_0xc0113b(0x371)+'an',_0xc0113b(0x3c3)])['descr'+_0xc0113b(0x39f)](_0xc0113b(0x1ff)),'unit':z[_0xc0113b(0x33e)+'g']()['descr'+_0xc0113b(0x39f)]('单位')[_0xc0113b(0x328)+'nal'](),'values':z[_0xc0113b(0x2e4)](aiModelParameterValueSchema)[_0xc0113b(0x380)+'ibe'](_0xc0113b(0x365))['optio'+_0xc0113b(0x238)](),'min':z[_0xc0113b(0x2a4)+'r']()[_0xc0113b(0x380)+'ibe']('最小值')[_0xc0113b(0x328)+_0xc0113b(0x238)](),'max':z['numbe'+'r']()['descr'+_0xc0113b(0x39f)](_0xc0113b(0x271))[_0xc0113b(0x328)+_0xc0113b(0x238)](),'step':z[_0xc0113b(0x2a4)+'r']()[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x3ac))[_0xc0113b(0x328)+_0xc0113b(0x238)](),'default':aiModelParameterValueSchema[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x389))[_0xc0113b(0x328)+_0xc0113b(0x238)](),'request':z['boole'+'an']()['descr'+_0xc0113b(0x39f)](_0xc0113b(0x353))}),aiModelParamsSchema=z[_0xc0113b(0x1e3)+'t']({'features':z[_0xc0113b(0x2e4)](z[_0xc0113b(0x33e)+'g']())['descr'+_0xc0113b(0x39f)](_0xc0113b(0x30c))[_0xc0113b(0x328)+_0xc0113b(0x238)](),'fields':z[_0xc0113b(0x2e4)](aiModelParameterFieldSchema)['descr'+_0xc0113b(0x39f)](_0xc0113b(0x392))[_0xc0113b(0x328)+_0xc0113b(0x238)]()}),aiModelCapabilitiesSchema=z[_0xc0113b(0x1e3)+'t']({'common':aiModelCapabilityCommonSchema[_0xc0113b(0x380)+_0xc0113b(0x39f)]('通用能力')['optio'+_0xc0113b(0x238)](),'params':aiModelParamsSchema[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x307))[_0xc0113b(0x328)+'nal'](),'input':aiModelCapabilitiesInputSchema[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x1dc))[_0xc0113b(0x328)+_0xc0113b(0x238)](),'output':aiModelCapabilitiesOutputSchema['descr'+_0xc0113b(0x39f)](_0xc0113b(0x1f4))[_0xc0113b(0x328)+_0xc0113b(0x238)]()}),aiModelSchema=z[_0xc0113b(0x1e3)+'t']({'id':z[_0xc0113b(0x33e)+'g']()[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x2bc)),'name':z[_0xc0113b(0x33e)+'g']()[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x222))[_0xc0113b(0x328)+_0xc0113b(0x238)](),'familyId':z[_0xc0113b(0x33e)+'g']()[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x3ba)+'ID')[_0xc0113b(0x328)+_0xc0113b(0x238)](),'providerId':z['strin'+'g']()[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x206)+'D')[_0xc0113b(0x328)+_0xc0113b(0x238)](),'tags':z[_0xc0113b(0x2e4)](z[_0xc0113b(0x33e)+'g']())[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x26e))['optio'+_0xc0113b(0x238)](),'capabilities':aiModelCapabilitiesSchema[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x29d))[_0xc0113b(0x328)+_0xc0113b(0x238)]()})[_0xc0113b(0x273)+_0xc0113b(0x332)+'h'](),aiModelsPayloadSchema=z['objec'+'t']({'data':z[_0xc0113b(0x2e4)](aiModelSchema)[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x225)),'updatedAt':z[_0xc0113b(0x33e)+'g']()[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x242))[_0xc0113b(0x328)+'nal']()}),aiModelsSuccessSchema=z[_0xc0113b(0x1e3)+'t']({'success':z[_0xc0113b(0x351)+'al'](!![])[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x329)),'data':aiModelsPayloadSchema['descr'+_0xc0113b(0x39f)](_0xc0113b(0x361))}),aiModelsResponseSchema=z[_0xc0113b(0x333)]([aiModelsSuccessSchema,aiErrorResponseSchema]),aiChatModelSchema=z[_0xc0113b(0x1e3)+'t']({'id':z[_0xc0113b(0x33e)+'g']()[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x2bc)),'provider':z[_0xc0113b(0x33e)+'g']()[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x282)),'displayName':z[_0xc0113b(0x33e)+'g']()['descr'+_0xc0113b(0x39f)](_0xc0113b(0x214)),'familyId':z[_0xc0113b(0x33e)+'g']()[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x3ba)+'ID')[_0xc0113b(0x328)+_0xc0113b(0x238)](),'tags':z[_0xc0113b(0x2e4)](z['strin'+'g']())[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x26e)),'capabilities':aiModelCapabilitiesSchema[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x29d))['optio'+_0xc0113b(0x238)]()}),aiChatModelsPayloadSchema=z[_0xc0113b(0x1e3)+'t']({'data':z[_0xc0113b(0x2e4)](aiChatModelSchema)[_0xc0113b(0x380)+_0xc0113b(0x39f)]('模型列表'),'updatedAt':z['strin'+'g']()[_0xc0113b(0x380)+_0xc0113b(0x39f)]('更新时间')[_0xc0113b(0x328)+_0xc0113b(0x238)]()}),aiChatModelsSuccessSchema=z[_0xc0113b(0x1e3)+'t']({'success':z[_0xc0113b(0x351)+'al'](!![])[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x329)),'data':aiChatModelsPayloadSchema['descr'+_0xc0113b(0x39f)](_0xc0113b(0x361))}),aiChatModelsResponseSchema=z[_0xc0113b(0x333)]([aiChatModelsSuccessSchema,aiErrorResponseSchema]),aiModelsUpdatedAtDataSchema=z[_0xc0113b(0x1e3)+'t']({'chatUpdatedAt':z[_0xc0113b(0x33e)+'g']()[_0xc0113b(0x380)+'ibe'](_0xc0113b(0x253)+'后更新时间'),'imageUpdatedAt':z[_0xc0113b(0x33e)+'g']()['descr'+'ibe']('图片模型最'+'后更新时间'),'videoUpdatedAt':z[_0xc0113b(0x33e)+'g']()['descr'+'ibe'](_0xc0113b(0x29e)+_0xc0113b(0x3a6)),'latestUpdatedAt':z[_0xc0113b(0x33e)+'g']()[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x1dd)+_0xc0113b(0x243)+'时间')}),aiModelsUpdatedAtSuccessSchema=z[_0xc0113b(0x1e3)+'t']({'success':z[_0xc0113b(0x351)+'al'](!![])[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x329)),'data':aiModelsUpdatedAtDataSchema[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x361))}),aiModelsUpdatedAtResponseSchema=z[_0xc0113b(0x333)]([aiModelsUpdatedAtSuccessSchema,aiErrorResponseSchema]),aiModelsRequestSchema=aiVoidRequestSchema,aiTaskRequestSchema=aiVoidRequestSchema,aiTaskCancelRequestSchema=aiVoidRequestSchema,aiProviderTemplateModelSchema=z[_0xc0113b(0x1e3)+'t']({'id':z[_0xc0113b(0x33e)+'g']()[_0xc0113b(0x380)+_0xc0113b(0x39f)]('模型\x20ID'),'providerId':z[_0xc0113b(0x33e)+'g']()['descr'+'ibe'](_0xc0113b(0x206)+'D'),'displayName':z[_0xc0113b(0x33e)+'g']()['nulli'+'sh']()[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x214)),'description':z[_0xc0113b(0x33e)+'g']()[_0xc0113b(0x3b2)+'sh']()[_0xc0113b(0x380)+'ibe'](_0xc0113b(0x356)),'familyId':z['strin'+'g']()[_0xc0113b(0x380)+_0xc0113b(0x39f)]('模型家族\x20'+'ID')[_0xc0113b(0x328)+_0xc0113b(0x238)](),'tags':z[_0xc0113b(0x2e4)](z['strin'+'g']())[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x26e)),'capabilities':aiModelCapabilitiesSchema[_0xc0113b(0x380)+'ibe'](_0xc0113b(0x29d))[_0xc0113b(0x328)+'nal']()}),aiProviderTemplateSchema=z[_0xc0113b(0x1e3)+'t']({'id':z[_0xc0113b(0x33e)+'g']()[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x206)+'D'),'label':z[_0xc0113b(0x33e)+'g']()[_0xc0113b(0x380)+'ibe'](_0xc0113b(0x362)),'adapter':z[_0xc0113b(0x33e)+'g']()[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x295)+_0xc0113b(0x397)+'标识'),'apiUrl':z[_0xc0113b(0x33e)+'g']()[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x274)+'址')[_0xc0113b(0x328)+_0xc0113b(0x238)](),'authType':z[_0xc0113b(0x33e)+'g']()[_0xc0113b(0x380)+_0xc0113b(0x39f)]('认证方式')['optio'+_0xc0113b(0x238)](),'websiteUrl':z[_0xc0113b(0x33e)+'g']()['nulli'+'sh']()[_0xc0113b(0x380)+'ibe'](_0xc0113b(0x235)),'docUrl':z[_0xc0113b(0x33e)+'g']()[_0xc0113b(0x3b2)+'sh']()['descr'+_0xc0113b(0x39f)](_0xc0113b(0x331)),'models':z['array'](aiProviderTemplateModelSchema)['descr'+_0xc0113b(0x39f)](_0xc0113b(0x225))}),aiProviderTemplatesPayloadSchema=z[_0xc0113b(0x1e3)+'t']({'providers':z[_0xc0113b(0x2e4)](aiProviderTemplateSchema)[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x3c0)),'updatedAt':z[_0xc0113b(0x33e)+'g']()['descr'+_0xc0113b(0x39f)]('更新时间')[_0xc0113b(0x328)+_0xc0113b(0x238)]()}),aiProviderTemplatesSuccessSchema=z[_0xc0113b(0x1e3)+'t']({'success':z[_0xc0113b(0x351)+'al'](!![])[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x329)),'data':aiProviderTemplatesPayloadSchema[_0xc0113b(0x380)+_0xc0113b(0x39f)](_0xc0113b(0x361))}),aiProviderTemplatesResponseSchema=z[_0xc0113b(0x333)]([aiProviderTemplatesSuccessSchema,aiErrorResponseSchema]),aiProviderTemplatesRequestSchema=z[_0xc0113b(0x1f7)](),_0x53c7c8={};_0x53c7c8[_0xc0113b(0x39a)+'d']=_0xc0113b(0x34b),_0x53c7c8[_0xc0113b(0x2f6)]=_0xc0113b(0x1f0)+'ai/im'+_0xc0113b(0x348),_0x53c7c8['reque'+_0xc0113b(0x237)+_0xc0113b(0x2c4)]=aiImageRequestSchema,_0x53c7c8[_0xc0113b(0x204)+_0xc0113b(0x209)+_0xc0113b(0x249)]=aiTaskCreatedResponseSchema;var _0x1a5621={};function _0x3445(){var _0x4913f6=['5PYa5AsN5yc8','DhjPBq','CgfZC3q','qvbjiowCSa','yxjZzvi','C2u2nca','B2fMlxm','DxbSB2e','ihjLCxu','zwXeyxq','ChjVy2u','5RIf5PMW5BQM','y2vwAwq','zvnJAgu','igzHAwW','revmx0m','5zU+54Mh55cg6kEJ','5l6B5BQu5zwg','zhbVAw4','5y+c6icd6kEg6Akr','uMvZCg8','Aw5MAw4','z2vszxe','AxnZDwu','A1jLCxu','5PIV5zcM5PsV5OYb6AAw','A1jLC3a','y2f0y2G','6zw/5BQMkeSP','yw1Zu2m','De1Vzgu','Dxnty2G','BNnLihm','CNrZtxu','yw1LDgu','CxvVDge','quKGu0q','5AQs5l2tiejH','C3bVBNm','BhntDwm','mtG4mZyXowrut1vtra','AwfYEuu','DhrWrxi','Dxrty2G','5QIH5z6l6io95yQB','6kEg6Akr5QIH5z6l5PYa','5PIV5zcM5PsV5OYb6igu','yxbWBgK','u2fHu0G','zwXszxm','C3vJy2u','BNvTyMu','CxvLC3q','ywnRu28','zw1Izxi','zwXZvxa','nJeWnZf2r1PUrvy','CMvXDwu','ANnVBG','C3vIBwK','z2vszxm','5AsA5zU+6l6t5ywL','zxnZu2m','x2LUChu','CNrZu3q','r0vu','zxjYB3i','yNvN','C2rR','y2HHDa','zw1HAwW','DwvZDfm','BgvK','z2v0qwm','yY9Mzwu','5QIH5z6lieLe','6z+Z6Akr55cg6kEJ','y2nLC3m','ChjVDMK','zMv0y2G','BMfTzq','C2vvCMW','5AsA5zU+55sF5OIq','zw1H','BMLUzW','x2fUywW','DgfPBfi','Bwf4sw0','yxr0ywm','A0nHBMm','CIb1CMW','CgvYzM8','revmx1q','CMvMAw4','Av9Nzw4','C3nPBMC','rwL0Agu','zwXZu3u','z2v0uxu','Dw5RBM8','zcbku08','5lU75yQH54Q25Ocb5P6A','yxv0AeW','B3rH','zxzLBfm','DMfSAwq','BNrZ','DfnJAgu','Aw1Hz2u','zgf0zwq','zwzYzxm','otOXnG','yxrLC1i','u2nOzw0','yxrLzc0','yxjYyxK','5P6e5yYw6l6t5yE6','CLnJAgu','A1n0yxq','CMf0Aw8','C2vSzG','yMfZzty','BMrWB2K','zMvLzgi','ywLqCM8','ywLnzwq','AwXLza','y2f0Aw8','ywnRlW','zgvMAw4','C1vWzge','CY91Cgq','zMfPBgu','Cgf0Aa','A1jLC3u','5PIV5zcM5PsV5OYb5AsA','Bw9KzwW','zwXty2G','zxHJAge','x2DLBMu','6zsz6k+V56cb','C3rHBMq','5PYa5AsN5lIk5lIl5PAh','l2nHBMm','C2SV','CM9Y','Cgf5Bg8','6kEg6Akr55cg6kEJ','y2HTzw4','54Mh5PwW6yEp','5y+c5PwW5A6A5lMj','yxv0Ac8','BM9UBMu','qxv4AwW','AwvUDa','5y+c5PwW54M55OcN','BNqTDhK','rxjYB3i','5BEL5yw36lcd55sO','Dg9mB3C','ywLwAwq','DMLW','qxv0AeG','B25Zzvm','55sF5OIq6kEg6Akr5A69','zxjHDgK','DgfPBfa','5y+c5PwWigTL','AgvHzgu','zgv0ywK','y2fSBa','z2f0Axy','5PAh55sF5zU+','zw9jBNa','zwXtDwm','AwfYEum','CgXVywq','ywKVDge','C1nJAgu','zef0Dge','zcbMywK','u2fHu04','zgf0Aw8','B3b0Aw8','5PIV5zcM5OIq5yQF','Bhnszxm','DMLKzw8','5lU75yQH6l+B5BQM','q29Kzq','mtuXnJm3nvnlCwLVta','A0rHDge','ywnRl2W','5PAh5QgJ5zYW5z2a','AhjVDwC','Dw5PB24','A0nYzwe','y2vZC1m','CMSGCMu','yxrPB24','mtOX','AwfYEuK','zgf0zxq','BhruExa','DxjS','CMvMCMu','C3rYAw4','Aw5N','mti5mKL3v3b5rq','DgLLC08','5zU+5yop6lsO6yEp','B3jszxm','quDt','C1rLEhq','zMvHDhu','AxnbCNi','ywDL','A0vYCM8','5y+n5zcr5O+q56s66k+n','ue9tva','y2HLBwe','6AAw5BIN5zU+54Mh','ywnR','qMvHCMu','BfrHC2S','BgL0zxi','DgvKuMu','5PIV5zcM5B+f5AgR','AwfYEve','Bw9Uu2m','5QIH5z6l5O+p6l+W','BguVDxa','55sF5OIq5zU+54Mh5A69','t1vuufu','yMfZzvu','ywLfBMq','yxvKAw8','5lU75yQH57Ut5P6C57g7','AwfjBNa','yxnLnJq','BgLLBNq','6l+u5zUE5PwW5O2U','5l6B5BQu5zwg5zcn56EW','DxnLCG','5O+q56s66k+n','5y+V6ycj5yc8','Aw5Mzxi','quDFtee','DxrZu2m','yxrLu2m','zwXdyxa','6zsz6k+V5l+H5OgV','AxzL','55sF5OIq5zU+54Mh5PwW','B2fM','yxv4AwW','y29UDhi','yM9VBgu','DwnJzxm','igLZihi','CgfYC2u','y2fUy2u','ywLdAge','w3nKA10','B3bLBMW','DgLLC0K','su5qvvq','ywfZ','qxv0Aem','mte1otG4ogrJCM1Xyq','vf9lrvK','uMvXDwu','zgvZy3i','zgLV','zw50CMK','yNvPBgq','6l6t5ywL5y+c5PwW','Cg9UC2u','ywnRl3u','BNb1Dfm','ywnRrgu','6BUy6k6K5yc8','AwfYEq','DxnLCLm','zwXZuMu','zwXZuge','zNvUy3q','rMvLzgi','CNrZtwe','5y+w5RAi57Ut5P6C54Q2','5y+c5PwW5A2x5Q61','6AkD5Asw5y+c5PwW','C2vty2G','Bg9Hza','C2fMzva','sYdPGilPHy3LMAG','yM1PDfi','yxv0Aeu','Bwv0Ag8','zw1ty2G','Bwf4','DgvKrge','zxf1Axi','AwjL','yxv0Aa','y2HHDc8','mZKWExzRzunN','C3qGC2m','C3zPCa','zxnWB24','5zco5PU05PAW5PE26zE0','zxj0Eq','qwLdBgK','yvnJAgu','zw9szxe','BxbSyxq','5Q2L6l+B5yc8','B2rLBhm','5lU75yQH54Q25Ocb','ywLuyxm','Bg9Hzfm','x2vKAxq','BNvSBgK','yxv0Afi','Bg9NB3u','y29Kzq','y29UDgu','Aw1L','qxreyxq','CNvUBMK','5QIH5z6l5A625PEpia','z2v0qMe','qxv0Ag8','BwLU','6ygU572P5zU+','zxn0igu','5l6B5BQu5zwg5yIx6kgO','Aw9U','ihzHBgK','Dgv4Da','ywnRq2W','C2HPCeW','DhvZu2m','Av9PBNa','AwfYEs8','6l6t5ywL6io95yQB','5lIj57g75QIH5z6l5lIT','AevYCM8','zgvSu2m','yY9HAs8','ndOZ','A1n1y2m','B2jQzwm','zwXMuMu','ywKVzMK','C3rHDhu','zxf1zxm','mti0mJbbywXuteC','5AQs5l2tifvs','BMzLCLi','zxjdyxm','tw9KzwW','BwvZC2e','z2vpDxq','BhrP','l2fWAs8','zw50','BMDL','zwXMu2m','6l6t5yE66io95yQB','ywDLCW','CMvJB3i','DM9Pza','AfjLC3a','C2vSzwm','DMvKAw8','Bg9NAw4','yxrLC1m','C2HuB2S','ywLfCNi','5y+c5PwW57g75z6l','zgvYCW','l21Vzgu','teLuwv8','BNnLigK','CMvZCg8','5PIV5zcM5yYf5zcR6z+Z','5l6B5BQu5zwgieK','yxrLC1a','ywnRtgK','BNnLu2m','5PIV5zcM5PsV5OYb6ygU','Dgfty2G','DgvUyxm','ExnPCW','vgvTCgW','Dg9VBf8','AgvTysa','yM1PDeu','zMLSzq','Aw50','5Bgv56s65zcn56EW','55sF5OIq5zU+54Mh6lsO','ywnRu3u','zxn0u2m','zw9pDxq','EgnOyw4','CNjVCLm','BgLZDa','Dw5Yzwe','ywLjBwe','zezPBgu','ywnRu2e','5AQs5l2t57g75z6l','yxjZzq','5QIH5z6l5zcn56EW','ywnRsxq','5RAi6icx56EV5yIg','5QIH5z6l5yIx6kgO','BNnLvhK','B2TLBG','yM9KEq','zwXszxe','DxnLCI8','CNrZqxu','CKzPzwW','5zU+54Mh57Yw6l6r','zwfKzxi','nJy0mJzbuKD4D04','CMvZB2W','5PIV5zcM5PsV5OYb5y+c','ywn0','ChvIBgK','qxrszxm','5A6y572r5zYW5z2a','zMvYzw4','C3rty2G','BMfS','CMvHC28','BfnJAgu','DgfZAW','5lU75yQHieLe','Cg9PBNq','zvbYB3a','Ag1LBNq','DgvKqxq','zfnJAgu','5PU05PAW5PE26zE0','55Qe5PYa5PAW5PU05PAW','55sF5OIq6kEg6Akr5PE2','ywjPBgK','zwrLza','zM9Yrwe','mty6oq','AgvTyq','B3rOzxi','CM1HBMm','qKvmuW','mLPsqwLuCW','Dg9tDhi','z2LMEq','AfjLCxu','x211Bhq','C3vWCg8','6igk5AsP5QIH5z6l5PYa','y2HHDe0','y2vZC1q','Chv0u2m','AfvZzxi','6l6t5ywL5zU+54Mh5yIx','5PYa5AsN6l6t5ywL5zU+','572r5PcC57sI','tMv0D28','z2vjBNa','ywnRrw4','qvbbqKK','CYbUB3q','yxjK','zgvYvgu','quLFtu8','57Ut5P6C5zYW5z2a5yIx','5PIV5zcM5PsV5OYb6z+Z','zw51Bq','BIbMywK','DgLLC1m','BNnL','vxbSB2e','C3rqyxK','C3rYDwm','ywLnB2q','zwXqyxi','5QIH5z6l5Qch562+','C3qGzMe','DMLKzxi'];_0x3445=function(){return _0x4913f6;};return _0x3445();}_0x1a5621[_0xc0113b(0x39a)+'d']='POST',_0x1a5621[_0xc0113b(0x2f6)]='/api/'+'ai/ve'+_0xc0113b(0x381),_0x1a5621[_0xc0113b(0x2aa)+_0xc0113b(0x237)+_0xc0113b(0x2c4)]=aiVideoRequestSchema,_0x1a5621['respo'+_0xc0113b(0x209)+_0xc0113b(0x249)]=aiTaskCreatedResponseSchema;var _0x16ed16={};_0x16ed16[_0xc0113b(0x39a)+'d']=_0xc0113b(0x2b2),_0x16ed16[_0xc0113b(0x2f6)]=_0xc0113b(0x1f0)+_0xc0113b(0x233)+'c/ai/'+_0xc0113b(0x2dd)+_0xc0113b(0x201)+'ls',_0x16ed16[_0xc0113b(0x2aa)+_0xc0113b(0x237)+_0xc0113b(0x2c4)]=aiModelsRequestSchema,_0x16ed16['respo'+'nseSc'+_0xc0113b(0x249)]=aiModelsResponseSchema;var _0x263127={};_0x263127[_0xc0113b(0x39a)+'d']='GET',_0x263127[_0xc0113b(0x2f6)]=_0xc0113b(0x1f0)+'publi'+'c/ai/'+_0xc0113b(0x1fa)+'/mode'+'ls',_0x263127[_0xc0113b(0x2aa)+_0xc0113b(0x237)+_0xc0113b(0x2c4)]=aiModelsRequestSchema,_0x263127[_0xc0113b(0x204)+_0xc0113b(0x209)+_0xc0113b(0x249)]=aiModelsResponseSchema;var _0x485347={};_0x485347[_0xc0113b(0x39a)+'d']=_0xc0113b(0x2b2),_0x485347[_0xc0113b(0x2f6)]=_0xc0113b(0x1f0)+_0xc0113b(0x233)+_0xc0113b(0x1e0)+_0xc0113b(0x3a1)+_0xc0113b(0x2f9)+'s',_0x485347[_0xc0113b(0x2aa)+_0xc0113b(0x237)+_0xc0113b(0x2c4)]=aiModelsRequestSchema,_0x485347[_0xc0113b(0x204)+_0xc0113b(0x209)+_0xc0113b(0x249)]=aiChatModelsResponseSchema;function _0x4aa9(_0x23d790,_0x28ddd9){_0x23d790=_0x23d790-(0xe75*-0x1+-0xa3*0x25+0x219*0x13);var _0x4a3a9a=_0x3445();var _0x5bf51b=_0x4a3a9a[_0x23d790];if(_0x4aa9['fNjwdz']===undefined){var _0x347965=function(_0x2dfd05){var _0x28cc94='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var _0xf3194f='',_0x1846a1='';for(var _0x53d44b=0x22b3+0x2104+-0x43b7,_0x1ce10d,_0x5b447d,_0x521f8a=-0x1b32+-0x17c*-0x4+0x6*0x38b;_0x5b447d=_0x2dfd05['charAt'](_0x521f8a++);~_0x5b447d&&(_0x1ce10d=_0x53d44b%(-0x24*-0xb+-0x19*-0xb+0x1d*-0x17)?_0x1ce10d*(0x1a69+-0x1*0xa93+0x532*-0x3)+_0x5b447d:_0x5b447d,_0x53d44b++%(-0x2383+-0x1*0x6ab+0x2a32))?_0xf3194f+=String['fromCharCode'](0x103a+-0x42*0x3d+0x7f&_0x1ce10d>>(-(-0x70*0x3b+-0xb5d+-0x13*-0x1f5)*_0x53d44b&0x13*0x76+0xd49+0x3*-0x757)):0x1dd8+-0xa3c+-0x139c){_0x5b447d=_0x28cc94['indexOf'](_0x5b447d);}for(var _0x1d6dd3=-0x1029+-0x2*0xf48+0x1b*0x1bb,_0x5d2b6e=_0xf3194f['length'];_0x1d6dd3<_0x5d2b6e;_0x1d6dd3++){_0x1846a1+='%'+('00'+_0xf3194f['charCodeAt'](_0x1d6dd3)['toString'](0x43*-0x6b+-0x2154+0x3d65))['slice'](-(0x27a*0x1+-0x1408+-0x10*-0x119));}return decodeURIComponent(_0x1846a1);};_0x4aa9['laoHui']=_0x347965,_0x4aa9['umETQc']={},_0x4aa9['fNjwdz']=!![];}var _0x881632=_0x4a3a9a[-0xa25*0x2+-0x7c8+0x1c12],_0x593627=_0x23d790+_0x881632,_0x3417dc=_0x4aa9['umETQc'][_0x593627];return!_0x3417dc?(_0x5bf51b=_0x4aa9['laoHui'](_0x5bf51b),_0x4aa9['umETQc'][_0x593627]=_0x5bf51b):_0x5bf51b=_0x3417dc,_0x5bf51b;}var _0x45511f={};_0x45511f[_0xc0113b(0x39a)+'d']=_0xc0113b(0x2b2),_0x45511f[_0xc0113b(0x2f6)]='/api/'+_0xc0113b(0x233)+_0xc0113b(0x1e0)+_0xc0113b(0x2f9)+_0xc0113b(0x2f4)+_0xc0113b(0x2e3)+'at',_0x45511f[_0xc0113b(0x2aa)+_0xc0113b(0x237)+_0xc0113b(0x2c4)]=aiModelsRequestSchema,_0x45511f[_0xc0113b(0x204)+_0xc0113b(0x209)+_0xc0113b(0x249)]=aiModelsUpdatedAtResponseSchema;var _0x2ba9b8={};_0x2ba9b8['metho'+'d']=_0xc0113b(0x2b2),_0x2ba9b8[_0xc0113b(0x2f6)]=_0xc0113b(0x1f0)+'publi'+_0xc0113b(0x1e0)+_0xc0113b(0x2bf)+_0xc0113b(0x200),_0x2ba9b8[_0xc0113b(0x2aa)+_0xc0113b(0x237)+'ema']=aiProviderTemplatesRequestSchema,_0x2ba9b8[_0xc0113b(0x204)+'nseSc'+_0xc0113b(0x249)]=aiProviderTemplatesResponseSchema;var aiEndpoints={'image':new Endpoint(_0x53c7c8),'video':new Endpoint(_0x1a5621),'task':_0x4a0fa8=>new Endpoint({'method':_0xc0113b(0x2b2),'path':_0xc0113b(0x1f0)+_0xc0113b(0x322)+_0xc0113b(0x301)+_0x4a0fa8,'requestSchema':aiTaskRequestSchema,'responseSchema':aiTaskResponseSchema}),'cancelTask':_0xba2b25=>new Endpoint({'method':_0xc0113b(0x34b),'path':'/api/'+_0xc0113b(0x322)+'sk/'+_0xba2b25+(_0xc0113b(0x300)+'el'),'requestSchema':aiTaskCancelRequestSchema,'responseSchema':aiTaskCancelResponseSchema}),'imageModels':new Endpoint(_0x16ed16),'videoModels':new Endpoint(_0x263127),'chatModels':new Endpoint(_0x485347),'modelsUpdatedAt':new Endpoint(_0x45511f),'providerTemplates':new Endpoint(_0x2ba9b8)},auth_exports={},_0x1b699b={};_0x1b699b[_0xc0113b(0x37c)+_0xc0113b(0x360)]=()=>AuthClient,_0x1b699b['authE'+_0xc0113b(0x2eb)+_0xc0113b(0x2db)]=()=>authEndpoints,_0x1b699b[_0xc0113b(0x399)+_0xc0113b(0x219)+_0xc0113b(0x287)+_0xc0113b(0x2b8)+'chema']=()=>authExchangeRequestSchema,_0x1b699b[_0xc0113b(0x399)+_0xc0113b(0x219)+_0xc0113b(0x2ad)+_0xc0113b(0x385)+_0xc0113b(0x2e2)+'a']=()=>authExchangeResponseSchema,_0x1b699b[_0xc0113b(0x2d7)+'ogout'+_0xc0113b(0x37f)+'stSch'+_0xc0113b(0x2c4)]=()=>authLogoutRequestSchema,_0x1b699b[_0xc0113b(0x2d7)+'ogout'+_0xc0113b(0x285)+_0xc0113b(0x209)+_0xc0113b(0x249)]=()=>authLogoutResponseSchema,_0x1b699b['authR'+_0xc0113b(0x2df)+_0xc0113b(0x1de)+_0xc0113b(0x2e6)+'ma']=()=>authRefreshErrorSchema,_0x1b699b[_0xc0113b(0x3b3)+'efres'+_0xc0113b(0x250)+'estSc'+'hema']=()=>authRefreshRequestSchema,_0x1b699b[_0xc0113b(0x3b3)+_0xc0113b(0x2df)+_0xc0113b(0x1f8)+_0xc0113b(0x314)+_0xc0113b(0x34c)]=()=>authRefreshResponseSchema,_0x1b699b[_0xc0113b(0x3b3)+_0xc0113b(0x2df)+'hSucc'+_0xc0113b(0x2af)+_0xc0113b(0x249)]=()=>authRefreshSuccessSchema,_0x1b699b[_0xc0113b(0x3b3)+_0xc0113b(0x2df)+_0xc0113b(0x257)+_0xc0113b(0x2e2)+'a']=()=>authRefreshUserSchema,__export(auth_exports,_0x1b699b);var AuthClient=class{[_0xc0113b(0x2b5)];constructor(_0x4c5200){this['sdk']=_0x4c5200;}async[_0xc0113b(0x2fb)+'nge'](_0x5ec876){var _0x140f83=_0xc0113b,_0x2b4a07={};return _0x2b4a07[_0x140f83(0x1fb)+_0x140f83(0x32d)]=_0x5ec876,this[_0x140f83(0x2b5)][_0x140f83(0x2aa)+'st'](this['sdk'][_0x140f83(0x370)+_0x140f83(0x232)][_0x140f83(0x3a0)]['excha'+_0x140f83(0x1f2)],{'baseUrl':this['sdk']['getBa'+_0x140f83(0x2c2)](),'body':_0x2b4a07});}async[_0xc0113b(0x33d)+'sh'](_0x33a93f){var _0x30b840=_0xc0113b,_0x42e8ad={};return _0x42e8ad[_0x30b840(0x33d)+_0x30b840(0x1fd)+'en']=_0x33a93f,this[_0x30b840(0x2b5)][_0x30b840(0x2aa)+'st'](this[_0x30b840(0x2b5)]['contr'+'act'][_0x30b840(0x3a0)][_0x30b840(0x33d)+'sh'],{'baseUrl':this[_0x30b840(0x2b5)][_0x30b840(0x3bb)+_0x30b840(0x2c2)](),'body':_0x42e8ad});}async[_0xc0113b(0x3b4)+'t'](_0x3375ae){var _0x2fd875=_0xc0113b,_0x5e52b6={};return _0x5e52b6[_0x2fd875(0x33d)+_0x2fd875(0x1fd)+'en']=_0x3375ae,this[_0x2fd875(0x2b5)][_0x2fd875(0x2aa)+'st'](this[_0x2fd875(0x2b5)][_0x2fd875(0x370)+_0x2fd875(0x232)][_0x2fd875(0x3a0)][_0x2fd875(0x3b4)+'t'],{'baseUrl':this[_0x2fd875(0x2b5)][_0x2fd875(0x3bb)+_0x2fd875(0x2c2)](),'body':_0x5e52b6});}},authRefreshRequestSchema=z[_0xc0113b(0x1e3)+'t']({'refreshToken':z[_0xc0113b(0x33e)+'g']()['min'](0x2445+0x1*0x3ec+-0x2830)}),authExchangeRequestSchema=z[_0xc0113b(0x1e3)+'t']({'loginCode':z[_0xc0113b(0x33e)+'g']()[_0xc0113b(0x3bd)](-0x5a5+-0x20*0xd5+0x1cb*0x12)}),authRefreshUserSchema=z[_0xc0113b(0x1e3)+'t']({'name':z['strin'+'g']()['optio'+_0xc0113b(0x238)](),'email':z[_0xc0113b(0x33e)+'g']()[_0xc0113b(0x328)+_0xc0113b(0x238)](),'avatarUrl':z[_0xc0113b(0x33e)+'g']()[_0xc0113b(0x328)+'nal']()}),authRefreshSuccessSchema=z[_0xc0113b(0x1e3)+'t']({'accessToken':z[_0xc0113b(0x33e)+'g'](),'refreshToken':z['strin'+'g'](),'user':authRefreshUserSchema}),authRefreshErrorSchema=z[_0xc0113b(0x1e3)+'t']({'message':z[_0xc0113b(0x33e)+'g']()}),authExchangeResponseSchema=authRefreshSuccessSchema,authLogoutRequestSchema=z[_0xc0113b(0x1e3)+'t']({'refreshToken':z['strin'+'g']()[_0xc0113b(0x3bd)](-0xef6+0x2544+-0x207*0xb)}),authLogoutResponseSchema=z[_0xc0113b(0x1e3)+'t']({'success':z['boole'+'an']()}),authRefreshResponseSchema=z[_0xc0113b(0x333)]([authRefreshSuccessSchema,authRefreshErrorSchema]),_0x336783={};_0x336783[_0xc0113b(0x39a)+'d']=_0xc0113b(0x34b),_0x336783[_0xc0113b(0x2f6)]='/api/'+'auth/'+_0xc0113b(0x2fb)+_0xc0113b(0x1f2),_0x336783[_0xc0113b(0x2aa)+_0xc0113b(0x237)+_0xc0113b(0x2c4)]=authExchangeRequestSchema,_0x336783[_0xc0113b(0x204)+_0xc0113b(0x209)+_0xc0113b(0x249)]=authExchangeResponseSchema;var _0x4d1614={};_0x4d1614[_0xc0113b(0x39a)+'d']=_0xc0113b(0x34b),_0x4d1614[_0xc0113b(0x2f6)]=_0xc0113b(0x1f0)+_0xc0113b(0x308)+_0xc0113b(0x33d)+'sh',_0x4d1614[_0xc0113b(0x2aa)+'stSch'+'ema']=authRefreshRequestSchema,_0x4d1614[_0xc0113b(0x204)+_0xc0113b(0x209)+_0xc0113b(0x249)]=authRefreshResponseSchema;var _0x5d4cca={};_0x5d4cca[_0xc0113b(0x39a)+'d']=_0xc0113b(0x34b),_0x5d4cca[_0xc0113b(0x2f6)]='/api/'+_0xc0113b(0x308)+_0xc0113b(0x3b4)+'t',_0x5d4cca[_0xc0113b(0x2aa)+_0xc0113b(0x237)+_0xc0113b(0x2c4)]=authLogoutRequestSchema,_0x5d4cca[_0xc0113b(0x204)+_0xc0113b(0x209)+_0xc0113b(0x249)]=authLogoutResponseSchema;var authEndpoints={'exchange':new Endpoint(_0x336783),'refresh':new Endpoint(_0x4d1614),'logout':new Endpoint(_0x5d4cca)},auxiliary_exports={},_0x220e2c={};_0x220e2c[_0xc0113b(0x30a)+_0xc0113b(0x320)+_0xc0113b(0x360)]=()=>AuxiliaryClient,_0x220e2c[_0xc0113b(0x36f)+_0xc0113b(0x29a)+_0xc0113b(0x2eb)+_0xc0113b(0x2db)]=()=>auxiliaryEndpoints,_0x220e2c[_0xc0113b(0x36f)+'iaryI'+_0xc0113b(0x1ea)+_0xc0113b(0x1e7)+_0xc0113b(0x2dc)+'ma']=()=>auxiliaryInferRequestSchema,_0x220e2c['auxil'+_0xc0113b(0x339)+_0xc0113b(0x1ea)+_0xc0113b(0x3a5)+_0xc0113b(0x394)+_0xc0113b(0x2c4)]=()=>auxiliaryInferResponseSchema,_0x220e2c[_0xc0113b(0x36f)+_0xc0113b(0x354)+'uotaR'+'espon'+_0xc0113b(0x394)+'ema']=()=>auxiliaryQuotaResponseSchema,__export(auxiliary_exports,_0x220e2c);var AuxiliaryClient=class{[_0xc0113b(0x2b5)];constructor(_0x3c8c32){var _0x1063f0=_0xc0113b;this[_0x1063f0(0x2b5)]=_0x3c8c32;}async[_0xc0113b(0x366)](_0x3efa41){var _0x3eb0e9=_0xc0113b;const _0x155773=await this[_0x3eb0e9(0x2b5)][_0x3eb0e9(0x383)+_0x3eb0e9(0x313)+_0x3eb0e9(0x22e)]();return this[_0x3eb0e9(0x2b5)][_0x3eb0e9(0x2aa)+'st'](this[_0x3eb0e9(0x2b5)][_0x3eb0e9(0x370)+_0x3eb0e9(0x232)]['auxil'+_0x3eb0e9(0x38a)][_0x3eb0e9(0x366)],{'baseUrl':this[_0x3eb0e9(0x2b5)][_0x3eb0e9(0x3bb)+'seUrl'](),'headers':_0x155773,'body':_0x3efa41});}async[_0xc0113b(0x2d3)+_0xc0113b(0x2d8)](){var _0x9e7418=_0xc0113b;const _0x3f070c=await this[_0x9e7418(0x2b5)][_0x9e7418(0x383)+_0x9e7418(0x313)+'eader']();return this[_0x9e7418(0x2b5)][_0x9e7418(0x2aa)+'st'](this[_0x9e7418(0x2b5)][_0x9e7418(0x370)+'act'][_0x9e7418(0x36f)+'iary'][_0x9e7418(0x2d3)+_0x9e7418(0x2d8)],{'baseUrl':this['sdk'][_0x9e7418(0x3bb)+_0x9e7418(0x2c2)](),'headers':_0x3f070c,'body':{}});}},auxiliaryInferRequestSchema=z[_0xc0113b(0x1e3)+'t']({'capabilityKey':z[_0xc0113b(0x33e)+'g'](),'systemPrompt':z[_0xc0113b(0x33e)+'g'](),'context':z[_0xc0113b(0x33e)+'g']()['max'](-0xe*0x143+-0xdfc1+-0x17*-0x12fd),'outputMode':z[_0xc0113b(0x265)]([_0xc0113b(0x26b)+'tured',_0xc0113b(0x3c3)]),'schema':z[_0xc0113b(0x1f6)+'d'](z['strin'+'g'](),z[_0xc0113b(0x2d4)+'wn']())[_0xc0113b(0x328)+_0xc0113b(0x238)]()}),quotaSchema=z[_0xc0113b(0x1e3)+'t']({'used':z[_0xc0113b(0x2a4)+'r'](),'limit':z[_0xc0113b(0x2a4)+'r'](),'remaining':z['numbe'+'r'](),'resetsAt':z[_0xc0113b(0x33e)+'g']()}),usageSchema=z['objec'+'t']({'inputTokens':z[_0xc0113b(0x2a4)+'r'](),'outputTokens':z[_0xc0113b(0x2a4)+'r']()}),auxiliaryInferResponseSchema=z[_0xc0113b(0x333)]([z['objec'+'t']({'ok':z[_0xc0113b(0x351)+'al'](!![]),'result':z[_0xc0113b(0x2d4)+'wn'](),'usage':usageSchema,'quota':quotaSchema}),z[_0xc0113b(0x1e3)+'t']({'ok':z['liter'+'al'](![]),'message':z[_0xc0113b(0x33e)+'g'](),'code':z['strin'+'g']()['optio'+'nal']()})]),_0x1c77df={};_0x1c77df[_0xc0113b(0x294)]=quotaSchema;var auxiliaryQuotaResponseSchema=z[_0xc0113b(0x1e3)+'t'](_0x1c77df),_0x38818e={};_0x38818e['metho'+'d']='POST',_0x38818e[_0xc0113b(0x2f6)]='/api/'+_0xc0113b(0x36f)+'iary/'+_0xc0113b(0x366),_0x38818e[_0xc0113b(0x2aa)+_0xc0113b(0x237)+_0xc0113b(0x2c4)]=auxiliaryInferRequestSchema,_0x38818e['respo'+'nseSc'+_0xc0113b(0x249)]=auxiliaryInferResponseSchema;var auxiliaryEndpoints={'infer':new Endpoint(_0x38818e),'getQuota':new Endpoint({'method':'POST','path':_0xc0113b(0x1f0)+_0xc0113b(0x36f)+_0xc0113b(0x1db)+_0xc0113b(0x294),'requestSchema':z['objec'+'t']({}),'responseSchema':auxiliaryQuotaResponseSchema})},feedback_exports={},_0xa0ec5e={};_0xa0ec5e[_0xc0113b(0x38f)+_0xc0113b(0x1d7)+_0xc0113b(0x30b)]=()=>FeedbackClient,_0xa0ec5e[_0xc0113b(0x2ec)+_0xc0113b(0x388)+_0xc0113b(0x317)+'ayloa'+_0xc0113b(0x241)+'ma']=()=>feedbackDetailPayloadSchema,_0xa0ec5e[_0xc0113b(0x2ec)+_0xc0113b(0x388)+_0xc0113b(0x2c7)+_0xc0113b(0x1e7)+'tSche'+'ma']=()=>feedbackDetailRequestSchema,_0xa0ec5e[_0xc0113b(0x2ec)+_0xc0113b(0x388)+_0xc0113b(0x2c7)+_0xc0113b(0x3a5)+'seSch'+_0xc0113b(0x2c4)]=()=>feedbackDetailResponseSchema,_0xa0ec5e[_0xc0113b(0x2ec)+_0xc0113b(0x25d)+_0xc0113b(0x283)+'ts']=()=>feedbackEndpoints,_0xa0ec5e[_0xc0113b(0x2ec)+_0xc0113b(0x223)+_0xc0113b(0x39b)+'ema']=()=>feedbackItemSchema,_0xa0ec5e[_0xc0113b(0x2ec)+_0xc0113b(0x208)+_0xc0113b(0x26a)+'loadS'+_0xc0113b(0x34c)]=()=>feedbackListPayloadSchema,_0xa0ec5e[_0xc0113b(0x2ec)+_0xc0113b(0x208)+'stReq'+_0xc0113b(0x2b8)+'chema']=()=>feedbackListRequestSchema,_0xa0ec5e[_0xc0113b(0x2ec)+_0xc0113b(0x208)+'stRes'+_0xc0113b(0x385)+_0xc0113b(0x2e2)+'a']=()=>feedbackListResponseSchema,_0xa0ec5e[_0xc0113b(0x2ec)+_0xc0113b(0x21f)+'asSta'+_0xc0113b(0x1d9)+'hema']=()=>feedbackSaasStatusSchema,_0xa0ec5e[_0xc0113b(0x2ec)+_0xc0113b(0x2a6)+'urceS'+'chema']=()=>feedbackSourceSchema,_0xa0ec5e[_0xc0113b(0x2ec)+_0xc0113b(0x216)+_0xc0113b(0x211)+_0xc0113b(0x21a)+_0xc0113b(0x34c)]=()=>feedbackSubmitErrorSchema,_0xa0ec5e['feedb'+'ackSu'+_0xc0113b(0x398)+_0xc0113b(0x1e7)+_0xc0113b(0x2dc)+'ma']=()=>feedbackSubmitRequestSchema,_0xa0ec5e[_0xc0113b(0x2ec)+_0xc0113b(0x216)+_0xc0113b(0x398)+_0xc0113b(0x3a5)+_0xc0113b(0x394)+_0xc0113b(0x2c4)]=()=>feedbackSubmitResponseSchema,_0xa0ec5e['feedb'+'ackTy'+'peSch'+_0xc0113b(0x2c4)]=()=>feedbackTypeSchema,__export(feedback_exports,_0xa0ec5e);var FeedbackClient=class{[_0xc0113b(0x2b5)];constructor(_0x83f9aa){var _0x2305a6=_0xc0113b;this[_0x2305a6(0x2b5)]=_0x83f9aa;}async[_0xc0113b(0x2ac)+'t'](_0x4d126b){var _0x434f92=_0xc0113b;const _0x3fe28c=await this[_0x434f92(0x2b5)][_0x434f92(0x383)+_0x434f92(0x313)+_0x434f92(0x22e)]();return this[_0x434f92(0x2b5)]['reque'+'st'](this[_0x434f92(0x2b5)][_0x434f92(0x370)+_0x434f92(0x232)][_0x434f92(0x2ec)+'ack'][_0x434f92(0x2ac)+'t'],{'baseUrl':this[_0x434f92(0x2b5)][_0x434f92(0x3bb)+'seUrl'](),'headers':_0x3fe28c,'body':_0x4d126b});}async[_0xc0113b(0x278)+_0xc0113b(0x324)+_0xc0113b(0x305)+'t'](_0xe1dfd4,_0x2dd21c){var _0x4f5bf7=_0xc0113b;const _0x2b6be7=new FormData();_0x2b6be7['appen'+'d'](_0x4f5bf7(0x212),_0xe1dfd4,_0x2dd21c??(_0xe1dfd4 instanceof File?_0xe1dfd4[_0x4f5bf7(0x2c1)]:_0x4f5bf7(0x2c9)+_0x4f5bf7(0x23f)));const _0x24e190=await this[_0x4f5bf7(0x2b5)][_0x4f5bf7(0x383)+_0x4f5bf7(0x313)+_0x4f5bf7(0x22e)](),_0x305049=this[_0x4f5bf7(0x2b5)][_0x4f5bf7(0x3bb)+_0x4f5bf7(0x2c2)]()+('/api/'+_0x4f5bf7(0x2ec)+_0x4f5bf7(0x386)+_0x4f5bf7(0x321));var _0x1579c8={};_0x1579c8[_0x4f5bf7(0x39a)+'d']=_0x4f5bf7(0x34b),_0x1579c8[_0x4f5bf7(0x319)+'rs']=_0x24e190,_0x1579c8[_0x4f5bf7(0x228)]=_0x2b6be7;const _0x481928=await fetch(_0x305049,_0x1579c8);if(!_0x481928['ok']){const _0x4b0041=await _0x481928['json']()[_0x4f5bf7(0x28c)](()=>({'message':_0x4f5bf7(0x269)+_0x4f5bf7(0x325)+_0x4f5bf7(0x2b9)}));throw new Error(_0x4b0041[_0x4f5bf7(0x1ed)+'ge']??_0x4f5bf7(0x269)+_0x4f5bf7(0x325)+_0x4f5bf7(0x2b9));}return _0x481928[_0x4f5bf7(0x2ab)]();}async[_0xc0113b(0x21b)](_0xfd9639){var _0x23eac8=_0xc0113b;const _0xa15f52=await this[_0x23eac8(0x2b5)][_0x23eac8(0x383)+'AuthH'+_0x23eac8(0x22e)]();return this[_0x23eac8(0x2b5)][_0x23eac8(0x2aa)+'st'](this['sdk']['contr'+_0x23eac8(0x232)]['feedb'+_0x23eac8(0x34e)][_0x23eac8(0x21b)],{'baseUrl':this[_0x23eac8(0x2b5)]['getBa'+_0x23eac8(0x2c2)](),'headers':_0xa15f52,'body':_0xfd9639??{}});}async[_0xc0113b(0x31a)+'l'](_0x7d0a70){var _0xd57eb1=_0xc0113b;const _0x17053e=await this[_0xd57eb1(0x2b5)][_0xd57eb1(0x383)+_0xd57eb1(0x313)+_0xd57eb1(0x22e)]();return this[_0xd57eb1(0x2b5)]['reque'+'st'](this[_0xd57eb1(0x2b5)][_0xd57eb1(0x370)+'act'][_0xd57eb1(0x2ec)+_0xd57eb1(0x34e)][_0xd57eb1(0x31a)+'l'](_0x7d0a70),{'baseUrl':this[_0xd57eb1(0x2b5)][_0xd57eb1(0x3bb)+_0xd57eb1(0x2c2)](),'headers':_0x17053e,'body':void(-0x463*-0x7+-0x17e5+-0x2*0x368)});}},feedbackSourceSchema=z[_0xc0113b(0x265)]([_0xc0113b(0x20c),_0xc0113b(0x378)+_0xc0113b(0x36e),_0xc0113b(0x378)+_0xc0113b(0x277)+_0xc0113b(0x37b)]),feedbackTypeSchema=z[_0xc0113b(0x265)](['ui',_0xc0113b(0x2cc)+_0xc0113b(0x24b)+'e',_0xc0113b(0x2b4),_0xc0113b(0x346)+'re',_0xc0113b(0x24a)]),feedbackSaasStatusSchema=z[_0xc0113b(0x265)]([_0xc0113b(0x21c)+'d','read',_0xc0113b(0x230)+'ved','ignor'+'ed']),feedbackSubmitRequestSchema=z[_0xc0113b(0x1e3)+'t']({'source':feedbackSourceSchema[_0xc0113b(0x328)+_0xc0113b(0x238)](),'type':feedbackTypeSchema,'content':z[_0xc0113b(0x33e)+'g']()[_0xc0113b(0x272)]()['min'](-0x1813*-0x1+-0xc33*0x3+0xc87*0x1),'context':z['recor'+'d'](z[_0xc0113b(0x33e)+'g'](),z[_0xc0113b(0x2d4)+'wn']()),'email':z[_0xc0113b(0x33e)+'g']()[_0xc0113b(0x272)]()[_0xc0113b(0x2b7)]()['optio'+_0xc0113b(0x238)]()}),feedbackSubmitErrorSchema=z[_0xc0113b(0x1e3)+'t']({'message':z['strin'+'g']()}),feedbackSubmitResponseSchema=z[_0xc0113b(0x333)]([z[_0xc0113b(0x1f7)](),feedbackSubmitErrorSchema]),feedbackListRequestSchema=z[_0xc0113b(0x1e3)+'t']({'page':z[_0xc0113b(0x2a4)+'r']()[_0xc0113b(0x213)]()[_0xc0113b(0x3bd)](0xe3*0x24+-0x130a+-0xce1)[_0xc0113b(0x328)+_0xc0113b(0x238)](),'pageSize':z[_0xc0113b(0x2a4)+'r']()['int']()[_0xc0113b(0x3bd)](0x31*-0x92+-0xbc7+0x46a*0x9)[_0xc0113b(0x39c)](-0x2*0xfd1+0x1*0xe2d+-0x5f3*-0x3)['optio'+_0xc0113b(0x238)](),'type':feedbackTypeSchema[_0xc0113b(0x328)+_0xc0113b(0x238)](),'source':feedbackSourceSchema[_0xc0113b(0x328)+_0xc0113b(0x238)](),'saasStatus':feedbackSaasStatusSchema[_0xc0113b(0x328)+_0xc0113b(0x238)](),'keyword':z['strin'+'g']()[_0xc0113b(0x272)]()['min'](0x8cd*-0x3+-0xdd1*-0x1+0xc97)[_0xc0113b(0x328)+_0xc0113b(0x238)](),'startAt':z[_0xc0113b(0x33e)+'g']()[_0xc0113b(0x33a)+'ime']()[_0xc0113b(0x328)+'nal'](),'endAt':z[_0xc0113b(0x33e)+'g']()[_0xc0113b(0x33a)+_0xc0113b(0x3b7)]()['optio'+_0xc0113b(0x238)]()}),feedbackItemSchema=z['objec'+'t']({'id':z['strin'+'g'](),'source':feedbackSourceSchema,'type':feedbackTypeSchema,'saasStatus':feedbackSaasStatusSchema,'response':z[_0xc0113b(0x33e)+'g']()['optio'+_0xc0113b(0x238)](),'userId':z['strin'+'g']()[_0xc0113b(0x328)+_0xc0113b(0x238)](),'email':z[_0xc0113b(0x33e)+'g']()['optio'+_0xc0113b(0x238)](),'content':z['strin'+'g'](),'context':z[_0xc0113b(0x1f6)+'d'](z[_0xc0113b(0x33e)+'g'](),z['unkno'+'wn']()),'createdAt':z['strin'+'g']()}),feedbackListPayloadSchema=z[_0xc0113b(0x1e3)+'t']({'items':z[_0xc0113b(0x2e4)](feedbackItemSchema),'page':z[_0xc0113b(0x2a4)+'r']()[_0xc0113b(0x213)](),'pageSize':z[_0xc0113b(0x2a4)+'r']()[_0xc0113b(0x213)](),'total':z['numbe'+'r']()[_0xc0113b(0x213)]()}),feedbackListResponseSchema=z[_0xc0113b(0x333)]([feedbackListPayloadSchema,feedbackSubmitErrorSchema]),feedbackDetailRequestSchema=z[_0xc0113b(0x1f7)](),_0xefe328={};_0xefe328[_0xc0113b(0x2ec)+_0xc0113b(0x34e)]=feedbackItemSchema;var feedbackDetailPayloadSchema=z[_0xc0113b(0x1e3)+'t'](_0xefe328),feedbackDetailResponseSchema=z[_0xc0113b(0x333)]([feedbackDetailPayloadSchema,feedbackSubmitErrorSchema]),_0x4b0d56={};_0x4b0d56['metho'+'d']=_0xc0113b(0x34b),_0x4b0d56[_0xc0113b(0x2f6)]=_0xc0113b(0x1f0)+_0xc0113b(0x233)+_0xc0113b(0x2bb)+'dback',_0x4b0d56[_0xc0113b(0x2aa)+_0xc0113b(0x237)+_0xc0113b(0x2c4)]=feedbackSubmitRequestSchema,_0x4b0d56[_0xc0113b(0x204)+_0xc0113b(0x209)+_0xc0113b(0x249)]=feedbackSubmitResponseSchema;var _0x1937d0={};_0x1937d0[_0xc0113b(0x39a)+'d']=_0xc0113b(0x34b),_0x1937d0['path']='/api/'+_0xc0113b(0x2ec)+_0xc0113b(0x330)+'ist',_0x1937d0[_0xc0113b(0x2aa)+_0xc0113b(0x237)+_0xc0113b(0x2c4)]=feedbackListRequestSchema,_0x1937d0[_0xc0113b(0x204)+_0xc0113b(0x209)+_0xc0113b(0x249)]=feedbackListResponseSchema;var feedbackEndpoints={'submit':new Endpoint(_0x4b0d56),'list':new Endpoint(_0x1937d0),'detail':_0x1cd57d=>new Endpoint({'method':_0xc0113b(0x2b2),'path':'/api/'+_0xc0113b(0x2ec)+_0xc0113b(0x2f1)+_0x1cd57d,'requestSchema':feedbackDetailRequestSchema,'responseSchema':feedbackDetailResponseSchema})},user_exports={},_0x398a3b={};_0x398a3b['UserC'+'lient']=()=>UserClient,_0x398a3b['userE'+_0xc0113b(0x2eb)+_0xc0113b(0x2db)]=()=>userEndpoints,_0x398a3b['userM'+_0xc0113b(0x2a7)+_0xc0113b(0x1d8)+_0xc0113b(0x2d9)+_0xc0113b(0x34c)]=()=>userMembershipLevelSchema,_0x398a3b[_0xc0113b(0x38b)+'elfRe'+_0xc0113b(0x2a5)+'Schem'+'a']=()=>userSelfRequestSchema,_0x398a3b[_0xc0113b(0x38b)+_0xc0113b(0x1e4)+_0xc0113b(0x297)+'eSche'+'ma']=()=>userSelfResponseSchema,_0x398a3b[_0xc0113b(0x38b)+_0xc0113b(0x1f3)+_0xc0113b(0x249)]=()=>userSelfSchema,__export(user_exports,_0x398a3b);var UserClient=class{['sdk'];constructor(_0x3fabf1){var _0xe52de0=_0xc0113b;this[_0xe52de0(0x2b5)]=_0x3fabf1;}async[_0xc0113b(0x2e9)](){var _0x55ddc6=_0xc0113b;const _0x3ff32b=await this[_0x55ddc6(0x2b5)][_0x55ddc6(0x383)+_0x55ddc6(0x313)+_0x55ddc6(0x22e)]();return this[_0x55ddc6(0x2b5)]['reque'+'st'](this[_0x55ddc6(0x2b5)][_0x55ddc6(0x370)+_0x55ddc6(0x232)]['user'][_0x55ddc6(0x2e9)],{'baseUrl':this[_0x55ddc6(0x2b5)]['getBa'+'seUrl'](),'headers':_0x3ff32b,'body':void(0x25a*-0x1+-0x2*-0x1de+0xb1*-0x2)});}},userMembershipLevelSchema=z['enum'](['free',_0xc0113b(0x312),_0xc0113b(0x3a4),_0xc0113b(0x286)+'ity']),userSelfSchema=z[_0xc0113b(0x1e3)+'t']({'id':z['strin'+'g'](),'email':z[_0xc0113b(0x33e)+'g']()[_0xc0113b(0x328)+_0xc0113b(0x238)](),'name':z['strin'+'g']()[_0xc0113b(0x328)+_0xc0113b(0x238)](),'avatarUrl':z[_0xc0113b(0x33e)+'g']()[_0xc0113b(0x328)+_0xc0113b(0x238)](),'provider':z[_0xc0113b(0x33e)+'g'](),'membershipLevel':userMembershipLevelSchema,'creditsBalance':z[_0xc0113b(0x2a4)+'r'](),'createdAt':z['strin'+'g'](),'updatedAt':z[_0xc0113b(0x33e)+'g']()}),userSelfRequestSchema=z[_0xc0113b(0x1f7)](),_0x18c113={};_0x18c113[_0xc0113b(0x363)]=userSelfSchema;var userSelfResponseSchema=z[_0xc0113b(0x1e3)+'t'](_0x18c113),_0x627910={};_0x627910[_0xc0113b(0x39a)+'d']='GET',_0x627910[_0xc0113b(0x2f6)]=_0xc0113b(0x1f0)+_0xc0113b(0x22a)+_0xc0113b(0x2e9),_0x627910[_0xc0113b(0x2aa)+_0xc0113b(0x237)+_0xc0113b(0x2c4)]=userSelfRequestSchema,_0x627910[_0xc0113b(0x204)+_0xc0113b(0x209)+'hema']=userSelfResponseSchema;var userEndpoints={'self':new Endpoint(_0x627910)},SaaSContract=class{[_0xc0113b(0x3a0)]=authEndpoints;['ai']=aiEndpoints;[_0xc0113b(0x36f)+_0xc0113b(0x38a)]=auxiliaryEndpoints;[_0xc0113b(0x2ec)+'ack']=feedbackEndpoints;[_0xc0113b(0x363)]=userEndpoints;},contract=new SaaSContract();function setHeader(_0x4b47fc,_0x2897be,_0x2e50a1){var _0xb4d2b8=_0xc0113b;_0x4b47fc[_0x2897be[_0xb4d2b8(0x310)+_0xb4d2b8(0x1eb)+'e']()]=_0x2e50a1;}function normalizeHeaders(_0x442ab8){var _0x1da9cc=_0xc0113b;const _0x6a215={};if(!_0x442ab8)return _0x6a215;if(Array[_0x1da9cc(0x347)+'ay'](_0x442ab8)){for(const [_0x110e71,_0x332cdb]of _0x442ab8){setHeader(_0x6a215,_0x110e71,_0x332cdb);}return _0x6a215;}if(typeof _0x442ab8['forEa'+'ch']===_0x1da9cc(0x38e)+'ion')return _0x442ab8[_0x1da9cc(0x247)+'ch']((_0x194228,_0x4f8108)=>{setHeader(_0x6a215,_0x4f8108,_0x194228);}),_0x6a215;for(const [_0x52d628,_0x4bb5ab]of Object[_0x1da9cc(0x382)+'es'](_0x442ab8)){typeof _0x4bb5ab==='strin'+'g'&&setHeader(_0x6a215,_0x52d628,_0x4bb5ab);}return _0x6a215;}function mergeHeaders(..._0xc0eefc){var _0x28ef2e=_0xc0113b;const _0x36dd31={};for(const _0x43b3be of _0xc0eefc){const _0x189da8=normalizeHeaders(_0x43b3be);for(const [_0x3959fe,_0x47328b]of Object[_0x28ef2e(0x382)+'es'](_0x189da8)){_0x36dd31[_0x3959fe]=_0x47328b;}}return _0x36dd31;}var SaaSHttpError=class extends Error{[_0xc0113b(0x1e6)+'s'];[_0xc0113b(0x1e6)+_0xc0113b(0x345)];[_0xc0113b(0x303)+'ad'];constructor(_0x21089e,_0x554d7f){var _0x39088=_0xc0113b;super(_0x21089e),this[_0x39088(0x2c1)]=_0x39088(0x2a1)+_0x39088(0x29b)+_0x39088(0x302),this['statu'+'s']=_0x554d7f['statu'+'s'],this[_0x39088(0x1e6)+_0x39088(0x345)]=_0x554d7f['statu'+_0x39088(0x345)],this[_0x39088(0x303)+'ad']=_0x554d7f[_0x39088(0x303)+'ad'];}},SaaSSchemaError=class extends Error{[_0xc0113b(0x288)+'s'];constructor(_0x5562cc,_0x28db84){var _0x1b15a0=_0xc0113b;super(_0x5562cc),this[_0x1b15a0(0x2c1)]='SaaSS'+'chema'+_0x1b15a0(0x30e),this[_0x1b15a0(0x288)+'s']=_0x28db84;}},SaaSNetworkError=class extends Error{['cause'];constructor(_0x452863,_0x3effd0){var _0x2874d8=_0xc0113b;super(_0x452863),this['name']=_0x2874d8(0x326)+'etwor'+_0x2874d8(0x349)+'r',this['cause']=_0x3effd0;}};function logSdkError(_0x2ec434){var _0x4520c4=_0xc0113b;try{console[_0x4520c4(0x2b3)](_0x4520c4(0x377)+_0x4520c4(0x279)+_0x4520c4(0x3bf)+'rror',_0x2ec434);}catch{}}async function request(_0x51c52d,_0x458ac6,_0x44ecbd){var _0x133844=_0xc0113b;const _0x5d4464=new URL(_0x458ac6['path'],_0x44ecbd[_0x133844(0x35a)+'rl']);let _0x5cef7d;try{_0x5cef7d=_0x458ac6[_0x133844(0x374)+_0x133844(0x37f)+'st'](_0x44ecbd['body']);}catch(_0x49b814){const _0x14b614=_0x49b814&&typeof _0x49b814===_0x133844(0x1e3)+'t'?_0x49b814[_0x133844(0x288)+'s']:void(0x320*0x1+-0x1244+-0x72*-0x22);logSdkError({'message':_0x133844(0x37f)+'st\x20sc'+_0x133844(0x210)+_0x133844(0x2da)+_0x133844(0x337)+_0x133844(0x27f)+'ed','url':_0x5d4464['toStr'+'ing'](),'method':_0x458ac6['metho'+'d'],'payload':_0x44ecbd[_0x133844(0x228)],'error':_0x49b814});throw new SaaSSchemaError(_0x133844(0x37f)+_0x133844(0x3a3)+_0x133844(0x210)+_0x133844(0x2da)+_0x133844(0x337)+_0x133844(0x27f)+'ed',_0x14b614);}const _0x1566f8=mergeHeaders(_0x44ecbd[_0x133844(0x319)+'rs']);var _0x343522={};_0x343522[_0x133844(0x39a)+'d']=_0x458ac6[_0x133844(0x39a)+'d'],_0x343522[_0x133844(0x319)+'rs']=_0x1566f8;const _0x55f4eb=_0x343522;_0x5cef7d!==void(-0x1593+0x313*-0x3+0x1ecc)&&(!_0x1566f8['conte'+_0x133844(0x30d)+'pe']&&(_0x1566f8[_0x133844(0x3b6)+'nt-ty'+'pe']=_0x133844(0x2a0)+_0x133844(0x2f0)+'n/jso'+'n'),_0x55f4eb[_0x133844(0x228)]=JSON[_0x133844(0x33e)+_0x133844(0x24f)](_0x5cef7d));let _0x3babc4;try{_0x3babc4=await _0x51c52d(_0x5d4464[_0x133844(0x24e)+_0x133844(0x33f)](),_0x55f4eb);}catch(_0x51acf1){logSdkError({'message':_0x133844(0x25b)+_0x133844(0x336)+_0x133844(0x2a5)+'\x20fail'+'ed','url':_0x5d4464[_0x133844(0x24e)+_0x133844(0x33f)](),'method':_0x458ac6[_0x133844(0x39a)+'d'],'error':_0x51acf1});throw new SaaSNetworkError(_0x133844(0x25b)+_0x133844(0x336)+'quest'+'\x20fail'+'ed',_0x51acf1);}const _0x54b0ce=await _0x3babc4[_0x133844(0x3c3)]();let _0x34ac41;if(_0x458ac6['respo'+_0x133844(0x226)+'pe']===_0x133844(0x3c3))_0x34ac41=_0x54b0ce;else{if(_0x54b0ce)try{_0x34ac41=JSON[_0x133844(0x374)](_0x54b0ce);}catch{logSdkError({'message':_0x133844(0x285)+'nse\x20i'+_0x133844(0x25f)+_0x133844(0x3c2)+_0x133844(0x2d5)+'N','url':_0x5d4464[_0x133844(0x24e)+'ing'](),'method':_0x458ac6[_0x133844(0x39a)+'d'],'status':_0x3babc4[_0x133844(0x1e6)+'s'],'statusText':_0x3babc4[_0x133844(0x1e6)+_0x133844(0x345)],'payload':_0x54b0ce});var _0x505a39={};_0x505a39[_0x133844(0x1e6)+'s']=_0x3babc4['statu'+'s'],_0x505a39[_0x133844(0x1e6)+_0x133844(0x345)]=_0x3babc4['statu'+_0x133844(0x345)],_0x505a39['paylo'+'ad']=_0x54b0ce;throw new SaaSHttpError(_0x133844(0x285)+_0x133844(0x203)+'s\x20not'+_0x133844(0x3c2)+'d\x20JSO'+'N',_0x505a39);}}let _0x37470a;try{_0x37470a=_0x458ac6[_0x133844(0x374)+'Respo'+_0x133844(0x268)](_0x34ac41);}catch(_0x52e9e5){const _0x13258b=_0x52e9e5&&typeof _0x52e9e5===_0x133844(0x1e3)+'t'?_0x52e9e5[_0x133844(0x288)+'s']:void(-0xedb*-0x1+0x1*-0x159b+0x6c0);logSdkError({'message':'Respo'+_0x133844(0x291)+'chema'+_0x133844(0x3c2)+_0x133844(0x327)+_0x133844(0x266)+'led','url':_0x5d4464['toStr'+_0x133844(0x33f)](),'method':_0x458ac6['metho'+'d'],'status':_0x3babc4[_0x133844(0x1e6)+'s'],'statusText':_0x3babc4[_0x133844(0x1e6)+_0x133844(0x345)],'payload':_0x34ac41,'error':_0x52e9e5});throw new SaaSSchemaError(_0x133844(0x285)+_0x133844(0x291)+_0x133844(0x34c)+'\x20vali'+_0x133844(0x327)+_0x133844(0x266)+_0x133844(0x2b9),_0x13258b);}if(!_0x3babc4['ok']){logSdkError({'message':_0x133844(0x37f)+_0x133844(0x26f)+_0x133844(0x2ef),'url':_0x5d4464[_0x133844(0x24e)+_0x133844(0x33f)](),'method':_0x458ac6[_0x133844(0x39a)+'d'],'status':_0x3babc4[_0x133844(0x1e6)+'s'],'statusText':_0x3babc4[_0x133844(0x1e6)+_0x133844(0x345)],'payload':_0x37470a});var _0x23891d={};_0x23891d[_0x133844(0x1e6)+'s']=_0x3babc4[_0x133844(0x1e6)+'s'],_0x23891d[_0x133844(0x1e6)+_0x133844(0x345)]=_0x3babc4['statu'+_0x133844(0x345)],_0x23891d[_0x133844(0x303)+'ad']=_0x37470a;throw new SaaSHttpError(_0x133844(0x37f)+_0x133844(0x26f)+_0x133844(0x2ef),_0x23891d);}return _0x37470a;}var BaseSaaSClient=class{[_0xc0113b(0x370)+_0xc0113b(0x232)];[_0xc0113b(0x35a)+'rl'];['getAc'+'cessT'+_0xc0113b(0x227)];['fetch'+'er'];[_0xc0113b(0x319)+'rs'];constructor(_0x1f5a1f){var _0x2799bf=_0xc0113b;this[_0x2799bf(0x35a)+'rl']=_0x1f5a1f[_0x2799bf(0x35a)+'rl'],this[_0x2799bf(0x2ba)+_0x2799bf(0x255)+_0x2799bf(0x227)]=_0x1f5a1f[_0x2799bf(0x2ba)+'cessT'+_0x2799bf(0x227)],this[_0x2799bf(0x2c0)+'er']=_0x1f5a1f[_0x2799bf(0x2c0)+'er']??fetch,this[_0x2799bf(0x319)+'rs']=_0x1f5a1f[_0x2799bf(0x319)+'rs'],this[_0x2799bf(0x370)+_0x2799bf(0x232)]=_0x1f5a1f[_0x2799bf(0x370)+_0x2799bf(0x232)];}async[_0xc0113b(0x2aa)+'st'](_0x1c7ad9,_0x43f609){var _0x8252da=_0xc0113b;const _0x3e30f3=mergeHeaders(this[_0x8252da(0x319)+'rs'],_0x43f609[_0x8252da(0x319)+'rs']);return request(this[_0x8252da(0x2c0)+'er'],_0x1c7ad9,{'baseUrl':_0x43f609[_0x8252da(0x35a)+'rl']??this[_0x8252da(0x35a)+'rl'],'headers':_0x3e30f3,'body':_0x43f609['body']});}async[_0xc0113b(0x383)+_0xc0113b(0x313)+_0xc0113b(0x22e)](){var _0x18e916=_0xc0113b;if(!this[_0x18e916(0x2ba)+_0x18e916(0x255)+_0x18e916(0x227)])return{};const _0x216417=await this[_0x18e916(0x2ba)+_0x18e916(0x255)+_0x18e916(0x227)]();if(!_0x216417)return{};var _0x23d466={};return _0x23d466[_0x18e916(0x3bc)+'rizat'+_0x18e916(0x3c1)]=_0x18e916(0x34f)+'r\x20'+_0x216417,_0x23d466;}[_0xc0113b(0x3bb)+_0xc0113b(0x2c2)](){return this['baseU'+'rl'];}},SaaSClient=class extends BaseSaaSClient{[_0xc0113b(0x3a0)];['ai'];[_0xc0113b(0x36f)+'iary'];[_0xc0113b(0x2ec)+_0xc0113b(0x34e)];[_0xc0113b(0x363)];constructor(_0x39890f){var _0x8297dd=_0xc0113b,_0x53bb8b={..._0x39890f};_0x53bb8b['contr'+_0x8297dd(0x232)]=_0x39890f['contr'+_0x8297dd(0x232)]??contract,super(_0x53bb8b),this['auth']=new AuthClient(this),this['ai']=new AiClient(this),this[_0x8297dd(0x36f)+_0x8297dd(0x38a)]=new AuxiliaryClient(this),this[_0x8297dd(0x2ec)+_0x8297dd(0x34e)]=new FeedbackClient(this),this[_0x8297dd(0x363)]=new UserClient(this);}};function createTrpcClient(_0x4ba219){var _0x52e8d8=_0xc0113b;return createTRPCClient({'links':[httpBatchLink({'url':new URL('/trpc',_0x4ba219[_0x52e8d8(0x35a)+'rl'])[_0x52e8d8(0x24e)+_0x52e8d8(0x33f)](),'headers':async()=>{var _0x39f0b9=_0x52e8d8;const _0x4e2763=_0x4ba219[_0x39f0b9(0x2ba)+_0x39f0b9(0x255)+_0x39f0b9(0x227)]?await _0x4ba219[_0x39f0b9(0x2ba)+'cessT'+_0x39f0b9(0x227)]():'',_0x48d456=_0x4e2763?{'Authorization':_0x39f0b9(0x34f)+'r\x20'+_0x4e2763}:{};return mergeHeaders(_0x4ba219[_0x39f0b9(0x319)+'rs'],_0x48d456);}})]});}export{AI_MODEL_CAPABILITY_INPUT_KEYS,AI_MODEL_CAPABILITY_OUTPUT_KEYS,AI_MODEL_TAGS,AI_MODEL_TAG_LABELS,AiClient,AuthClient,AuxiliaryClient,Endpoint,FeedbackClient,SaaSClient,SaaSHttpError,SaaSNetworkError,SaaSSchemaError,UserClient,aiChatModelSchema,aiChatModelsPayloadSchema,aiChatModelsResponseSchema,aiChatModelsSuccessSchema,aiEndpoints,aiErrorResponseSchema,aiImageInputsSchema,aiImageOutputSchema,aiImageRequestSchema,aiMediaInputSchema,aiModelCapabilitiesInputSchema,aiModelCapabilitiesOutputSchema,aiModelCapabilitiesSchema,aiModelCapabilityCommonSchema,aiModelParameterFieldSchema,aiModelParamsSchema,aiModelSchema,aiModelsPayloadSchema,aiModelsRequestSchema,aiModelsResponseSchema,aiModelsSuccessSchema,aiModelsUpdatedAtDataSchema,aiModelsUpdatedAtResponseSchema,aiModelsUpdatedAtSuccessSchema,ai_exports as aiModule,aiProviderTemplateModelSchema,aiProviderTemplateSchema,aiProviderTemplatesPayloadSchema,aiProviderTemplatesRequestSchema,aiProviderTemplatesResponseSchema,aiProviderTemplatesSuccessSchema,aiTaskCancelDataSchema,aiTaskCancelRequestSchema,aiTaskCancelResponseSchema,aiTaskCancelSuccessSchema,aiTaskCreatedDataSchema,aiTaskCreatedResponseSchema,aiTaskCreatedSuccessSchema,aiTaskDataSchema,aiTaskErrorSchema,aiTaskRequestSchema,aiTaskResponseSchema,aiTaskResultTypeSchema,aiTaskStatusSchema,aiTaskSuccessSchema,aiVideoInputsSchema,aiVideoOutputSchema,aiVideoRequestSchema,authEndpoints,authExchangeRequestSchema,authExchangeResponseSchema,authLogoutRequestSchema,authLogoutResponseSchema,auth_exports as authModule,authRefreshErrorSchema,authRefreshRequestSchema,authRefreshResponseSchema,authRefreshSuccessSchema,authRefreshUserSchema,auxiliaryEndpoints,auxiliaryInferRequestSchema,auxiliaryInferResponseSchema,auxiliary_exports as auxiliaryModule,auxiliaryQuotaResponseSchema,contract,createTrpcClient,feedbackDetailPayloadSchema,feedbackDetailRequestSchema,feedbackDetailResponseSchema,feedbackEndpoints,feedbackItemSchema,feedbackListPayloadSchema,feedbackListRequestSchema,feedbackListResponseSchema,feedback_exports as feedbackModule,feedbackSaasStatusSchema,feedbackSourceSchema,feedbackSubmitErrorSchema,feedbackSubmitRequestSchema,feedbackSubmitResponseSchema,feedbackTypeSchema,mergeHeaders,normalizeHeaders,request,userEndpoints,userMembershipLevelSchema,user_exports as userModule,userSelfRequestSchema,userSelfResponseSchema,userSelfSchema};
|