@veruna/api-contracts 1.1.9 → 1.1.10
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/build/controllers/client-file.controllers.d.ts +1 -1
- package/build/controllers/client-file.controllers.js +1 -1
- package/build/controllers/client-file.controllers.js.map +1 -1
- package/build/rest-api.d.ts +4 -4
- package/build/rest-api.js +4 -4
- package/build/rest-api.js.map +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/build/v1/client-file/commands/client-file-attach.command.d.ts +1 -2
- package/build/v1/client-file/commands/client-file-attach.command.js +1 -1
- package/build/v1/client-file/commands/client-file-attach.command.js.map +1 -1
- package/build/v1/client-file/commands/client-file-delete.command.d.ts +1 -2
- package/build/v1/client-file/commands/client-file-delete.command.js +1 -1
- package/build/v1/client-file/commands/client-file-delete.command.js.map +1 -1
- package/build/v1/client-file/commands/client-file-upload.command.d.ts +1 -2
- package/build/v1/client-file/commands/client-file-upload.command.js +1 -1
- package/build/v1/client-file/commands/client-file-upload.command.js.map +1 -1
- package/build/v1/client-file/queries/client-file-list.query.d.ts +1 -2
- package/build/v1/client-file/queries/client-file-list.query.js +1 -1
- package/build/v1/client-file/queries/client-file-list.query.js.map +1 -1
- package/build/v1/client-file/schemas/client-file-by-id-params.schema.d.ts +0 -1
- package/build/v1/client-file/schemas/client-file-chat-params.schema.d.ts +0 -1
- package/build/v1/client-file/schemas/client-file-chat-params.schema.js +1 -7
- package/build/v1/client-file/schemas/client-file-chat-params.schema.js.map +1 -1
- package/build/v1/s2s/commands/upload-ai-image.command.d.ts +0 -1
- package/build/v1/s2s/schemas/s2s-upload-ai-image-request.schema.d.ts +0 -1
- package/build/v1/s2s/schemas/s2s-upload-ai-image-request.schema.js +0 -1
- package/build/v1/s2s/schemas/s2s-upload-ai-image-request.schema.js.map +1 -1
- package/package.json +1 -1
|
@@ -2,7 +2,6 @@ import { z } from 'zod';
|
|
|
2
2
|
import { HttpMethod } from '../../../shared/http-method';
|
|
3
3
|
export declare namespace ClientFileAttachCommand {
|
|
4
4
|
const Params: z.ZodObject<{
|
|
5
|
-
pageId: z.ZodString;
|
|
6
5
|
chatId: z.ZodString;
|
|
7
6
|
}, z.core.$strip>;
|
|
8
7
|
const Request: z.ZodObject<{
|
|
@@ -23,7 +22,7 @@ export declare namespace ClientFileAttachCommand {
|
|
|
23
22
|
originalSize: z.ZodNumber;
|
|
24
23
|
}, z.core.$strip>>;
|
|
25
24
|
}, z.core.$strip>;
|
|
26
|
-
const URL: (
|
|
25
|
+
const URL: (chatId: string) => string;
|
|
27
26
|
const METHOD = HttpMethod.POST;
|
|
28
27
|
type ParamsType = z.infer<typeof Params>;
|
|
29
28
|
type RequestType = z.infer<typeof Request>;
|
|
@@ -9,7 +9,7 @@ var ClientFileAttachCommand;
|
|
|
9
9
|
ClientFileAttachCommand.Params = schemas_1.ClientFileChatParamsSchema;
|
|
10
10
|
ClientFileAttachCommand.Request = schemas_1.ClientFileAttachRequestSchema;
|
|
11
11
|
ClientFileAttachCommand.Response = schemas_1.ClientFileAttachResponseSchema;
|
|
12
|
-
ClientFileAttachCommand.URL = (
|
|
12
|
+
ClientFileAttachCommand.URL = (chatId) => rest_api_1.REST_API.V1.CLIENT_FILE.ATTACH(chatId);
|
|
13
13
|
ClientFileAttachCommand.METHOD = http_method_1.HttpMethod.POST;
|
|
14
14
|
})(ClientFileAttachCommand || (exports.ClientFileAttachCommand = ClientFileAttachCommand = {}));
|
|
15
15
|
//# sourceMappingURL=client-file-attach.command.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client-file-attach.command.js","sourceRoot":"","sources":["../../../../v1/client-file/commands/client-file-attach.command.ts"],"names":[],"mappings":";;;AACA,wCAIoB;AACpB,gDAA6C;AAC7C,6DAAyD;AAEzD,IAAiB,uBAAuB,
|
|
1
|
+
{"version":3,"file":"client-file-attach.command.js","sourceRoot":"","sources":["../../../../v1/client-file/commands/client-file-attach.command.ts"],"names":[],"mappings":";;;AACA,wCAIoB;AACpB,gDAA6C;AAC7C,6DAAyD;AAEzD,IAAiB,uBAAuB,CAUvC;AAVD,WAAiB,uBAAuB;IACvB,8BAAM,GAAG,oCAA0B,CAAC;IACpC,+BAAO,GAAG,uCAA6B,CAAC;IACxC,gCAAQ,GAAG,wCAA8B,CAAC;IAC1C,2BAAG,GAAG,CAAC,MAAc,EAAE,EAAE,CAAC,mBAAQ,CAAC,EAAE,CAAC,WAAW,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACjE,8BAAM,GAAG,wBAAU,CAAC,IAAI,CAAC;AAK1C,CAAC,EAVgB,uBAAuB,uCAAvB,uBAAuB,QAUvC"}
|
|
@@ -2,14 +2,13 @@ import { z } from 'zod';
|
|
|
2
2
|
import { HttpMethod } from '../../../shared/http-method';
|
|
3
3
|
export declare namespace ClientFileDeleteCommand {
|
|
4
4
|
const Params: z.ZodObject<{
|
|
5
|
-
pageId: z.ZodString;
|
|
6
5
|
chatId: z.ZodString;
|
|
7
6
|
fileId: z.ZodString;
|
|
8
7
|
}, z.core.$strip>;
|
|
9
8
|
const Response: z.ZodObject<{
|
|
10
9
|
uuid: z.ZodString;
|
|
11
10
|
}, z.core.$strip>;
|
|
12
|
-
const URL: (
|
|
11
|
+
const URL: (chatId: string, fileId: string) => string;
|
|
13
12
|
const METHOD = HttpMethod.DELETE;
|
|
14
13
|
type ParamsType = z.infer<typeof Params>;
|
|
15
14
|
type ResponseType = z.infer<typeof Response>;
|
|
@@ -8,7 +8,7 @@ var ClientFileDeleteCommand;
|
|
|
8
8
|
(function (ClientFileDeleteCommand) {
|
|
9
9
|
ClientFileDeleteCommand.Params = schemas_1.ClientFileByIdParamsSchema;
|
|
10
10
|
ClientFileDeleteCommand.Response = schemas_1.ClientFileDeleteResponseSchema;
|
|
11
|
-
ClientFileDeleteCommand.URL = (
|
|
11
|
+
ClientFileDeleteCommand.URL = (chatId, fileId) => rest_api_1.REST_API.V1.CLIENT_FILE.DELETE(chatId, fileId);
|
|
12
12
|
ClientFileDeleteCommand.METHOD = http_method_1.HttpMethod.DELETE;
|
|
13
13
|
})(ClientFileDeleteCommand || (exports.ClientFileDeleteCommand = ClientFileDeleteCommand = {}));
|
|
14
14
|
//# sourceMappingURL=client-file-delete.command.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client-file-delete.command.js","sourceRoot":"","sources":["../../../../v1/client-file/commands/client-file-delete.command.ts"],"names":[],"mappings":";;;AACA,wCAAwF;AACxF,gDAA6C;AAC7C,6DAAyD;AAEzD,IAAiB,uBAAuB,CASvC;AATD,WAAiB,uBAAuB;IACvB,8BAAM,GAAG,oCAA0B,CAAC;IACpC,gCAAQ,GAAG,wCAA8B,CAAC;IAC1C,2BAAG,GAAG,CAAC,MAAc,EAAE,MAAc,EAAE,
|
|
1
|
+
{"version":3,"file":"client-file-delete.command.js","sourceRoot":"","sources":["../../../../v1/client-file/commands/client-file-delete.command.ts"],"names":[],"mappings":";;;AACA,wCAAwF;AACxF,gDAA6C;AAC7C,6DAAyD;AAEzD,IAAiB,uBAAuB,CASvC;AATD,WAAiB,uBAAuB;IACvB,8BAAM,GAAG,oCAA0B,CAAC;IACpC,gCAAQ,GAAG,wCAA8B,CAAC;IAC1C,2BAAG,GAAG,CAAC,MAAc,EAAE,MAAc,EAAE,EAAE,CAClD,mBAAQ,CAAC,EAAE,CAAC,WAAW,CAAC,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACtC,8BAAM,GAAG,wBAAU,CAAC,MAAM,CAAC;AAI5C,CAAC,EATgB,uBAAuB,uCAAvB,uBAAuB,QASvC"}
|
|
@@ -2,7 +2,6 @@ import { z } from 'zod';
|
|
|
2
2
|
import { HttpMethod } from '../../../shared/http-method';
|
|
3
3
|
export declare namespace ClientFileUploadCommand {
|
|
4
4
|
const Params: z.ZodObject<{
|
|
5
|
-
pageId: z.ZodString;
|
|
6
5
|
chatId: z.ZodString;
|
|
7
6
|
}, z.core.$strip>;
|
|
8
7
|
const Response: z.ZodObject<{
|
|
@@ -15,7 +14,7 @@ export declare namespace ClientFileUploadCommand {
|
|
|
15
14
|
originalFilename: z.ZodString;
|
|
16
15
|
originalContentType: z.ZodString;
|
|
17
16
|
}, z.core.$strip>;
|
|
18
|
-
const URL: (
|
|
17
|
+
const URL: (chatId: string) => string;
|
|
19
18
|
const METHOD = HttpMethod.PUT;
|
|
20
19
|
type ParamsType = z.infer<typeof Params>;
|
|
21
20
|
type ResponseType = z.infer<typeof Response>;
|
|
@@ -8,7 +8,7 @@ var ClientFileUploadCommand;
|
|
|
8
8
|
(function (ClientFileUploadCommand) {
|
|
9
9
|
ClientFileUploadCommand.Params = schemas_1.ClientFileChatParamsSchema;
|
|
10
10
|
ClientFileUploadCommand.Response = schemas_1.ClientFileUploadResponseSchema;
|
|
11
|
-
ClientFileUploadCommand.URL = (
|
|
11
|
+
ClientFileUploadCommand.URL = (chatId) => rest_api_1.REST_API.V1.CLIENT_FILE.UPLOAD(chatId);
|
|
12
12
|
ClientFileUploadCommand.METHOD = http_method_1.HttpMethod.PUT;
|
|
13
13
|
})(ClientFileUploadCommand || (exports.ClientFileUploadCommand = ClientFileUploadCommand = {}));
|
|
14
14
|
//# sourceMappingURL=client-file-upload.command.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client-file-upload.command.js","sourceRoot":"","sources":["../../../../v1/client-file/commands/client-file-upload.command.ts"],"names":[],"mappings":";;;AACA,wCAGoB;AACpB,gDAA6C;AAC7C,6DAAyD;AAEzD,IAAiB,uBAAuB,
|
|
1
|
+
{"version":3,"file":"client-file-upload.command.js","sourceRoot":"","sources":["../../../../v1/client-file/commands/client-file-upload.command.ts"],"names":[],"mappings":";;;AACA,wCAGoB;AACpB,gDAA6C;AAC7C,6DAAyD;AAEzD,IAAiB,uBAAuB,CAQvC;AARD,WAAiB,uBAAuB;IACvB,8BAAM,GAAG,oCAA0B,CAAC;IACpC,gCAAQ,GAAG,wCAA8B,CAAC;IAC1C,2BAAG,GAAG,CAAC,MAAc,EAAE,EAAE,CAAC,mBAAQ,CAAC,EAAE,CAAC,WAAW,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACjE,8BAAM,GAAG,wBAAU,CAAC,GAAG,CAAC;AAIzC,CAAC,EARgB,uBAAuB,uCAAvB,uBAAuB,QAQvC"}
|
|
@@ -2,7 +2,6 @@ import { z } from 'zod';
|
|
|
2
2
|
import { HttpMethod } from '../../../shared/http-method';
|
|
3
3
|
export declare namespace ClientFileListQuery {
|
|
4
4
|
const Params: z.ZodObject<{
|
|
5
|
-
pageId: z.ZodString;
|
|
6
5
|
chatId: z.ZodString;
|
|
7
6
|
}, z.core.$strip>;
|
|
8
7
|
const Response: z.ZodObject<{
|
|
@@ -17,7 +16,7 @@ export declare namespace ClientFileListQuery {
|
|
|
17
16
|
originalContentType: z.ZodString;
|
|
18
17
|
}, z.core.$strip>>;
|
|
19
18
|
}, z.core.$strip>;
|
|
20
|
-
const URL: (
|
|
19
|
+
const URL: (chatId: string) => string;
|
|
21
20
|
const METHOD = HttpMethod.GET;
|
|
22
21
|
type ParamsType = z.infer<typeof Params>;
|
|
23
22
|
type ResponseType = z.infer<typeof Response>;
|
|
@@ -8,7 +8,7 @@ var ClientFileListQuery;
|
|
|
8
8
|
(function (ClientFileListQuery) {
|
|
9
9
|
ClientFileListQuery.Params = schemas_1.ClientFileChatParamsSchema;
|
|
10
10
|
ClientFileListQuery.Response = schemas_1.ClientFileListResponseSchema;
|
|
11
|
-
ClientFileListQuery.URL = (
|
|
11
|
+
ClientFileListQuery.URL = (chatId) => rest_api_1.REST_API.V1.CLIENT_FILE.LIST(chatId);
|
|
12
12
|
ClientFileListQuery.METHOD = http_method_1.HttpMethod.GET;
|
|
13
13
|
})(ClientFileListQuery || (exports.ClientFileListQuery = ClientFileListQuery = {}));
|
|
14
14
|
//# sourceMappingURL=client-file-list.query.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client-file-list.query.js","sourceRoot":"","sources":["../../../../v1/client-file/queries/client-file-list.query.ts"],"names":[],"mappings":";;;AACA,wCAAsF;AACtF,gDAA6C;AAC7C,6DAAyD;AAEzD,IAAiB,mBAAmB,
|
|
1
|
+
{"version":3,"file":"client-file-list.query.js","sourceRoot":"","sources":["../../../../v1/client-file/queries/client-file-list.query.ts"],"names":[],"mappings":";;;AACA,wCAAsF;AACtF,gDAA6C;AAC7C,6DAAyD;AAEzD,IAAiB,mBAAmB,CAQnC;AARD,WAAiB,mBAAmB;IACnB,0BAAM,GAAG,oCAA0B,CAAC;IACpC,4BAAQ,GAAG,sCAA4B,CAAC;IACxC,uBAAG,GAAG,CAAC,MAAc,EAAE,EAAE,CAAC,mBAAQ,CAAC,EAAE,CAAC,WAAW,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;IAC/D,0BAAM,GAAG,wBAAU,CAAC,GAAG,CAAC;AAIzC,CAAC,EARgB,mBAAmB,mCAAnB,mBAAmB,QAQnC"}
|
|
@@ -1,12 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ClientFileChatParamsSchema = void 0;
|
|
4
|
-
const zod_1 = require("zod");
|
|
5
4
|
const schemas_1 = require("../../chat/schemas");
|
|
6
|
-
|
|
7
|
-
pageId: zod_1.z
|
|
8
|
-
.string({ error: 'PageIdParam.pageId.required' })
|
|
9
|
-
.uuid({ message: 'PageIdParam.pageId.invalid' }),
|
|
10
|
-
});
|
|
11
|
-
exports.ClientFileChatParamsSchema = ClientFilePageIdParamSchema.merge(schemas_1.ChatIdParamSchema);
|
|
5
|
+
exports.ClientFileChatParamsSchema = schemas_1.ChatIdParamSchema;
|
|
12
6
|
//# sourceMappingURL=client-file-chat-params.schema.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client-file-chat-params.schema.js","sourceRoot":"","sources":["../../../../v1/client-file/schemas/client-file-chat-params.schema.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"client-file-chat-params.schema.js","sourceRoot":"","sources":["../../../../v1/client-file/schemas/client-file-chat-params.schema.ts"],"names":[],"mappings":";;;AACA,gDAAuD;AAK1C,QAAA,0BAA0B,GAAG,2BAAiB,CAAC"}
|
|
@@ -3,7 +3,6 @@ import { HttpMethod } from '../../../shared/http-method';
|
|
|
3
3
|
export declare namespace S2SUploadAiImageCommand {
|
|
4
4
|
const Request: z.ZodObject<{
|
|
5
5
|
chatId: z.ZodString;
|
|
6
|
-
pageId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7
6
|
messageId: z.ZodString;
|
|
8
7
|
ownerId: z.ZodString;
|
|
9
8
|
ownerType: z.ZodEnum<typeof import("../schemas").S2SUploadAiImageOwnerType>;
|
|
@@ -6,7 +6,6 @@ export declare enum S2SUploadAiImageOwnerType {
|
|
|
6
6
|
export declare const S2SUploadAiImageOwnerTypeSchema: z.ZodEnum<typeof S2SUploadAiImageOwnerType>;
|
|
7
7
|
export declare const S2SUploadAiImageRequestSchema: z.ZodObject<{
|
|
8
8
|
chatId: z.ZodString;
|
|
9
|
-
pageId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10
9
|
messageId: z.ZodString;
|
|
11
10
|
ownerId: z.ZodString;
|
|
12
11
|
ownerType: z.ZodEnum<typeof S2SUploadAiImageOwnerType>;
|
|
@@ -11,7 +11,6 @@ var S2SUploadAiImageOwnerType;
|
|
|
11
11
|
exports.S2SUploadAiImageOwnerTypeSchema = zod_1.z.nativeEnum(S2SUploadAiImageOwnerType);
|
|
12
12
|
exports.S2SUploadAiImageRequestSchema = zod_1.z.object({
|
|
13
13
|
chatId: zod_1.z.string({ error: 'S2SUploadAiImageRequest.chatId.required' }).regex(shared_1.UUID_REGEX, { message: 'S2SUploadAiImageRequest.chatId.invalid' }),
|
|
14
|
-
pageId: zod_1.z.string({ error: 'S2SUploadAiImageRequest.pageId.required' }).regex(shared_1.UUID_REGEX, { message: 'S2SUploadAiImageRequest.pageId.invalid' }).nullable().optional(),
|
|
15
14
|
messageId: zod_1.z.string({ error: 'S2SUploadAiImageRequest.messageId.required' }).regex(shared_1.UUID_REGEX, { message: 'S2SUploadAiImageRequest.messageId.invalid' }),
|
|
16
15
|
ownerId: zod_1.z.string({ error: 'S2SUploadAiImageRequest.ownerId.required' }).regex(shared_1.UUID_REGEX, { message: 'S2SUploadAiImageRequest.ownerId.invalid' }),
|
|
17
16
|
ownerType: exports.S2SUploadAiImageOwnerTypeSchema,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"s2s-upload-ai-image-request.schema.js","sourceRoot":"","sources":["../../../../v1/s2s/schemas/s2s-upload-ai-image-request.schema.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,4CAA6C;AAE7C,IAAY,yBAGX;AAHD,WAAY,yBAAyB;IACjC,sDAAyB,CAAA;IACzB,0DAA6B,CAAA;AACjC,CAAC,EAHW,yBAAyB,yCAAzB,yBAAyB,QAGpC;AAEY,QAAA,+BAA+B,GAAG,OAAC,CAAC,UAAU,CAAC,yBAAyB,CAAC,CAAC;AAE1E,QAAA,6BAA6B,GAAG,OAAC,CAAC,MAAM,CAAC;IAClD,MAAM,EAAE,OAAC,CAAC,MAAM,CAAC,EAAE,KAAK,EAAE,yCAAyC,EAAE,CAAC,CAAC,KAAK,CAAC,mBAAU,EAAE,EAAE,OAAO,EAAE,wCAAwC,EAAE,CAAC;IAC/I,
|
|
1
|
+
{"version":3,"file":"s2s-upload-ai-image-request.schema.js","sourceRoot":"","sources":["../../../../v1/s2s/schemas/s2s-upload-ai-image-request.schema.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,4CAA6C;AAE7C,IAAY,yBAGX;AAHD,WAAY,yBAAyB;IACjC,sDAAyB,CAAA;IACzB,0DAA6B,CAAA;AACjC,CAAC,EAHW,yBAAyB,yCAAzB,yBAAyB,QAGpC;AAEY,QAAA,+BAA+B,GAAG,OAAC,CAAC,UAAU,CAAC,yBAAyB,CAAC,CAAC;AAE1E,QAAA,6BAA6B,GAAG,OAAC,CAAC,MAAM,CAAC;IAClD,MAAM,EAAE,OAAC,CAAC,MAAM,CAAC,EAAE,KAAK,EAAE,yCAAyC,EAAE,CAAC,CAAC,KAAK,CAAC,mBAAU,EAAE,EAAE,OAAO,EAAE,wCAAwC,EAAE,CAAC;IAC/I,SAAS,EAAE,OAAC,CAAC,MAAM,CAAC,EAAE,KAAK,EAAE,4CAA4C,EAAE,CAAC,CAAC,KAAK,CAAC,mBAAU,EAAE,EAAE,OAAO,EAAE,2CAA2C,EAAE,CAAC;IACxJ,OAAO,EAAE,OAAC,CAAC,MAAM,CAAC,EAAE,KAAK,EAAE,0CAA0C,EAAE,CAAC,CAAC,KAAK,CAAC,mBAAU,EAAE,EAAE,OAAO,EAAE,yCAAyC,EAAE,CAAC;IAClJ,SAAS,EAAE,uCAA+B;IAC1C,WAAW,EAAE,OAAC,CAAC,MAAM,CAAC,EAAE,KAAK,EAAE,8CAA8C,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,EAAE,OAAO,EAAE,yCAAyC,EAAE,CAAC;IAC/I,QAAQ,EAAE,OAAC,CAAC,MAAM,CAAC,EAAE,KAAK,EAAE,2CAA2C,EAAE,CAAC,CAAC,KAAK,CAAC,wBAAwB,EAAE,EAAE,OAAO,EAAE,0CAA0C,EAAE,CAAC;IACnK,QAAQ,EAAE,OAAC,CAAC,MAAM,CAAC,EAAE,KAAK,EAAE,2CAA2C,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,EAAE,OAAO,EAAE,sCAAsC,EAAE,CAAC,CAAC,GAAG,CAAC,GAAG,EAAE,EAAE,OAAO,EAAE,sCAAsC,EAAE,CAAC;IACpM,cAAc,EAAE,OAAC,CAAC,MAAM,CAAC,EAAE,KAAK,EAAE,iDAAiD,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,EAAE,OAAO,EAAE,4CAA4C,EAAE,CAAC,CAAC,GAAG,CAAC,GAAG,EAAE,EAAE,OAAO,EAAE,4CAA4C,EAAE,CAAC;IAC5N,UAAU,EAAE,OAAC,CAAC,MAAM,CAAC,EAAE,KAAK,EAAE,6CAA6C,EAAE,CAAC,CAAC,GAAG,CAAC,EAAE,OAAO,EAAE,4CAA4C,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,EAAE,OAAO,EAAE,wCAAwC,EAAE,CAAC;CAC9M,CAAC,CAAC"}
|