@inkeep/agents-core 0.1.0
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/LICENSE.md +51 -0
- package/README.md +464 -0
- package/dist/__tests__/integration/helpers.d.ts +5 -0
- package/dist/__tests__/integration/helpers.d.ts.map +1 -0
- package/dist/__tests__/integration/helpers.js +37 -0
- package/dist/__tests__/integration/helpers.js.map +1 -0
- package/dist/__tests__/setup.d.ts +3 -0
- package/dist/__tests__/setup.d.ts.map +1 -0
- package/dist/__tests__/setup.js +29 -0
- package/dist/__tests__/setup.js.map +1 -0
- package/dist/client-exports.d.ts +301 -0
- package/dist/client-exports.d.ts.map +1 -0
- package/dist/client-exports.js +251 -0
- package/dist/client-exports.js.map +1 -0
- package/dist/context/ContextConfig.d.ts +55 -0
- package/dist/context/ContextConfig.d.ts.map +1 -0
- package/dist/context/ContextConfig.js +302 -0
- package/dist/context/ContextConfig.js.map +1 -0
- package/dist/context/ContextFetcher.d.ts +64 -0
- package/dist/context/ContextFetcher.d.ts.map +1 -0
- package/dist/context/ContextFetcher.js +325 -0
- package/dist/context/ContextFetcher.js.map +1 -0
- package/dist/context/ContextResolver.d.ts +52 -0
- package/dist/context/ContextResolver.d.ts.map +1 -0
- package/dist/context/ContextResolver.js +298 -0
- package/dist/context/ContextResolver.js.map +1 -0
- package/dist/context/TemplateEngine.d.ts +46 -0
- package/dist/context/TemplateEngine.d.ts.map +1 -0
- package/dist/context/TemplateEngine.js +175 -0
- package/dist/context/TemplateEngine.js.map +1 -0
- package/dist/context/context.d.ts +7 -0
- package/dist/context/context.d.ts.map +1 -0
- package/dist/context/context.js +157 -0
- package/dist/context/context.js.map +1 -0
- package/dist/context/contextCache.d.ts +50 -0
- package/dist/context/contextCache.d.ts.map +1 -0
- package/dist/context/contextCache.js +175 -0
- package/dist/context/contextCache.js.map +1 -0
- package/dist/context/index.d.ts +11 -0
- package/dist/context/index.d.ts.map +1 -0
- package/dist/context/index.js +8 -0
- package/dist/context/index.js.map +1 -0
- package/dist/credential-stores/index.d.ts +4 -0
- package/dist/credential-stores/index.d.ts.map +1 -0
- package/dist/credential-stores/index.js +4 -0
- package/dist/credential-stores/index.js.map +1 -0
- package/dist/credential-stores/keychain-store.d.ts +100 -0
- package/dist/credential-stores/keychain-store.d.ts.map +1 -0
- package/dist/credential-stores/keychain-store.js +225 -0
- package/dist/credential-stores/keychain-store.js.map +1 -0
- package/dist/credential-stores/memory-store.d.ts +39 -0
- package/dist/credential-stores/memory-store.d.ts.map +1 -0
- package/dist/credential-stores/memory-store.js +58 -0
- package/dist/credential-stores/memory-store.js.map +1 -0
- package/dist/credential-stores/nango-store.d.ts +59 -0
- package/dist/credential-stores/nango-store.d.ts.map +1 -0
- package/dist/credential-stores/nango-store.js +264 -0
- package/dist/credential-stores/nango-store.js.map +1 -0
- package/dist/credential-stuffer/CredentialStuffer.d.ts +80 -0
- package/dist/credential-stuffer/CredentialStuffer.d.ts.map +1 -0
- package/dist/credential-stuffer/CredentialStuffer.js +186 -0
- package/dist/credential-stuffer/CredentialStuffer.js.map +1 -0
- package/dist/credential-stuffer/index.d.ts +2 -0
- package/dist/credential-stuffer/index.d.ts.map +1 -0
- package/dist/credential-stuffer/index.js +2 -0
- package/dist/credential-stuffer/index.js.map +1 -0
- package/dist/data-access/agentDataComponents.d.ts +1 -0
- package/dist/data-access/agentDataComponents.d.ts.map +1 -0
- package/dist/data-access/agentDataComponents.js +2 -0
- package/dist/data-access/agentDataComponents.js.map +1 -0
- package/dist/data-access/agentGraphs.d.ts +406 -0
- package/dist/data-access/agentGraphs.d.ts.map +1 -0
- package/dist/data-access/agentGraphs.js +551 -0
- package/dist/data-access/agentGraphs.js.map +1 -0
- package/dist/data-access/agentRelations.d.ts +456 -0
- package/dist/data-access/agentRelations.d.ts.map +1 -0
- package/dist/data-access/agentRelations.js +471 -0
- package/dist/data-access/agentRelations.js.map +1 -0
- package/dist/data-access/agents.d.ts +218 -0
- package/dist/data-access/agents.d.ts.map +1 -0
- package/dist/data-access/agents.js +130 -0
- package/dist/data-access/agents.js.map +1 -0
- package/dist/data-access/apiKeys.d.ts +114 -0
- package/dist/data-access/apiKeys.d.ts.map +1 -0
- package/dist/data-access/apiKeys.js +185 -0
- package/dist/data-access/apiKeys.js.map +1 -0
- package/dist/data-access/artifactComponents.d.ts +152 -0
- package/dist/data-access/artifactComponents.d.ts.map +1 -0
- package/dist/data-access/artifactComponents.js +214 -0
- package/dist/data-access/artifactComponents.js.map +1 -0
- package/dist/data-access/contextCache.d.ts +68 -0
- package/dist/data-access/contextCache.d.ts.map +1 -0
- package/dist/data-access/contextCache.js +160 -0
- package/dist/data-access/contextCache.js.map +1 -0
- package/dist/data-access/contextConfigs.d.ts +110 -0
- package/dist/data-access/contextConfigs.d.ts.map +1 -0
- package/dist/data-access/contextConfigs.js +156 -0
- package/dist/data-access/contextConfigs.js.map +1 -0
- package/dist/data-access/conversations.d.ts +125 -0
- package/dist/data-access/conversations.d.ts.map +1 -0
- package/dist/data-access/conversations.js +244 -0
- package/dist/data-access/conversations.js.map +1 -0
- package/dist/data-access/credentialReferences.d.ts +86 -0
- package/dist/data-access/credentialReferences.d.ts.map +1 -0
- package/dist/data-access/credentialReferences.js +175 -0
- package/dist/data-access/credentialReferences.js.map +1 -0
- package/dist/data-access/dataComponents.d.ts +129 -0
- package/dist/data-access/dataComponents.d.ts.map +1 -0
- package/dist/data-access/dataComponents.js +213 -0
- package/dist/data-access/dataComponents.js.map +1 -0
- package/dist/data-access/externalAgents.d.ts +83 -0
- package/dist/data-access/externalAgents.d.ts.map +1 -0
- package/dist/data-access/externalAgents.js +163 -0
- package/dist/data-access/externalAgents.js.map +1 -0
- package/dist/data-access/graphFull.d.ts +32 -0
- package/dist/data-access/graphFull.d.ts.map +1 -0
- package/dist/data-access/graphFull.js +995 -0
- package/dist/data-access/graphFull.js.map +1 -0
- package/dist/data-access/index.d.ts +21 -0
- package/dist/data-access/index.d.ts.map +1 -0
- package/dist/data-access/index.js +22 -0
- package/dist/data-access/index.js.map +1 -0
- package/dist/data-access/ledgerArtifacts.d.ts +50 -0
- package/dist/data-access/ledgerArtifacts.d.ts.map +1 -0
- package/dist/data-access/ledgerArtifacts.js +112 -0
- package/dist/data-access/ledgerArtifacts.js.map +1 -0
- package/dist/data-access/messages.d.ts +209 -0
- package/dist/data-access/messages.d.ts.map +1 -0
- package/dist/data-access/messages.js +100 -0
- package/dist/data-access/messages.js.map +1 -0
- package/dist/data-access/projects.d.ts +67 -0
- package/dist/data-access/projects.d.ts.map +1 -0
- package/dist/data-access/projects.js +336 -0
- package/dist/data-access/projects.js.map +1 -0
- package/dist/data-access/tasks.d.ts +37 -0
- package/dist/data-access/tasks.d.ts.map +1 -0
- package/dist/data-access/tasks.js +40 -0
- package/dist/data-access/tasks.js.map +1 -0
- package/dist/data-access/tools.d.ts +277 -0
- package/dist/data-access/tools.d.ts.map +1 -0
- package/dist/data-access/tools.js +183 -0
- package/dist/data-access/tools.js.map +1 -0
- package/dist/data-access/validation.d.ts +17 -0
- package/dist/data-access/validation.d.ts.map +1 -0
- package/dist/data-access/validation.js +52 -0
- package/dist/data-access/validation.js.map +1 -0
- package/dist/db/clean.d.ts +6 -0
- package/dist/db/clean.d.ts.map +1 -0
- package/dist/db/clean.js +81 -0
- package/dist/db/clean.js.map +1 -0
- package/dist/db/client.d.ts +19 -0
- package/dist/db/client.d.ts.map +1 -0
- package/dist/db/client.js +24 -0
- package/dist/db/client.js.map +1 -0
- package/dist/db/schema.d.ts +4337 -0
- package/dist/db/schema.d.ts.map +1 -0
- package/dist/db/schema.js +696 -0
- package/dist/db/schema.js.map +1 -0
- package/dist/db/test-client.d.ts +25 -0
- package/dist/db/test-client.d.ts.map +1 -0
- package/dist/db/test-client.js +136 -0
- package/dist/db/test-client.js.map +1 -0
- package/dist/env.d.ts +17 -0
- package/dist/env.d.ts.map +1 -0
- package/dist/env.js +48 -0
- package/dist/env.js.map +1 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +14 -0
- package/dist/index.js.map +1 -0
- package/dist/middleware/contextValidation.d.ts +48 -0
- package/dist/middleware/contextValidation.d.ts.map +1 -0
- package/dist/middleware/contextValidation.js +469 -0
- package/dist/middleware/contextValidation.js.map +1 -0
- package/dist/middleware/index.d.ts +2 -0
- package/dist/middleware/index.d.ts.map +1 -0
- package/dist/middleware/index.js +2 -0
- package/dist/middleware/index.js.map +1 -0
- package/dist/server/BaseServer.d.ts +83 -0
- package/dist/server/BaseServer.d.ts.map +1 -0
- package/dist/server/BaseServer.js +218 -0
- package/dist/server/BaseServer.js.map +1 -0
- package/dist/types/a2a.d.ts +373 -0
- package/dist/types/a2a.d.ts.map +1 -0
- package/dist/types/a2a.js +14 -0
- package/dist/types/a2a.js.map +1 -0
- package/dist/types/entities.d.ts +147 -0
- package/dist/types/entities.d.ts.map +1 -0
- package/dist/types/entities.js +2 -0
- package/dist/types/entities.js.map +1 -0
- package/dist/types/index.d.ts +5 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/index.js +6 -0
- package/dist/types/index.js.map +1 -0
- package/dist/types/server.d.ts +116 -0
- package/dist/types/server.d.ts.map +1 -0
- package/dist/types/server.js +2 -0
- package/dist/types/server.js.map +1 -0
- package/dist/types/utility.d.ts +214 -0
- package/dist/types/utility.d.ts.map +1 -0
- package/dist/types/utility.js +9 -0
- package/dist/types/utility.js.map +1 -0
- package/dist/utils/apiKeys.d.ts +32 -0
- package/dist/utils/apiKeys.d.ts.map +1 -0
- package/dist/utils/apiKeys.js +117 -0
- package/dist/utils/apiKeys.js.map +1 -0
- package/dist/utils/auth-detection.d.ts +23 -0
- package/dist/utils/auth-detection.d.ts.map +1 -0
- package/dist/utils/auth-detection.js +148 -0
- package/dist/utils/auth-detection.js.map +1 -0
- package/dist/utils/credential-store-utils.d.ts +11 -0
- package/dist/utils/credential-store-utils.d.ts.map +1 -0
- package/dist/utils/credential-store-utils.js +19 -0
- package/dist/utils/credential-store-utils.js.map +1 -0
- package/dist/utils/error.d.ts +526 -0
- package/dist/utils/error.d.ts.map +1 -0
- package/dist/utils/error.js +282 -0
- package/dist/utils/error.js.map +1 -0
- package/dist/utils/execution.d.ts +18 -0
- package/dist/utils/execution.d.ts.map +1 -0
- package/dist/utils/execution.js +25 -0
- package/dist/utils/execution.js.map +1 -0
- package/dist/utils/index.d.ts +9 -0
- package/dist/utils/index.d.ts.map +1 -0
- package/dist/utils/index.js +9 -0
- package/dist/utils/index.js.map +1 -0
- package/dist/utils/logger.d.ts +79 -0
- package/dist/utils/logger.d.ts.map +1 -0
- package/dist/utils/logger.js +102 -0
- package/dist/utils/logger.js.map +1 -0
- package/dist/utils/logging.d.ts +11 -0
- package/dist/utils/logging.d.ts.map +1 -0
- package/dist/utils/logging.js +6 -0
- package/dist/utils/logging.js.map +1 -0
- package/dist/utils/mcp-client.d.ts +48 -0
- package/dist/utils/mcp-client.d.ts.map +1 -0
- package/dist/utils/mcp-client.js +171 -0
- package/dist/utils/mcp-client.js.map +1 -0
- package/dist/utils/tracer.d.ts +24 -0
- package/dist/utils/tracer.d.ts.map +1 -0
- package/dist/utils/tracer.js +98 -0
- package/dist/utils/tracer.js.map +1 -0
- package/dist/validation/graphFull.d.ts +36 -0
- package/dist/validation/graphFull.d.ts.map +1 -0
- package/dist/validation/graphFull.js +128 -0
- package/dist/validation/graphFull.js.map +1 -0
- package/dist/validation/id-validation.d.ts +38 -0
- package/dist/validation/id-validation.d.ts.map +1 -0
- package/dist/validation/id-validation.js +60 -0
- package/dist/validation/id-validation.js.map +1 -0
- package/dist/validation/index.d.ts +4 -0
- package/dist/validation/index.d.ts.map +1 -0
- package/dist/validation/index.js +5 -0
- package/dist/validation/index.js.map +1 -0
- package/dist/validation/schemas.d.ts +7233 -0
- package/dist/validation/schemas.d.ts.map +1 -0
- package/dist/validation/schemas.js +525 -0
- package/dist/validation/schemas.js.map +1 -0
- package/package.json +89 -0
|
@@ -0,0 +1,526 @@
|
|
|
1
|
+
import { z } from '@hono/zod-openapi';
|
|
2
|
+
import { HTTPException } from 'hono/http-exception';
|
|
3
|
+
export declare const ErrorCode: z.ZodEnum<{
|
|
4
|
+
unauthorized: "unauthorized";
|
|
5
|
+
bad_request: "bad_request";
|
|
6
|
+
forbidden: "forbidden";
|
|
7
|
+
not_found: "not_found";
|
|
8
|
+
conflict: "conflict";
|
|
9
|
+
internal_server_error: "internal_server_error";
|
|
10
|
+
unprocessable_entity: "unprocessable_entity";
|
|
11
|
+
}>;
|
|
12
|
+
export declare const ERROR_DOCS_BASE_URL = "https://docs.inkeep.com/agents-api/errors";
|
|
13
|
+
export declare const problemDetailsSchema: z.ZodObject<{
|
|
14
|
+
title: z.ZodString;
|
|
15
|
+
status: z.ZodNumber;
|
|
16
|
+
detail: z.ZodString;
|
|
17
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
18
|
+
requestId: z.ZodOptional<z.ZodString>;
|
|
19
|
+
code: z.ZodEnum<{
|
|
20
|
+
unauthorized: "unauthorized";
|
|
21
|
+
bad_request: "bad_request";
|
|
22
|
+
forbidden: "forbidden";
|
|
23
|
+
not_found: "not_found";
|
|
24
|
+
conflict: "conflict";
|
|
25
|
+
internal_server_error: "internal_server_error";
|
|
26
|
+
unprocessable_entity: "unprocessable_entity";
|
|
27
|
+
}>;
|
|
28
|
+
}, z.core.$strip>;
|
|
29
|
+
export type ProblemDetails = z.infer<typeof problemDetailsSchema>;
|
|
30
|
+
export type ErrorCodes = z.infer<typeof ErrorCode>;
|
|
31
|
+
export declare const errorResponseSchema: z.ZodObject<{
|
|
32
|
+
error: z.ZodObject<{
|
|
33
|
+
code: z.ZodEnum<{
|
|
34
|
+
unauthorized: "unauthorized";
|
|
35
|
+
bad_request: "bad_request";
|
|
36
|
+
forbidden: "forbidden";
|
|
37
|
+
not_found: "not_found";
|
|
38
|
+
conflict: "conflict";
|
|
39
|
+
internal_server_error: "internal_server_error";
|
|
40
|
+
unprocessable_entity: "unprocessable_entity";
|
|
41
|
+
}>;
|
|
42
|
+
message: z.ZodString;
|
|
43
|
+
}, z.core.$strip>;
|
|
44
|
+
}, z.core.$strip>;
|
|
45
|
+
export type ErrorResponse = z.infer<typeof errorResponseSchema>;
|
|
46
|
+
export declare function createApiError({ code, message, instance, requestId, }: {
|
|
47
|
+
code: ErrorCodes;
|
|
48
|
+
message: string;
|
|
49
|
+
instance?: string;
|
|
50
|
+
requestId?: string;
|
|
51
|
+
}): HTTPException;
|
|
52
|
+
export declare function handleApiError(error: unknown, requestId?: string): Promise<ProblemDetails & {
|
|
53
|
+
error: {
|
|
54
|
+
code: ErrorCodes;
|
|
55
|
+
message: string;
|
|
56
|
+
};
|
|
57
|
+
}>;
|
|
58
|
+
export declare const errorSchemaFactory: (code: ErrorCodes, description: string) => {
|
|
59
|
+
description: string;
|
|
60
|
+
content: {
|
|
61
|
+
'application/problem+json': {
|
|
62
|
+
schema: z.ZodObject<{
|
|
63
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
64
|
+
requestId: z.ZodOptional<z.ZodString>;
|
|
65
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
66
|
+
detail: z.ZodString;
|
|
67
|
+
title: z.ZodString;
|
|
68
|
+
status: z.ZodLiteral<number>;
|
|
69
|
+
error: z.ZodObject<{
|
|
70
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
71
|
+
message: z.ZodString;
|
|
72
|
+
}, z.core.$strip>;
|
|
73
|
+
}, z.core.$strip>;
|
|
74
|
+
};
|
|
75
|
+
};
|
|
76
|
+
};
|
|
77
|
+
export declare const commonCreateErrorResponses: {
|
|
78
|
+
readonly 400: {
|
|
79
|
+
description: string;
|
|
80
|
+
content: {
|
|
81
|
+
'application/problem+json': {
|
|
82
|
+
schema: z.ZodObject<{
|
|
83
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
84
|
+
requestId: z.ZodOptional<z.ZodString>;
|
|
85
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
86
|
+
detail: z.ZodString;
|
|
87
|
+
title: z.ZodString;
|
|
88
|
+
status: z.ZodLiteral<number>;
|
|
89
|
+
error: z.ZodObject<{
|
|
90
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
91
|
+
message: z.ZodString;
|
|
92
|
+
}, z.core.$strip>;
|
|
93
|
+
}, z.core.$strip>;
|
|
94
|
+
};
|
|
95
|
+
};
|
|
96
|
+
};
|
|
97
|
+
readonly 401: {
|
|
98
|
+
description: string;
|
|
99
|
+
content: {
|
|
100
|
+
'application/problem+json': {
|
|
101
|
+
schema: z.ZodObject<{
|
|
102
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
103
|
+
requestId: z.ZodOptional<z.ZodString>;
|
|
104
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
105
|
+
detail: z.ZodString;
|
|
106
|
+
title: z.ZodString;
|
|
107
|
+
status: z.ZodLiteral<number>;
|
|
108
|
+
error: z.ZodObject<{
|
|
109
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
110
|
+
message: z.ZodString;
|
|
111
|
+
}, z.core.$strip>;
|
|
112
|
+
}, z.core.$strip>;
|
|
113
|
+
};
|
|
114
|
+
};
|
|
115
|
+
};
|
|
116
|
+
readonly 403: {
|
|
117
|
+
description: string;
|
|
118
|
+
content: {
|
|
119
|
+
'application/problem+json': {
|
|
120
|
+
schema: z.ZodObject<{
|
|
121
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
122
|
+
requestId: z.ZodOptional<z.ZodString>;
|
|
123
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
124
|
+
detail: z.ZodString;
|
|
125
|
+
title: z.ZodString;
|
|
126
|
+
status: z.ZodLiteral<number>;
|
|
127
|
+
error: z.ZodObject<{
|
|
128
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
129
|
+
message: z.ZodString;
|
|
130
|
+
}, z.core.$strip>;
|
|
131
|
+
}, z.core.$strip>;
|
|
132
|
+
};
|
|
133
|
+
};
|
|
134
|
+
};
|
|
135
|
+
readonly 422: {
|
|
136
|
+
description: string;
|
|
137
|
+
content: {
|
|
138
|
+
'application/problem+json': {
|
|
139
|
+
schema: z.ZodObject<{
|
|
140
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
141
|
+
requestId: z.ZodOptional<z.ZodString>;
|
|
142
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
143
|
+
detail: z.ZodString;
|
|
144
|
+
title: z.ZodString;
|
|
145
|
+
status: z.ZodLiteral<number>;
|
|
146
|
+
error: z.ZodObject<{
|
|
147
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
148
|
+
message: z.ZodString;
|
|
149
|
+
}, z.core.$strip>;
|
|
150
|
+
}, z.core.$strip>;
|
|
151
|
+
};
|
|
152
|
+
};
|
|
153
|
+
};
|
|
154
|
+
readonly 500: {
|
|
155
|
+
description: string;
|
|
156
|
+
content: {
|
|
157
|
+
'application/problem+json': {
|
|
158
|
+
schema: z.ZodObject<{
|
|
159
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
160
|
+
requestId: z.ZodOptional<z.ZodString>;
|
|
161
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
162
|
+
detail: z.ZodString;
|
|
163
|
+
title: z.ZodString;
|
|
164
|
+
status: z.ZodLiteral<number>;
|
|
165
|
+
error: z.ZodObject<{
|
|
166
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
167
|
+
message: z.ZodString;
|
|
168
|
+
}, z.core.$strip>;
|
|
169
|
+
}, z.core.$strip>;
|
|
170
|
+
};
|
|
171
|
+
};
|
|
172
|
+
};
|
|
173
|
+
};
|
|
174
|
+
export declare const commonUpdateErrorResponses: {
|
|
175
|
+
readonly 400: {
|
|
176
|
+
description: string;
|
|
177
|
+
content: {
|
|
178
|
+
'application/problem+json': {
|
|
179
|
+
schema: z.ZodObject<{
|
|
180
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
181
|
+
requestId: z.ZodOptional<z.ZodString>;
|
|
182
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
183
|
+
detail: z.ZodString;
|
|
184
|
+
title: z.ZodString;
|
|
185
|
+
status: z.ZodLiteral<number>;
|
|
186
|
+
error: z.ZodObject<{
|
|
187
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
188
|
+
message: z.ZodString;
|
|
189
|
+
}, z.core.$strip>;
|
|
190
|
+
}, z.core.$strip>;
|
|
191
|
+
};
|
|
192
|
+
};
|
|
193
|
+
};
|
|
194
|
+
readonly 401: {
|
|
195
|
+
description: string;
|
|
196
|
+
content: {
|
|
197
|
+
'application/problem+json': {
|
|
198
|
+
schema: z.ZodObject<{
|
|
199
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
200
|
+
requestId: z.ZodOptional<z.ZodString>;
|
|
201
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
202
|
+
detail: z.ZodString;
|
|
203
|
+
title: z.ZodString;
|
|
204
|
+
status: z.ZodLiteral<number>;
|
|
205
|
+
error: z.ZodObject<{
|
|
206
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
207
|
+
message: z.ZodString;
|
|
208
|
+
}, z.core.$strip>;
|
|
209
|
+
}, z.core.$strip>;
|
|
210
|
+
};
|
|
211
|
+
};
|
|
212
|
+
};
|
|
213
|
+
readonly 403: {
|
|
214
|
+
description: string;
|
|
215
|
+
content: {
|
|
216
|
+
'application/problem+json': {
|
|
217
|
+
schema: z.ZodObject<{
|
|
218
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
219
|
+
requestId: z.ZodOptional<z.ZodString>;
|
|
220
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
221
|
+
detail: z.ZodString;
|
|
222
|
+
title: z.ZodString;
|
|
223
|
+
status: z.ZodLiteral<number>;
|
|
224
|
+
error: z.ZodObject<{
|
|
225
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
226
|
+
message: z.ZodString;
|
|
227
|
+
}, z.core.$strip>;
|
|
228
|
+
}, z.core.$strip>;
|
|
229
|
+
};
|
|
230
|
+
};
|
|
231
|
+
};
|
|
232
|
+
readonly 404: {
|
|
233
|
+
description: string;
|
|
234
|
+
content: {
|
|
235
|
+
'application/problem+json': {
|
|
236
|
+
schema: z.ZodObject<{
|
|
237
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
238
|
+
requestId: z.ZodOptional<z.ZodString>;
|
|
239
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
240
|
+
detail: z.ZodString;
|
|
241
|
+
title: z.ZodString;
|
|
242
|
+
status: z.ZodLiteral<number>;
|
|
243
|
+
error: z.ZodObject<{
|
|
244
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
245
|
+
message: z.ZodString;
|
|
246
|
+
}, z.core.$strip>;
|
|
247
|
+
}, z.core.$strip>;
|
|
248
|
+
};
|
|
249
|
+
};
|
|
250
|
+
};
|
|
251
|
+
readonly 422: {
|
|
252
|
+
description: string;
|
|
253
|
+
content: {
|
|
254
|
+
'application/problem+json': {
|
|
255
|
+
schema: z.ZodObject<{
|
|
256
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
257
|
+
requestId: z.ZodOptional<z.ZodString>;
|
|
258
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
259
|
+
detail: z.ZodString;
|
|
260
|
+
title: z.ZodString;
|
|
261
|
+
status: z.ZodLiteral<number>;
|
|
262
|
+
error: z.ZodObject<{
|
|
263
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
264
|
+
message: z.ZodString;
|
|
265
|
+
}, z.core.$strip>;
|
|
266
|
+
}, z.core.$strip>;
|
|
267
|
+
};
|
|
268
|
+
};
|
|
269
|
+
};
|
|
270
|
+
readonly 500: {
|
|
271
|
+
description: string;
|
|
272
|
+
content: {
|
|
273
|
+
'application/problem+json': {
|
|
274
|
+
schema: z.ZodObject<{
|
|
275
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
276
|
+
requestId: z.ZodOptional<z.ZodString>;
|
|
277
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
278
|
+
detail: z.ZodString;
|
|
279
|
+
title: z.ZodString;
|
|
280
|
+
status: z.ZodLiteral<number>;
|
|
281
|
+
error: z.ZodObject<{
|
|
282
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
283
|
+
message: z.ZodString;
|
|
284
|
+
}, z.core.$strip>;
|
|
285
|
+
}, z.core.$strip>;
|
|
286
|
+
};
|
|
287
|
+
};
|
|
288
|
+
};
|
|
289
|
+
};
|
|
290
|
+
export declare const commonGetErrorResponses: {
|
|
291
|
+
readonly 400: {
|
|
292
|
+
description: string;
|
|
293
|
+
content: {
|
|
294
|
+
'application/problem+json': {
|
|
295
|
+
schema: z.ZodObject<{
|
|
296
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
297
|
+
requestId: z.ZodOptional<z.ZodString>;
|
|
298
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
299
|
+
detail: z.ZodString;
|
|
300
|
+
title: z.ZodString;
|
|
301
|
+
status: z.ZodLiteral<number>;
|
|
302
|
+
error: z.ZodObject<{
|
|
303
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
304
|
+
message: z.ZodString;
|
|
305
|
+
}, z.core.$strip>;
|
|
306
|
+
}, z.core.$strip>;
|
|
307
|
+
};
|
|
308
|
+
};
|
|
309
|
+
};
|
|
310
|
+
readonly 401: {
|
|
311
|
+
description: string;
|
|
312
|
+
content: {
|
|
313
|
+
'application/problem+json': {
|
|
314
|
+
schema: z.ZodObject<{
|
|
315
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
316
|
+
requestId: z.ZodOptional<z.ZodString>;
|
|
317
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
318
|
+
detail: z.ZodString;
|
|
319
|
+
title: z.ZodString;
|
|
320
|
+
status: z.ZodLiteral<number>;
|
|
321
|
+
error: z.ZodObject<{
|
|
322
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
323
|
+
message: z.ZodString;
|
|
324
|
+
}, z.core.$strip>;
|
|
325
|
+
}, z.core.$strip>;
|
|
326
|
+
};
|
|
327
|
+
};
|
|
328
|
+
};
|
|
329
|
+
readonly 403: {
|
|
330
|
+
description: string;
|
|
331
|
+
content: {
|
|
332
|
+
'application/problem+json': {
|
|
333
|
+
schema: z.ZodObject<{
|
|
334
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
335
|
+
requestId: z.ZodOptional<z.ZodString>;
|
|
336
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
337
|
+
detail: z.ZodString;
|
|
338
|
+
title: z.ZodString;
|
|
339
|
+
status: z.ZodLiteral<number>;
|
|
340
|
+
error: z.ZodObject<{
|
|
341
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
342
|
+
message: z.ZodString;
|
|
343
|
+
}, z.core.$strip>;
|
|
344
|
+
}, z.core.$strip>;
|
|
345
|
+
};
|
|
346
|
+
};
|
|
347
|
+
};
|
|
348
|
+
readonly 404: {
|
|
349
|
+
description: string;
|
|
350
|
+
content: {
|
|
351
|
+
'application/problem+json': {
|
|
352
|
+
schema: z.ZodObject<{
|
|
353
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
354
|
+
requestId: z.ZodOptional<z.ZodString>;
|
|
355
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
356
|
+
detail: z.ZodString;
|
|
357
|
+
title: z.ZodString;
|
|
358
|
+
status: z.ZodLiteral<number>;
|
|
359
|
+
error: z.ZodObject<{
|
|
360
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
361
|
+
message: z.ZodString;
|
|
362
|
+
}, z.core.$strip>;
|
|
363
|
+
}, z.core.$strip>;
|
|
364
|
+
};
|
|
365
|
+
};
|
|
366
|
+
};
|
|
367
|
+
readonly 422: {
|
|
368
|
+
description: string;
|
|
369
|
+
content: {
|
|
370
|
+
'application/problem+json': {
|
|
371
|
+
schema: z.ZodObject<{
|
|
372
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
373
|
+
requestId: z.ZodOptional<z.ZodString>;
|
|
374
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
375
|
+
detail: z.ZodString;
|
|
376
|
+
title: z.ZodString;
|
|
377
|
+
status: z.ZodLiteral<number>;
|
|
378
|
+
error: z.ZodObject<{
|
|
379
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
380
|
+
message: z.ZodString;
|
|
381
|
+
}, z.core.$strip>;
|
|
382
|
+
}, z.core.$strip>;
|
|
383
|
+
};
|
|
384
|
+
};
|
|
385
|
+
};
|
|
386
|
+
readonly 500: {
|
|
387
|
+
description: string;
|
|
388
|
+
content: {
|
|
389
|
+
'application/problem+json': {
|
|
390
|
+
schema: z.ZodObject<{
|
|
391
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
392
|
+
requestId: z.ZodOptional<z.ZodString>;
|
|
393
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
394
|
+
detail: z.ZodString;
|
|
395
|
+
title: z.ZodString;
|
|
396
|
+
status: z.ZodLiteral<number>;
|
|
397
|
+
error: z.ZodObject<{
|
|
398
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
399
|
+
message: z.ZodString;
|
|
400
|
+
}, z.core.$strip>;
|
|
401
|
+
}, z.core.$strip>;
|
|
402
|
+
};
|
|
403
|
+
};
|
|
404
|
+
};
|
|
405
|
+
};
|
|
406
|
+
export declare const commonDeleteErrorResponses: {
|
|
407
|
+
readonly 400: {
|
|
408
|
+
description: string;
|
|
409
|
+
content: {
|
|
410
|
+
'application/problem+json': {
|
|
411
|
+
schema: z.ZodObject<{
|
|
412
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
413
|
+
requestId: z.ZodOptional<z.ZodString>;
|
|
414
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
415
|
+
detail: z.ZodString;
|
|
416
|
+
title: z.ZodString;
|
|
417
|
+
status: z.ZodLiteral<number>;
|
|
418
|
+
error: z.ZodObject<{
|
|
419
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
420
|
+
message: z.ZodString;
|
|
421
|
+
}, z.core.$strip>;
|
|
422
|
+
}, z.core.$strip>;
|
|
423
|
+
};
|
|
424
|
+
};
|
|
425
|
+
};
|
|
426
|
+
readonly 401: {
|
|
427
|
+
description: string;
|
|
428
|
+
content: {
|
|
429
|
+
'application/problem+json': {
|
|
430
|
+
schema: z.ZodObject<{
|
|
431
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
432
|
+
requestId: z.ZodOptional<z.ZodString>;
|
|
433
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
434
|
+
detail: z.ZodString;
|
|
435
|
+
title: z.ZodString;
|
|
436
|
+
status: z.ZodLiteral<number>;
|
|
437
|
+
error: z.ZodObject<{
|
|
438
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
439
|
+
message: z.ZodString;
|
|
440
|
+
}, z.core.$strip>;
|
|
441
|
+
}, z.core.$strip>;
|
|
442
|
+
};
|
|
443
|
+
};
|
|
444
|
+
};
|
|
445
|
+
readonly 403: {
|
|
446
|
+
description: string;
|
|
447
|
+
content: {
|
|
448
|
+
'application/problem+json': {
|
|
449
|
+
schema: z.ZodObject<{
|
|
450
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
451
|
+
requestId: z.ZodOptional<z.ZodString>;
|
|
452
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
453
|
+
detail: z.ZodString;
|
|
454
|
+
title: z.ZodString;
|
|
455
|
+
status: z.ZodLiteral<number>;
|
|
456
|
+
error: z.ZodObject<{
|
|
457
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
458
|
+
message: z.ZodString;
|
|
459
|
+
}, z.core.$strip>;
|
|
460
|
+
}, z.core.$strip>;
|
|
461
|
+
};
|
|
462
|
+
};
|
|
463
|
+
};
|
|
464
|
+
readonly 404: {
|
|
465
|
+
description: string;
|
|
466
|
+
content: {
|
|
467
|
+
'application/problem+json': {
|
|
468
|
+
schema: z.ZodObject<{
|
|
469
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
470
|
+
requestId: z.ZodOptional<z.ZodString>;
|
|
471
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
472
|
+
detail: z.ZodString;
|
|
473
|
+
title: z.ZodString;
|
|
474
|
+
status: z.ZodLiteral<number>;
|
|
475
|
+
error: z.ZodObject<{
|
|
476
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
477
|
+
message: z.ZodString;
|
|
478
|
+
}, z.core.$strip>;
|
|
479
|
+
}, z.core.$strip>;
|
|
480
|
+
};
|
|
481
|
+
};
|
|
482
|
+
};
|
|
483
|
+
readonly 422: {
|
|
484
|
+
description: string;
|
|
485
|
+
content: {
|
|
486
|
+
'application/problem+json': {
|
|
487
|
+
schema: z.ZodObject<{
|
|
488
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
489
|
+
requestId: z.ZodOptional<z.ZodString>;
|
|
490
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
491
|
+
detail: z.ZodString;
|
|
492
|
+
title: z.ZodString;
|
|
493
|
+
status: z.ZodLiteral<number>;
|
|
494
|
+
error: z.ZodObject<{
|
|
495
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
496
|
+
message: z.ZodString;
|
|
497
|
+
}, z.core.$strip>;
|
|
498
|
+
}, z.core.$strip>;
|
|
499
|
+
};
|
|
500
|
+
};
|
|
501
|
+
};
|
|
502
|
+
readonly 500: {
|
|
503
|
+
description: string;
|
|
504
|
+
content: {
|
|
505
|
+
'application/problem+json': {
|
|
506
|
+
schema: z.ZodObject<{
|
|
507
|
+
instance: z.ZodOptional<z.ZodString>;
|
|
508
|
+
requestId: z.ZodOptional<z.ZodString>;
|
|
509
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
510
|
+
detail: z.ZodString;
|
|
511
|
+
title: z.ZodString;
|
|
512
|
+
status: z.ZodLiteral<number>;
|
|
513
|
+
error: z.ZodObject<{
|
|
514
|
+
code: z.ZodLiteral<"unauthorized" | "bad_request" | "forbidden" | "not_found" | "conflict" | "internal_server_error" | "unprocessable_entity">;
|
|
515
|
+
message: z.ZodString;
|
|
516
|
+
}, z.core.$strip>;
|
|
517
|
+
}, z.core.$strip>;
|
|
518
|
+
};
|
|
519
|
+
};
|
|
520
|
+
};
|
|
521
|
+
};
|
|
522
|
+
export type CommonCreateErrorResponses = typeof commonCreateErrorResponses;
|
|
523
|
+
export type CommonUpdateErrorResponses = typeof commonUpdateErrorResponses;
|
|
524
|
+
export type CommonGetErrorResponses = typeof commonGetErrorResponses;
|
|
525
|
+
export type CommonDeleteErrorResponses = typeof commonDeleteErrorResponses;
|
|
526
|
+
//# sourceMappingURL=error.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"error.d.ts","sourceRoot":"","sources":["../../src/utils/error.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,mBAAmB,CAAC;AACtC,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAGpD,eAAO,MAAM,SAAS;;;;;;;;EAQpB,CAAC;AAaH,eAAO,MAAM,mBAAmB,8CAA8C,CAAC;AAG/E,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;iBA+BL,CAAC;AAE7B,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAClE,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,SAAS,CAAC,CAAC;AAGnD,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;iBAaL,CAAC;AAE5B,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEhE,wBAAgB,cAAc,CAAC,EAC7B,IAAI,EACJ,OAAO,EACP,QAAQ,EACR,SAAS,GACV,EAAE;IACD,IAAI,EAAE,UAAU,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,GAAG,aAAa,CAsChB;AAED,wBAAsB,cAAc,CAClC,KAAK,EAAE,OAAO,EACd,SAAS,CAAC,EAAE,MAAM,GACjB,OAAO,CAAC,cAAc,GAAG;IAAE,KAAK,EAAE;QAAE,IAAI,EAAE,UAAU,CAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,CAAA;CAAE,CAAC,CA4F5E;AA4BD,eAAO,MAAM,kBAAkB,GAAI,MAAM,UAAU,EAAE,aAAa,MAAM;;;;;;;;;;;;;;;;;;CA+CtE,CAAC;AAEH,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM7B,CAAC;AAEX,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAO7B,CAAC;AAEX,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAO1B,CAAC;AAEX,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAO7B,CAAC;AAEX,MAAM,MAAM,0BAA0B,GAAG,OAAO,0BAA0B,CAAC;AAC3E,MAAM,MAAM,0BAA0B,GAAG,OAAO,0BAA0B,CAAC;AAC3E,MAAM,MAAM,uBAAuB,GAAG,OAAO,uBAAuB,CAAC;AACrE,MAAM,MAAM,0BAA0B,GAAG,OAAO,0BAA0B,CAAC"}
|