@veruna/api-contracts 4.1.0 → 6.0.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/build/tsconfig.tsbuildinfo +1 -1
- package/build/v1/assistants/admin/commands/create-assistant.command.d.ts +1 -1
- package/build/v1/assistants/admin/commands/update-assistant.command.d.ts +1 -1
- package/build/v1/assistants/admin/queries/get-assistant.query.d.ts +1 -1
- package/build/v1/assistants/admin/queries/get-assistants.query.d.ts +3 -3
- package/build/v1/assistants/catalog/queries/catalog-long-reg.query.d.ts +2 -2
- package/build/v1/assistants/catalog/queries/catalog-long-unreg.query.d.ts +2 -2
- package/build/v1/assistants/catalog/queries/catalog-short-reg.query.d.ts +4 -4
- package/build/v1/assistants/catalog/queries/catalog-short-unreg.query.d.ts +2 -2
- package/build/v1/assistants/public/queries/get-tree.query.d.ts +2 -2
- package/build/v1/assistants/schemas/assistant-public.schema.d.ts +1 -1
- package/build/v1/assistants/schemas/assistant-public.schema.js +1 -1
- package/build/v1/assistants/schemas/assistant-public.schema.js.map +1 -1
- package/build/v1/assistants/schemas/assistant-response.schema.d.ts +2 -2
- package/build/v1/assistants/schemas/assistant-response.schema.js +1 -1
- package/build/v1/assistants/schemas/assistant-response.schema.js.map +1 -1
- package/build/v1/assistants/schemas/assistant-tree.schema.d.ts +6 -6
- package/build/v1/assistants/schemas/assistant-tree.schema.js +1 -1
- package/build/v1/assistants/schemas/assistant-tree.schema.js.map +1 -1
- package/build/v1/assistants/schemas/catalog-long-response.schema.d.ts +12 -12
- package/build/v1/assistants/schemas/catalog-long-response.schema.js +1 -1
- package/build/v1/assistants/schemas/catalog-long-response.schema.js.map +1 -1
- package/build/v1/assistants/schemas/catalog-short-response.schema.d.ts +11 -11
- package/build/v1/assistants/schemas/catalog-short-response.schema.js +2 -2
- package/build/v1/assistants/schemas/catalog-short-response.schema.js.map +1 -1
- package/build/v1/assistants/schemas/create-user-assistant-request.schema.d.ts +1 -1
- package/build/v1/assistants/schemas/create-user-assistant-request.schema.js +1 -2
- package/build/v1/assistants/schemas/create-user-assistant-request.schema.js.map +1 -1
- package/build/v1/assistants/schemas/update-user-assistant-request.schema.d.ts +1 -1
- package/build/v1/assistants/schemas/update-user-assistant-request.schema.js +0 -1
- package/build/v1/assistants/schemas/update-user-assistant-request.schema.js.map +1 -1
- package/build/v1/assistants/schemas/user-assistant-response.schema.d.ts +1 -1
- package/build/v1/assistants/schemas/user-assistant-response.schema.js +1 -1
- package/build/v1/assistants/schemas/user-assistant-response.schema.js.map +1 -1
- package/build/v1/assistants/user/commands/create-user-assistant.command.d.ts +2 -2
- package/build/v1/assistants/user/commands/update-user-assistant.command.d.ts +2 -2
- package/build/v1/assistants/user/queries/get-user-assistant.query.d.ts +1 -1
- package/build/v1/attribution/attribution.errors.d.ts +2 -1
- package/build/v1/attribution/attribution.errors.js +5 -0
- package/build/v1/attribution/attribution.errors.js.map +1 -1
- package/build/v1/seo-pages/public/queries/get-index-page.query.d.ts +1 -1
- package/build/v1/seo-pages/public/queries/get-page-by-alias.query.d.ts +1 -1
- package/build/v1/seo-pages/schemas/page-response.schema.d.ts +1 -1
- package/build/v1/wallet/queries/list-wallet-events.query.d.ts +1 -1
- package/build/v1/wallet/schemas/wallet-event.schema.d.ts +2 -2
- package/build/v1/wallet/schemas/wallet-event.schema.js +1 -1
- package/build/v1/wallet/schemas/wallet-event.schema.js.map +1 -1
- package/package.json +1 -1
|
@@ -24,7 +24,7 @@ export declare namespace AdminAssistantCreateAssistantCommand {
|
|
|
24
24
|
description: z.ZodString;
|
|
25
25
|
placeholder: z.ZodString;
|
|
26
26
|
seoName: z.ZodNullable<z.ZodString>;
|
|
27
|
-
image: z.
|
|
27
|
+
image: z.ZodString;
|
|
28
28
|
prompt: z.ZodString;
|
|
29
29
|
categoryId: z.ZodNullable<z.ZodString>;
|
|
30
30
|
order: z.ZodNumber;
|
|
@@ -25,7 +25,7 @@ export declare namespace AdminAssistantUpdateAssistantCommand {
|
|
|
25
25
|
description: z.ZodString;
|
|
26
26
|
placeholder: z.ZodString;
|
|
27
27
|
seoName: z.ZodNullable<z.ZodString>;
|
|
28
|
-
image: z.
|
|
28
|
+
image: z.ZodString;
|
|
29
29
|
prompt: z.ZodString;
|
|
30
30
|
categoryId: z.ZodNullable<z.ZodString>;
|
|
31
31
|
order: z.ZodNumber;
|
|
@@ -8,7 +8,7 @@ export declare namespace AdminAssistantGetAssistantQuery {
|
|
|
8
8
|
description: z.ZodString;
|
|
9
9
|
placeholder: z.ZodString;
|
|
10
10
|
seoName: z.ZodNullable<z.ZodString>;
|
|
11
|
-
image: z.
|
|
11
|
+
image: z.ZodString;
|
|
12
12
|
prompt: z.ZodString;
|
|
13
13
|
categoryId: z.ZodNullable<z.ZodString>;
|
|
14
14
|
order: z.ZodNumber;
|
|
@@ -11,7 +11,7 @@ export declare const AdminAssistantListItemSchema: z.ZodObject<{
|
|
|
11
11
|
description: z.ZodString;
|
|
12
12
|
placeholder: z.ZodString;
|
|
13
13
|
seoName: z.ZodNullable<z.ZodString>;
|
|
14
|
-
image: z.
|
|
14
|
+
image: z.ZodString;
|
|
15
15
|
prompt: z.ZodString;
|
|
16
16
|
categoryId: z.ZodNullable<z.ZodString>;
|
|
17
17
|
order: z.ZodNumber;
|
|
@@ -52,7 +52,7 @@ export declare const GetAssistantsResponseSchema: z.ZodObject<{
|
|
|
52
52
|
description: z.ZodString;
|
|
53
53
|
placeholder: z.ZodString;
|
|
54
54
|
seoName: z.ZodNullable<z.ZodString>;
|
|
55
|
-
image: z.
|
|
55
|
+
image: z.ZodString;
|
|
56
56
|
prompt: z.ZodString;
|
|
57
57
|
categoryId: z.ZodNullable<z.ZodString>;
|
|
58
58
|
order: z.ZodNumber;
|
|
@@ -103,7 +103,7 @@ export declare namespace AdminAssistantGetAssistantsQuery {
|
|
|
103
103
|
description: z.ZodString;
|
|
104
104
|
placeholder: z.ZodString;
|
|
105
105
|
seoName: z.ZodNullable<z.ZodString>;
|
|
106
|
-
image: z.
|
|
106
|
+
image: z.ZodString;
|
|
107
107
|
prompt: z.ZodString;
|
|
108
108
|
categoryId: z.ZodNullable<z.ZodString>;
|
|
109
109
|
order: z.ZodNumber;
|
|
@@ -20,7 +20,7 @@ export declare namespace CatalogLongRegQuery {
|
|
|
20
20
|
title: z.ZodString;
|
|
21
21
|
description: z.ZodString;
|
|
22
22
|
placeholder: z.ZodString;
|
|
23
|
-
image: z.
|
|
23
|
+
image: z.ZodString;
|
|
24
24
|
tags: z.ZodArray<z.ZodString>;
|
|
25
25
|
usageCount: z.ZodNumber;
|
|
26
26
|
author: z.ZodNullable<z.ZodObject<{
|
|
@@ -36,7 +36,7 @@ export declare namespace CatalogLongRegQuery {
|
|
|
36
36
|
title: z.ZodString;
|
|
37
37
|
description: z.ZodString;
|
|
38
38
|
placeholder: z.ZodString;
|
|
39
|
-
image: z.
|
|
39
|
+
image: z.ZodString;
|
|
40
40
|
tags: z.ZodArray<z.ZodString>;
|
|
41
41
|
usageCount: z.ZodNumber;
|
|
42
42
|
author: z.ZodNullable<z.ZodObject<{
|
|
@@ -19,7 +19,7 @@ export declare namespace CatalogLongUnregQuery {
|
|
|
19
19
|
title: z.ZodString;
|
|
20
20
|
description: z.ZodString;
|
|
21
21
|
placeholder: z.ZodString;
|
|
22
|
-
image: z.
|
|
22
|
+
image: z.ZodString;
|
|
23
23
|
tags: z.ZodArray<z.ZodString>;
|
|
24
24
|
usageCount: z.ZodNumber;
|
|
25
25
|
author: z.ZodNullable<z.ZodObject<{
|
|
@@ -33,7 +33,7 @@ export declare namespace CatalogLongUnregQuery {
|
|
|
33
33
|
title: z.ZodString;
|
|
34
34
|
description: z.ZodString;
|
|
35
35
|
placeholder: z.ZodString;
|
|
36
|
-
image: z.
|
|
36
|
+
image: z.ZodString;
|
|
37
37
|
tags: z.ZodArray<z.ZodString>;
|
|
38
38
|
usageCount: z.ZodNumber;
|
|
39
39
|
author: z.ZodNullable<z.ZodObject<{
|
|
@@ -8,7 +8,7 @@ export declare namespace CatalogShortRegQuery {
|
|
|
8
8
|
title: z.ZodString;
|
|
9
9
|
description: z.ZodString;
|
|
10
10
|
placeholder: z.ZodString;
|
|
11
|
-
image: z.
|
|
11
|
+
image: z.ZodString;
|
|
12
12
|
tags: z.ZodArray<z.ZodString>;
|
|
13
13
|
visibility: z.ZodEnum<typeof import("../..").AssistantVisibility>;
|
|
14
14
|
usageCount: z.ZodNumber;
|
|
@@ -22,7 +22,7 @@ export declare namespace CatalogShortRegQuery {
|
|
|
22
22
|
title: z.ZodString;
|
|
23
23
|
description: z.ZodString;
|
|
24
24
|
placeholder: z.ZodString;
|
|
25
|
-
image: z.
|
|
25
|
+
image: z.ZodString;
|
|
26
26
|
tags: z.ZodArray<z.ZodString>;
|
|
27
27
|
visibility: z.ZodEnum<typeof import("../..").AssistantVisibility>;
|
|
28
28
|
usageCount: z.ZodNumber;
|
|
@@ -40,7 +40,7 @@ export declare namespace CatalogShortRegQuery {
|
|
|
40
40
|
title: z.ZodString;
|
|
41
41
|
description: z.ZodString;
|
|
42
42
|
placeholder: z.ZodString;
|
|
43
|
-
image: z.
|
|
43
|
+
image: z.ZodString;
|
|
44
44
|
tags: z.ZodArray<z.ZodString>;
|
|
45
45
|
usageCount: z.ZodNumber;
|
|
46
46
|
author: z.ZodNullable<z.ZodObject<{
|
|
@@ -59,7 +59,7 @@ export declare namespace CatalogShortRegQuery {
|
|
|
59
59
|
title: z.ZodString;
|
|
60
60
|
description: z.ZodString;
|
|
61
61
|
placeholder: z.ZodString;
|
|
62
|
-
image: z.
|
|
62
|
+
image: z.ZodString;
|
|
63
63
|
tags: z.ZodArray<z.ZodString>;
|
|
64
64
|
usageCount: z.ZodNumber;
|
|
65
65
|
author: z.ZodNullable<z.ZodObject<{
|
|
@@ -12,7 +12,7 @@ export declare namespace CatalogShortUnregQuery {
|
|
|
12
12
|
title: z.ZodString;
|
|
13
13
|
description: z.ZodString;
|
|
14
14
|
placeholder: z.ZodString;
|
|
15
|
-
image: z.
|
|
15
|
+
image: z.ZodString;
|
|
16
16
|
tags: z.ZodArray<z.ZodString>;
|
|
17
17
|
usageCount: z.ZodNumber;
|
|
18
18
|
author: z.ZodNullable<z.ZodObject<{
|
|
@@ -31,7 +31,7 @@ export declare namespace CatalogShortUnregQuery {
|
|
|
31
31
|
title: z.ZodString;
|
|
32
32
|
description: z.ZodString;
|
|
33
33
|
placeholder: z.ZodString;
|
|
34
|
-
image: z.
|
|
34
|
+
image: z.ZodString;
|
|
35
35
|
tags: z.ZodArray<z.ZodString>;
|
|
36
36
|
usageCount: z.ZodNumber;
|
|
37
37
|
author: z.ZodNullable<z.ZodObject<{
|
|
@@ -12,7 +12,7 @@ export declare namespace AssistantGetTreeQuery {
|
|
|
12
12
|
description: z.ZodString;
|
|
13
13
|
placeholder: z.ZodString;
|
|
14
14
|
seoName: z.ZodNullable<z.ZodString>;
|
|
15
|
-
image: z.
|
|
15
|
+
image: z.ZodString;
|
|
16
16
|
marks: z.ZodArray<z.ZodEnum<typeof import("../../schemas").AssistantMark>>;
|
|
17
17
|
page: z.ZodNullable<z.ZodObject<{
|
|
18
18
|
type: z.ZodEnum<typeof import("../../..").PageType>;
|
|
@@ -27,7 +27,7 @@ export declare namespace AssistantGetTreeQuery {
|
|
|
27
27
|
description: z.ZodString;
|
|
28
28
|
placeholder: z.ZodString;
|
|
29
29
|
seoName: z.ZodNullable<z.ZodString>;
|
|
30
|
-
image: z.
|
|
30
|
+
image: z.ZodString;
|
|
31
31
|
marks: z.ZodArray<z.ZodEnum<typeof import("../../schemas").AssistantMark>>;
|
|
32
32
|
page: z.ZodNullable<z.ZodObject<{
|
|
33
33
|
type: z.ZodEnum<typeof import("../../..").PageType>;
|
|
@@ -6,7 +6,7 @@ export declare const PublicAssistantSchema: z.ZodObject<{
|
|
|
6
6
|
description: z.ZodString;
|
|
7
7
|
placeholder: z.ZodString;
|
|
8
8
|
seoName: z.ZodNullable<z.ZodString>;
|
|
9
|
-
image: z.
|
|
9
|
+
image: z.ZodString;
|
|
10
10
|
marks: z.ZodArray<z.ZodEnum<typeof AssistantMark>>;
|
|
11
11
|
hints: z.ZodArray<z.ZodObject<{
|
|
12
12
|
uuid: z.ZodString;
|
|
@@ -11,7 +11,7 @@ exports.PublicAssistantSchema = zod_1.z.object({
|
|
|
11
11
|
description: zod_1.z.string(),
|
|
12
12
|
placeholder: zod_1.z.string(),
|
|
13
13
|
seoName: zod_1.z.string().nullable(),
|
|
14
|
-
image: zod_1.z.string()
|
|
14
|
+
image: zod_1.z.string(),
|
|
15
15
|
marks: zod_1.z.array(zod_1.z.enum(assistant_mark_enum_1.AssistantMark)),
|
|
16
16
|
hints: zod_1.z.array(schemas_1.PublicAssistantHintResponseSchema),
|
|
17
17
|
createdAt: zod_1.z.string().regex(shared_1.DATETIME_REGEX),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"assistant-public.schema.js","sourceRoot":"","sources":["../../../../v1/assistants/schemas/assistant-public.schema.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,4CAA6D;AAC7D,2DAAkF;AAClF,+DAAsD;AAEzC,QAAA,qBAAqB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC1C,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,mBAAU,CAAC;IAClC,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;IACjB,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9B,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE
|
|
1
|
+
{"version":3,"file":"assistant-public.schema.js","sourceRoot":"","sources":["../../../../v1/assistants/schemas/assistant-public.schema.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,4CAA6D;AAC7D,2DAAkF;AAClF,+DAAsD;AAEzC,QAAA,qBAAqB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC1C,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,mBAAU,CAAC;IAClC,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;IACjB,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9B,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;IACjB,KAAK,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,IAAI,CAAC,mCAAa,CAAC,CAAC;IACrC,KAAK,EAAE,OAAC,CAAC,KAAK,CAAC,2CAAiC,CAAC;IACjD,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,uBAAc,CAAC;IAC3C,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,uBAAc,CAAC;CAC9C,CAAC,CAAC"}
|
|
@@ -8,7 +8,7 @@ export declare const AssistantResponseSchema: z.ZodObject<{
|
|
|
8
8
|
description: z.ZodString;
|
|
9
9
|
placeholder: z.ZodString;
|
|
10
10
|
seoName: z.ZodNullable<z.ZodString>;
|
|
11
|
-
image: z.
|
|
11
|
+
image: z.ZodString;
|
|
12
12
|
prompt: z.ZodString;
|
|
13
13
|
categoryId: z.ZodNullable<z.ZodString>;
|
|
14
14
|
order: z.ZodNumber;
|
|
@@ -39,7 +39,7 @@ export declare const AssistantListItemSchema: z.ZodObject<{
|
|
|
39
39
|
description: z.ZodString;
|
|
40
40
|
placeholder: z.ZodString;
|
|
41
41
|
seoName: z.ZodNullable<z.ZodString>;
|
|
42
|
-
image: z.
|
|
42
|
+
image: z.ZodString;
|
|
43
43
|
prompt: z.ZodString;
|
|
44
44
|
categoryId: z.ZodNullable<z.ZodString>;
|
|
45
45
|
order: z.ZodNumber;
|
|
@@ -14,7 +14,7 @@ exports.AssistantResponseSchema = zod_1.z.object({
|
|
|
14
14
|
description: zod_1.z.string(),
|
|
15
15
|
placeholder: zod_1.z.string(),
|
|
16
16
|
seoName: zod_1.z.string().nullable(),
|
|
17
|
-
image: zod_1.z.string()
|
|
17
|
+
image: zod_1.z.string(),
|
|
18
18
|
prompt: zod_1.z.string(),
|
|
19
19
|
categoryId: zod_1.z.string().regex(shared_1.UUID_REGEX).nullable(),
|
|
20
20
|
order: zod_1.z.number(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"assistant-response.schema.js","sourceRoot":"","sources":["../../../../v1/assistants/schemas/assistant-response.schema.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,4CAA6D;AAC7D,uEAAkE;AAClE,iFAA2E;AAC3E,+DAAsD;AACtD,mEAA0D;AAC1D,2EAAkE;AAErD,QAAA,uBAAuB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC5C,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,mBAAU,CAAC;IAClC,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;IACjB,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9B,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE
|
|
1
|
+
{"version":3,"file":"assistant-response.schema.js","sourceRoot":"","sources":["../../../../v1/assistants/schemas/assistant-response.schema.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,4CAA6D;AAC7D,uEAAkE;AAClE,iFAA2E;AAC3E,+DAAsD;AACtD,mEAA0D;AAC1D,2EAAkE;AAErD,QAAA,uBAAuB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC5C,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,mBAAU,CAAC;IAClC,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;IACjB,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9B,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;IACjB,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE;IAClB,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,mBAAU,CAAC,CAAC,QAAQ,EAAE;IACnD,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;IACjB,KAAK,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,IAAI,CAAC,mCAAa,CAAC,CAAC;IACrC,IAAI,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC;IACzB,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;IAC5B,MAAM,EAAE,OAAC,CAAC,IAAI,CAAC,uCAAe,CAAC;IAC/B,UAAU,EAAE,OAAC,CAAC,IAAI,CAAC,+CAAmB,CAAC;IACvC,MAAM,EAAE,+CAAqB,CAAC,QAAQ,EAAE;IACxC,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,uBAAc,CAAC,CAAC,QAAQ,EAAE;IACtD,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,uBAAc,CAAC;IAC3C,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,uBAAc,CAAC;IAC3C,IAAI,EAAE,wDAAyB,CAAC,QAAQ,EAAE;CAC7C,CAAC,CAAC;AAEU,QAAA,uBAAuB,GAAG,+BAAuB,CAAC"}
|
|
@@ -6,7 +6,7 @@ export declare const AssistantTreeChildSchema: z.ZodObject<{
|
|
|
6
6
|
description: z.ZodString;
|
|
7
7
|
placeholder: z.ZodString;
|
|
8
8
|
seoName: z.ZodNullable<z.ZodString>;
|
|
9
|
-
image: z.
|
|
9
|
+
image: z.ZodString;
|
|
10
10
|
marks: z.ZodArray<z.ZodEnum<typeof AssistantMark>>;
|
|
11
11
|
page: z.ZodNullable<z.ZodObject<{
|
|
12
12
|
type: z.ZodEnum<typeof import("../..").PageType>;
|
|
@@ -25,7 +25,7 @@ export declare const AssistantTreeNodeSchema: z.ZodObject<{
|
|
|
25
25
|
description: z.ZodString;
|
|
26
26
|
placeholder: z.ZodString;
|
|
27
27
|
seoName: z.ZodNullable<z.ZodString>;
|
|
28
|
-
image: z.
|
|
28
|
+
image: z.ZodString;
|
|
29
29
|
marks: z.ZodArray<z.ZodEnum<typeof AssistantMark>>;
|
|
30
30
|
page: z.ZodNullable<z.ZodObject<{
|
|
31
31
|
type: z.ZodEnum<typeof import("../..").PageType>;
|
|
@@ -45,7 +45,7 @@ export declare const AssistantTreeResponseItemSchema: z.ZodUnion<readonly [z.Zod
|
|
|
45
45
|
description: z.ZodString;
|
|
46
46
|
placeholder: z.ZodString;
|
|
47
47
|
seoName: z.ZodNullable<z.ZodString>;
|
|
48
|
-
image: z.
|
|
48
|
+
image: z.ZodString;
|
|
49
49
|
marks: z.ZodArray<z.ZodEnum<typeof AssistantMark>>;
|
|
50
50
|
page: z.ZodNullable<z.ZodObject<{
|
|
51
51
|
type: z.ZodEnum<typeof import("../..").PageType>;
|
|
@@ -60,7 +60,7 @@ export declare const AssistantTreeResponseItemSchema: z.ZodUnion<readonly [z.Zod
|
|
|
60
60
|
description: z.ZodString;
|
|
61
61
|
placeholder: z.ZodString;
|
|
62
62
|
seoName: z.ZodNullable<z.ZodString>;
|
|
63
|
-
image: z.
|
|
63
|
+
image: z.ZodString;
|
|
64
64
|
marks: z.ZodArray<z.ZodEnum<typeof AssistantMark>>;
|
|
65
65
|
page: z.ZodNullable<z.ZodObject<{
|
|
66
66
|
type: z.ZodEnum<typeof import("../..").PageType>;
|
|
@@ -79,7 +79,7 @@ export declare const AssistantsTreeResponseSchema: z.ZodArray<z.ZodUnion<readonl
|
|
|
79
79
|
description: z.ZodString;
|
|
80
80
|
placeholder: z.ZodString;
|
|
81
81
|
seoName: z.ZodNullable<z.ZodString>;
|
|
82
|
-
image: z.
|
|
82
|
+
image: z.ZodString;
|
|
83
83
|
marks: z.ZodArray<z.ZodEnum<typeof AssistantMark>>;
|
|
84
84
|
page: z.ZodNullable<z.ZodObject<{
|
|
85
85
|
type: z.ZodEnum<typeof import("../..").PageType>;
|
|
@@ -94,7 +94,7 @@ export declare const AssistantsTreeResponseSchema: z.ZodArray<z.ZodUnion<readonl
|
|
|
94
94
|
description: z.ZodString;
|
|
95
95
|
placeholder: z.ZodString;
|
|
96
96
|
seoName: z.ZodNullable<z.ZodString>;
|
|
97
|
-
image: z.
|
|
97
|
+
image: z.ZodString;
|
|
98
98
|
marks: z.ZodArray<z.ZodEnum<typeof AssistantMark>>;
|
|
99
99
|
page: z.ZodNullable<z.ZodObject<{
|
|
100
100
|
type: z.ZodEnum<typeof import("../..").PageType>;
|
|
@@ -11,7 +11,7 @@ exports.AssistantTreeChildSchema = zod_1.z.object({
|
|
|
11
11
|
description: zod_1.z.string(),
|
|
12
12
|
placeholder: zod_1.z.string(),
|
|
13
13
|
seoName: zod_1.z.string().nullable(),
|
|
14
|
-
image: zod_1.z.string()
|
|
14
|
+
image: zod_1.z.string(),
|
|
15
15
|
marks: zod_1.z.array(zod_1.z.enum(assistant_mark_enum_1.AssistantMark)),
|
|
16
16
|
page: assistant_linked_page_schema_1.AssistantTreePageSchema.nullable(),
|
|
17
17
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"assistant-tree.schema.js","sourceRoot":"","sources":["../../../../v1/assistants/schemas/assistant-tree.schema.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,4CAA6C;AAC7C,iFAAyE;AACzE,+DAAsD;AAEzC,QAAA,wBAAwB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC7C,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,mBAAU,CAAC;IAClC,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;IACjB,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9B,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE
|
|
1
|
+
{"version":3,"file":"assistant-tree.schema.js","sourceRoot":"","sources":["../../../../v1/assistants/schemas/assistant-tree.schema.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,4CAA6C;AAC7C,iFAAyE;AACzE,+DAAsD;AAEzC,QAAA,wBAAwB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC7C,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,mBAAU,CAAC;IAClC,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;IACjB,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9B,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;IACjB,KAAK,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,IAAI,CAAC,mCAAa,CAAC,CAAC;IAMrC,IAAI,EAAE,sDAAuB,CAAC,QAAQ,EAAE;CAC3C,CAAC,CAAC;AAEU,QAAA,uBAAuB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC5C,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,mBAAU,CAAC;IAClC,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;IACjB,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE;IAChB,QAAQ,EAAE,OAAC,CAAC,KAAK,CAAC,gCAAwB,CAAC;CAC9C,CAAC,CAAC;AAEU,QAAA,+BAA+B,GAAG,OAAC,CAAC,KAAK,CAAC;IACnD,+BAAuB;IACvB,gCAAwB;CAC3B,CAAC,CAAC;AAEU,QAAA,4BAA4B,GAAG,OAAC,CAAC,KAAK,CAAC,uCAA+B,CAAC,CAAC"}
|
|
@@ -4,7 +4,7 @@ export declare const CatalogLongUnregItemSchema: z.ZodObject<{
|
|
|
4
4
|
title: z.ZodString;
|
|
5
5
|
description: z.ZodString;
|
|
6
6
|
placeholder: z.ZodString;
|
|
7
|
-
image: z.
|
|
7
|
+
image: z.ZodString;
|
|
8
8
|
tags: z.ZodArray<z.ZodString>;
|
|
9
9
|
usageCount: z.ZodNumber;
|
|
10
10
|
author: z.ZodNullable<z.ZodObject<{
|
|
@@ -18,7 +18,7 @@ export declare const CatalogLongRegItemSchema: z.ZodObject<{
|
|
|
18
18
|
title: z.ZodString;
|
|
19
19
|
description: z.ZodString;
|
|
20
20
|
placeholder: z.ZodString;
|
|
21
|
-
image: z.
|
|
21
|
+
image: z.ZodString;
|
|
22
22
|
tags: z.ZodArray<z.ZodString>;
|
|
23
23
|
usageCount: z.ZodNumber;
|
|
24
24
|
author: z.ZodNullable<z.ZodObject<{
|
|
@@ -38,7 +38,7 @@ export declare const CatalogLongUnregGroupSchema: z.ZodObject<{
|
|
|
38
38
|
title: z.ZodString;
|
|
39
39
|
description: z.ZodString;
|
|
40
40
|
placeholder: z.ZodString;
|
|
41
|
-
image: z.
|
|
41
|
+
image: z.ZodString;
|
|
42
42
|
tags: z.ZodArray<z.ZodString>;
|
|
43
43
|
usageCount: z.ZodNumber;
|
|
44
44
|
author: z.ZodNullable<z.ZodObject<{
|
|
@@ -57,7 +57,7 @@ export declare const CatalogLongRegGroupSchema: z.ZodObject<{
|
|
|
57
57
|
title: z.ZodString;
|
|
58
58
|
description: z.ZodString;
|
|
59
59
|
placeholder: z.ZodString;
|
|
60
|
-
image: z.
|
|
60
|
+
image: z.ZodString;
|
|
61
61
|
tags: z.ZodArray<z.ZodString>;
|
|
62
62
|
usageCount: z.ZodNumber;
|
|
63
63
|
author: z.ZodNullable<z.ZodObject<{
|
|
@@ -78,7 +78,7 @@ export declare const CatalogLongUnregResponseItemSchema: z.ZodUnion<readonly [z.
|
|
|
78
78
|
title: z.ZodString;
|
|
79
79
|
description: z.ZodString;
|
|
80
80
|
placeholder: z.ZodString;
|
|
81
|
-
image: z.
|
|
81
|
+
image: z.ZodString;
|
|
82
82
|
tags: z.ZodArray<z.ZodString>;
|
|
83
83
|
usageCount: z.ZodNumber;
|
|
84
84
|
author: z.ZodNullable<z.ZodObject<{
|
|
@@ -92,7 +92,7 @@ export declare const CatalogLongUnregResponseItemSchema: z.ZodUnion<readonly [z.
|
|
|
92
92
|
title: z.ZodString;
|
|
93
93
|
description: z.ZodString;
|
|
94
94
|
placeholder: z.ZodString;
|
|
95
|
-
image: z.
|
|
95
|
+
image: z.ZodString;
|
|
96
96
|
tags: z.ZodArray<z.ZodString>;
|
|
97
97
|
usageCount: z.ZodNumber;
|
|
98
98
|
author: z.ZodNullable<z.ZodObject<{
|
|
@@ -110,7 +110,7 @@ export declare const CatalogLongRegResponseItemSchema: z.ZodUnion<readonly [z.Zo
|
|
|
110
110
|
title: z.ZodString;
|
|
111
111
|
description: z.ZodString;
|
|
112
112
|
placeholder: z.ZodString;
|
|
113
|
-
image: z.
|
|
113
|
+
image: z.ZodString;
|
|
114
114
|
tags: z.ZodArray<z.ZodString>;
|
|
115
115
|
usageCount: z.ZodNumber;
|
|
116
116
|
author: z.ZodNullable<z.ZodObject<{
|
|
@@ -126,7 +126,7 @@ export declare const CatalogLongRegResponseItemSchema: z.ZodUnion<readonly [z.Zo
|
|
|
126
126
|
title: z.ZodString;
|
|
127
127
|
description: z.ZodString;
|
|
128
128
|
placeholder: z.ZodString;
|
|
129
|
-
image: z.
|
|
129
|
+
image: z.ZodString;
|
|
130
130
|
tags: z.ZodArray<z.ZodString>;
|
|
131
131
|
usageCount: z.ZodNumber;
|
|
132
132
|
author: z.ZodNullable<z.ZodObject<{
|
|
@@ -147,7 +147,7 @@ export declare const CatalogLongUnregResponseSchema: z.ZodObject<{
|
|
|
147
147
|
title: z.ZodString;
|
|
148
148
|
description: z.ZodString;
|
|
149
149
|
placeholder: z.ZodString;
|
|
150
|
-
image: z.
|
|
150
|
+
image: z.ZodString;
|
|
151
151
|
tags: z.ZodArray<z.ZodString>;
|
|
152
152
|
usageCount: z.ZodNumber;
|
|
153
153
|
author: z.ZodNullable<z.ZodObject<{
|
|
@@ -161,7 +161,7 @@ export declare const CatalogLongUnregResponseSchema: z.ZodObject<{
|
|
|
161
161
|
title: z.ZodString;
|
|
162
162
|
description: z.ZodString;
|
|
163
163
|
placeholder: z.ZodString;
|
|
164
|
-
image: z.
|
|
164
|
+
image: z.ZodString;
|
|
165
165
|
tags: z.ZodArray<z.ZodString>;
|
|
166
166
|
usageCount: z.ZodNumber;
|
|
167
167
|
author: z.ZodNullable<z.ZodObject<{
|
|
@@ -183,7 +183,7 @@ export declare const CatalogLongRegResponseSchema: z.ZodObject<{
|
|
|
183
183
|
title: z.ZodString;
|
|
184
184
|
description: z.ZodString;
|
|
185
185
|
placeholder: z.ZodString;
|
|
186
|
-
image: z.
|
|
186
|
+
image: z.ZodString;
|
|
187
187
|
tags: z.ZodArray<z.ZodString>;
|
|
188
188
|
usageCount: z.ZodNumber;
|
|
189
189
|
author: z.ZodNullable<z.ZodObject<{
|
|
@@ -199,7 +199,7 @@ export declare const CatalogLongRegResponseSchema: z.ZodObject<{
|
|
|
199
199
|
title: z.ZodString;
|
|
200
200
|
description: z.ZodString;
|
|
201
201
|
placeholder: z.ZodString;
|
|
202
|
-
image: z.
|
|
202
|
+
image: z.ZodString;
|
|
203
203
|
tags: z.ZodArray<z.ZodString>;
|
|
204
204
|
usageCount: z.ZodNumber;
|
|
205
205
|
author: z.ZodNullable<z.ZodObject<{
|
|
@@ -9,7 +9,7 @@ exports.CatalogLongUnregItemSchema = zod_1.z.object({
|
|
|
9
9
|
title: zod_1.z.string(),
|
|
10
10
|
description: zod_1.z.string(),
|
|
11
11
|
placeholder: zod_1.z.string(),
|
|
12
|
-
image: zod_1.z.string()
|
|
12
|
+
image: zod_1.z.string(),
|
|
13
13
|
tags: zod_1.z.array(zod_1.z.string()),
|
|
14
14
|
usageCount: zod_1.z.number().int().min(0),
|
|
15
15
|
author: assistant_author_schema_1.AssistantAuthorSchema.nullable(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"catalog-long-response.schema.js","sourceRoot":"","sources":["../../../../v1/assistants/schemas/catalog-long-response.schema.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,4CAA6D;AAC7D,uEAAkE;AAErD,QAAA,0BAA0B,GAAG,OAAC,CAAC,MAAM,CAAC;IAC/C,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,mBAAU,CAAC;IAClC,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;IACjB,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE
|
|
1
|
+
{"version":3,"file":"catalog-long-response.schema.js","sourceRoot":"","sources":["../../../../v1/assistants/schemas/catalog-long-response.schema.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,4CAA6D;AAC7D,uEAAkE;AAErD,QAAA,0BAA0B,GAAG,OAAC,CAAC,MAAM,CAAC;IAC/C,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,mBAAU,CAAC;IAClC,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;IACjB,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;IACjB,IAAI,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC;IACzB,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IACnC,MAAM,EAAE,+CAAqB,CAAC,QAAQ,EAAE;IACxC,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,uBAAc,CAAC;CAC9C,CAAC,CAAC;AAEU,QAAA,wBAAwB,GAAG,kCAA0B,CAAC,MAAM,CAAC;IACtE,UAAU,EAAE,OAAC,CAAC,OAAO,EAAE;IACvB,UAAU,EAAE,OAAC,CAAC,OAAO,EAAE;CAC1B,CAAC,CAAC;AAEU,QAAA,2BAA2B,GAAG,OAAC,CAAC,MAAM,CAAC;IAChD,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,mBAAU,CAAC;IAClC,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;IACjB,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE;IAChB,QAAQ,EAAE,OAAC,CAAC,KAAK,CAAC,kCAA0B,CAAC;CAChD,CAAC,CAAC;AAEU,QAAA,yBAAyB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC9C,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,mBAAU,CAAC;IAClC,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;IACjB,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE;IAChB,QAAQ,EAAE,OAAC,CAAC,KAAK,CAAC,gCAAwB,CAAC;CAC9C,CAAC,CAAC;AAEU,QAAA,kCAAkC,GAAG,OAAC,CAAC,KAAK,CAAC;IACtD,mCAA2B;IAC3B,kCAA0B;CAC7B,CAAC,CAAC;AAEU,QAAA,gCAAgC,GAAG,OAAC,CAAC,KAAK,CAAC;IACpD,iCAAyB;IACzB,gCAAwB;CAC3B,CAAC,CAAC;AAEU,QAAA,8BAA8B,GAAG,OAAC,CAAC,MAAM,CAAC;IACnD,KAAK,EAAE,OAAC,CAAC,KAAK,CAAC,0CAAkC,CAAC;IAClD,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,OAAO,EAAE,OAAC,CAAC,OAAO,EAAE;CACvB,CAAC,CAAC;AAEU,QAAA,4BAA4B,GAAG,OAAC,CAAC,MAAM,CAAC;IACjD,KAAK,EAAE,OAAC,CAAC,KAAK,CAAC,wCAAgC,CAAC;IAChD,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,OAAO,EAAE,OAAC,CAAC,OAAO,EAAE;CACvB,CAAC,CAAC"}
|
|
@@ -5,7 +5,7 @@ export declare const CatalogShortItemSchema: z.ZodObject<{
|
|
|
5
5
|
title: z.ZodString;
|
|
6
6
|
description: z.ZodString;
|
|
7
7
|
placeholder: z.ZodString;
|
|
8
|
-
image: z.
|
|
8
|
+
image: z.ZodString;
|
|
9
9
|
tags: z.ZodArray<z.ZodString>;
|
|
10
10
|
visibility: z.ZodEnum<typeof AssistantVisibility>;
|
|
11
11
|
usageCount: z.ZodNumber;
|
|
@@ -19,7 +19,7 @@ export declare const CatalogShortTreeChildSchema: z.ZodObject<{
|
|
|
19
19
|
title: z.ZodString;
|
|
20
20
|
description: z.ZodString;
|
|
21
21
|
placeholder: z.ZodString;
|
|
22
|
-
image: z.
|
|
22
|
+
image: z.ZodString;
|
|
23
23
|
tags: z.ZodArray<z.ZodString>;
|
|
24
24
|
usageCount: z.ZodNumber;
|
|
25
25
|
author: z.ZodNullable<z.ZodObject<{
|
|
@@ -42,7 +42,7 @@ export declare const CatalogShortTreeNodeSchema: z.ZodObject<{
|
|
|
42
42
|
title: z.ZodString;
|
|
43
43
|
description: z.ZodString;
|
|
44
44
|
placeholder: z.ZodString;
|
|
45
|
-
image: z.
|
|
45
|
+
image: z.ZodString;
|
|
46
46
|
tags: z.ZodArray<z.ZodString>;
|
|
47
47
|
usageCount: z.ZodNumber;
|
|
48
48
|
author: z.ZodNullable<z.ZodObject<{
|
|
@@ -66,7 +66,7 @@ export declare const CatalogShortResponseItemSchema: z.ZodUnion<readonly [z.ZodO
|
|
|
66
66
|
title: z.ZodString;
|
|
67
67
|
description: z.ZodString;
|
|
68
68
|
placeholder: z.ZodString;
|
|
69
|
-
image: z.
|
|
69
|
+
image: z.ZodString;
|
|
70
70
|
tags: z.ZodArray<z.ZodString>;
|
|
71
71
|
usageCount: z.ZodNumber;
|
|
72
72
|
author: z.ZodNullable<z.ZodObject<{
|
|
@@ -85,7 +85,7 @@ export declare const CatalogShortResponseItemSchema: z.ZodUnion<readonly [z.ZodO
|
|
|
85
85
|
title: z.ZodString;
|
|
86
86
|
description: z.ZodString;
|
|
87
87
|
placeholder: z.ZodString;
|
|
88
|
-
image: z.
|
|
88
|
+
image: z.ZodString;
|
|
89
89
|
tags: z.ZodArray<z.ZodString>;
|
|
90
90
|
usageCount: z.ZodNumber;
|
|
91
91
|
author: z.ZodNullable<z.ZodObject<{
|
|
@@ -109,7 +109,7 @@ export declare const CatalogShortUnregResponseSchema: z.ZodObject<{
|
|
|
109
109
|
title: z.ZodString;
|
|
110
110
|
description: z.ZodString;
|
|
111
111
|
placeholder: z.ZodString;
|
|
112
|
-
image: z.
|
|
112
|
+
image: z.ZodString;
|
|
113
113
|
tags: z.ZodArray<z.ZodString>;
|
|
114
114
|
usageCount: z.ZodNumber;
|
|
115
115
|
author: z.ZodNullable<z.ZodObject<{
|
|
@@ -128,7 +128,7 @@ export declare const CatalogShortUnregResponseSchema: z.ZodObject<{
|
|
|
128
128
|
title: z.ZodString;
|
|
129
129
|
description: z.ZodString;
|
|
130
130
|
placeholder: z.ZodString;
|
|
131
|
-
image: z.
|
|
131
|
+
image: z.ZodString;
|
|
132
132
|
tags: z.ZodArray<z.ZodString>;
|
|
133
133
|
usageCount: z.ZodNumber;
|
|
134
134
|
author: z.ZodNullable<z.ZodObject<{
|
|
@@ -149,7 +149,7 @@ export declare const CatalogShortRegResponseSchema: z.ZodObject<{
|
|
|
149
149
|
title: z.ZodString;
|
|
150
150
|
description: z.ZodString;
|
|
151
151
|
placeholder: z.ZodString;
|
|
152
|
-
image: z.
|
|
152
|
+
image: z.ZodString;
|
|
153
153
|
tags: z.ZodArray<z.ZodString>;
|
|
154
154
|
visibility: z.ZodEnum<typeof AssistantVisibility>;
|
|
155
155
|
usageCount: z.ZodNumber;
|
|
@@ -163,7 +163,7 @@ export declare const CatalogShortRegResponseSchema: z.ZodObject<{
|
|
|
163
163
|
title: z.ZodString;
|
|
164
164
|
description: z.ZodString;
|
|
165
165
|
placeholder: z.ZodString;
|
|
166
|
-
image: z.
|
|
166
|
+
image: z.ZodString;
|
|
167
167
|
tags: z.ZodArray<z.ZodString>;
|
|
168
168
|
visibility: z.ZodEnum<typeof AssistantVisibility>;
|
|
169
169
|
usageCount: z.ZodNumber;
|
|
@@ -181,7 +181,7 @@ export declare const CatalogShortRegResponseSchema: z.ZodObject<{
|
|
|
181
181
|
title: z.ZodString;
|
|
182
182
|
description: z.ZodString;
|
|
183
183
|
placeholder: z.ZodString;
|
|
184
|
-
image: z.
|
|
184
|
+
image: z.ZodString;
|
|
185
185
|
tags: z.ZodArray<z.ZodString>;
|
|
186
186
|
usageCount: z.ZodNumber;
|
|
187
187
|
author: z.ZodNullable<z.ZodObject<{
|
|
@@ -200,7 +200,7 @@ export declare const CatalogShortRegResponseSchema: z.ZodObject<{
|
|
|
200
200
|
title: z.ZodString;
|
|
201
201
|
description: z.ZodString;
|
|
202
202
|
placeholder: z.ZodString;
|
|
203
|
-
image: z.
|
|
203
|
+
image: z.ZodString;
|
|
204
204
|
tags: z.ZodArray<z.ZodString>;
|
|
205
205
|
usageCount: z.ZodNumber;
|
|
206
206
|
author: z.ZodNullable<z.ZodObject<{
|
|
@@ -11,7 +11,7 @@ exports.CatalogShortItemSchema = zod_1.z.object({
|
|
|
11
11
|
title: zod_1.z.string(),
|
|
12
12
|
description: zod_1.z.string(),
|
|
13
13
|
placeholder: zod_1.z.string(),
|
|
14
|
-
image: zod_1.z.string()
|
|
14
|
+
image: zod_1.z.string(),
|
|
15
15
|
tags: zod_1.z.array(zod_1.z.string()),
|
|
16
16
|
visibility: zod_1.z.enum(assistant_visibility_enum_1.AssistantVisibility),
|
|
17
17
|
usageCount: zod_1.z.number().int().min(0),
|
|
@@ -22,7 +22,7 @@ exports.CatalogShortTreeChildSchema = zod_1.z.object({
|
|
|
22
22
|
title: zod_1.z.string(),
|
|
23
23
|
description: zod_1.z.string(),
|
|
24
24
|
placeholder: zod_1.z.string(),
|
|
25
|
-
image: zod_1.z.string()
|
|
25
|
+
image: zod_1.z.string(),
|
|
26
26
|
tags: zod_1.z.array(zod_1.z.string()),
|
|
27
27
|
usageCount: zod_1.z.number().int().min(0),
|
|
28
28
|
author: assistant_author_schema_1.AssistantAuthorSchema.nullable(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"catalog-short-response.schema.js","sourceRoot":"","sources":["../../../../v1/assistants/schemas/catalog-short-response.schema.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,4CAA6C;AAC7C,uEAAkE;AAClE,2EAAkE;AAClE,iFAAyE;AAE5D,QAAA,sBAAsB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC3C,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,mBAAU,CAAC;IAClC,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;IACjB,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE
|
|
1
|
+
{"version":3,"file":"catalog-short-response.schema.js","sourceRoot":"","sources":["../../../../v1/assistants/schemas/catalog-short-response.schema.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,4CAA6C;AAC7C,uEAAkE;AAClE,2EAAkE;AAClE,iFAAyE;AAE5D,QAAA,sBAAsB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC3C,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,mBAAU,CAAC;IAClC,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;IACjB,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;IACjB,IAAI,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC;IACzB,UAAU,EAAE,OAAC,CAAC,IAAI,CAAC,+CAAmB,CAAC;IACvC,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IACnC,MAAM,EAAE,+CAAqB,CAAC,QAAQ,EAAE;CAC3C,CAAC,CAAC;AAEU,QAAA,2BAA2B,GAAG,OAAC,CAAC,MAAM,CAAC;IAChD,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,mBAAU,CAAC;IAClC,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;IACjB,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;IACjB,IAAI,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC;IACzB,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IACnC,MAAM,EAAE,+CAAqB,CAAC,QAAQ,EAAE;IAMxC,IAAI,EAAE,sDAAuB,CAAC,QAAQ,EAAE;CAC3C,CAAC,CAAC;AAEU,QAAA,0BAA0B,GAAG,OAAC,CAAC,MAAM,CAAC;IAC/C,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,mBAAU,CAAC;IAClC,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;IACjB,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE;IAChB,QAAQ,EAAE,OAAC,CAAC,KAAK,CAAC,mCAA2B,CAAC;CACjD,CAAC,CAAC;AAEU,QAAA,8BAA8B,GAAG,OAAC,CAAC,KAAK,CAAC;IAClD,kCAA0B;IAC1B,mCAA2B;CAC9B,CAAC,CAAC;AAEU,QAAA,+BAA+B,GAAG,OAAC,CAAC,MAAM,CAAC;IACpD,GAAG,EAAE,OAAC,CAAC,KAAK,CAAC,sCAA8B,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC;CACxD,CAAC,CAAC;AAEU,QAAA,6BAA6B,GAAG,OAAC,CAAC,MAAM,CAAC;IAClD,EAAE,EAAE,OAAC,CAAC,KAAK,CAAC,8BAAsB,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC;IAC5C,SAAS,EAAE,OAAC,CAAC,KAAK,CAAC,8BAAsB,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC;IACnD,GAAG,EAAE,OAAC,CAAC,KAAK,CAAC,sCAA8B,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC;CACxD,CAAC,CAAC"}
|
|
@@ -3,7 +3,7 @@ export declare const CreateUserAssistantRequestSchema: z.ZodObject<{
|
|
|
3
3
|
title: z.ZodString;
|
|
4
4
|
description: z.ZodString;
|
|
5
5
|
placeholder: z.ZodString;
|
|
6
|
-
image: z.
|
|
6
|
+
image: z.ZodString;
|
|
7
7
|
prompt: z.ZodString;
|
|
8
8
|
tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
9
9
|
author: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -19,8 +19,7 @@ exports.CreateUserAssistantRequestSchema = zod_1.z.object({
|
|
|
19
19
|
.max(500, { message: 'CreateUserAssistantRequest.placeholder.max' }),
|
|
20
20
|
image: zod_1.z
|
|
21
21
|
.string({ error: 'CreateUserAssistantRequest.image.required' })
|
|
22
|
-
.regex(shared_1.UUID_REGEX, { message: 'CreateUserAssistantRequest.image.invalid' })
|
|
23
|
-
.optional(),
|
|
22
|
+
.regex(shared_1.UUID_REGEX, { message: 'CreateUserAssistantRequest.image.invalid' }),
|
|
24
23
|
prompt: zod_1.z
|
|
25
24
|
.string({ error: 'CreateUserAssistantRequest.prompt.required' })
|
|
26
25
|
.min(1, { message: 'CreateUserAssistantRequest.prompt.min' })
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-user-assistant-request.schema.js","sourceRoot":"","sources":["../../../../v1/assistants/schemas/create-user-assistant-request.schema.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,4CAA6C;AAC7C,uEAAkE;AAErD,QAAA,gCAAgC,GAAG,OAAC,CAAC,MAAM,CAAC;IACrD,KAAK,EAAE,OAAC;SACH,MAAM,CAAC,EAAE,KAAK,EAAE,2CAA2C,EAAE,CAAC;SAC9D,GAAG,CAAC,CAAC,EAAE,EAAE,OAAO,EAAE,sCAAsC,EAAE,CAAC;SAC3D,GAAG,CAAC,GAAG,EAAE,EAAE,OAAO,EAAE,sCAAsC,EAAE,CAAC;IAClE,WAAW,EAAE,OAAC;SACT,MAAM,CAAC,EAAE,KAAK,EAAE,iDAAiD,EAAE,CAAC;SACpE,GAAG,CAAC,CAAC,EAAE,EAAE,OAAO,EAAE,4CAA4C,EAAE,CAAC;SACjE,GAAG,CAAC,IAAI,EAAE,EAAE,OAAO,EAAE,4CAA4C,EAAE,CAAC;IACzE,WAAW,EAAE,OAAC;SACT,MAAM,CAAC,EAAE,KAAK,EAAE,iDAAiD,EAAE,CAAC;SACpE,GAAG,CAAC,CAAC,EAAE,EAAE,OAAO,EAAE,4CAA4C,EAAE,CAAC;SACjE,GAAG,CAAC,GAAG,EAAE,EAAE,OAAO,EAAE,4CAA4C,EAAE,CAAC;IAKxE,KAAK,EAAE,OAAC;SACH,MAAM,CAAC,EAAE,KAAK,EAAE,2CAA2C,EAAE,CAAC;SAC9D,KAAK,CAAC,mBAAU,EAAE,EAAE,OAAO,EAAE,0CAA0C,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"create-user-assistant-request.schema.js","sourceRoot":"","sources":["../../../../v1/assistants/schemas/create-user-assistant-request.schema.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,4CAA6C;AAC7C,uEAAkE;AAErD,QAAA,gCAAgC,GAAG,OAAC,CAAC,MAAM,CAAC;IACrD,KAAK,EAAE,OAAC;SACH,MAAM,CAAC,EAAE,KAAK,EAAE,2CAA2C,EAAE,CAAC;SAC9D,GAAG,CAAC,CAAC,EAAE,EAAE,OAAO,EAAE,sCAAsC,EAAE,CAAC;SAC3D,GAAG,CAAC,GAAG,EAAE,EAAE,OAAO,EAAE,sCAAsC,EAAE,CAAC;IAClE,WAAW,EAAE,OAAC;SACT,MAAM,CAAC,EAAE,KAAK,EAAE,iDAAiD,EAAE,CAAC;SACpE,GAAG,CAAC,CAAC,EAAE,EAAE,OAAO,EAAE,4CAA4C,EAAE,CAAC;SACjE,GAAG,CAAC,IAAI,EAAE,EAAE,OAAO,EAAE,4CAA4C,EAAE,CAAC;IACzE,WAAW,EAAE,OAAC;SACT,MAAM,CAAC,EAAE,KAAK,EAAE,iDAAiD,EAAE,CAAC;SACpE,GAAG,CAAC,CAAC,EAAE,EAAE,OAAO,EAAE,4CAA4C,EAAE,CAAC;SACjE,GAAG,CAAC,GAAG,EAAE,EAAE,OAAO,EAAE,4CAA4C,EAAE,CAAC;IAKxE,KAAK,EAAE,OAAC;SACH,MAAM,CAAC,EAAE,KAAK,EAAE,2CAA2C,EAAE,CAAC;SAC9D,KAAK,CAAC,mBAAU,EAAE,EAAE,OAAO,EAAE,0CAA0C,EAAE,CAAC;IAC/E,MAAM,EAAE,OAAC;SACJ,MAAM,CAAC,EAAE,KAAK,EAAE,4CAA4C,EAAE,CAAC;SAC/D,GAAG,CAAC,CAAC,EAAE,EAAE,OAAO,EAAE,uCAAuC,EAAE,CAAC;SAC5D,GAAG,CAAC,KAAK,EAAE,EAAE,OAAO,EAAE,uCAAuC,EAAE,CAAC;IACrE,IAAI,EAAE,OAAC;SACF,KAAK,CACF,OAAC,CAAC,MAAM,EAAE;SACL,GAAG,CAAC,CAAC,EAAE,EAAE,OAAO,EAAE,yCAAyC,EAAE,CAAC;SAC9D,GAAG,CAAC,GAAG,EAAE,EAAE,OAAO,EAAE,yCAAyC,EAAE,CAAC;SAChE,IAAI,EAAE,CACd;SACA,GAAG,CAAC,EAAE,EAAE,EAAE,OAAO,EAAE,qCAAqC,EAAE,CAAC;SAC3D,OAAO,CAAC,EAAE,CAAC;IAChB,MAAM,EAAE,+CAAqB,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;CACtD,CAAC,CAAC"}
|
|
@@ -3,7 +3,7 @@ export declare const UpdateUserAssistantRequestSchema: z.ZodObject<{
|
|
|
3
3
|
title: z.ZodOptional<z.ZodString>;
|
|
4
4
|
description: z.ZodOptional<z.ZodString>;
|
|
5
5
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
6
|
-
image: z.ZodOptional<z.
|
|
6
|
+
image: z.ZodOptional<z.ZodString>;
|
|
7
7
|
prompt: z.ZodOptional<z.ZodString>;
|
|
8
8
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9
9
|
author: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -23,7 +23,6 @@ exports.UpdateUserAssistantRequestSchema = zod_1.z.object({
|
|
|
23
23
|
image: zod_1.z
|
|
24
24
|
.string({ error: 'UpdateUserAssistantRequest.image.required' })
|
|
25
25
|
.regex(shared_1.UUID_REGEX, { message: 'UpdateUserAssistantRequest.image.invalid' })
|
|
26
|
-
.nullable()
|
|
27
26
|
.optional(),
|
|
28
27
|
prompt: zod_1.z
|
|
29
28
|
.string()
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-user-assistant-request.schema.js","sourceRoot":"","sources":["../../../../v1/assistants/schemas/update-user-assistant-request.schema.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,4CAA6C;AAC7C,uEAAkE;AAErD,QAAA,gCAAgC,GAAG,OAAC,CAAC,MAAM,CAAC;IACrD,KAAK,EAAE,OAAC;SACH,MAAM,EAAE;SACR,GAAG,CAAC,CAAC,EAAE,EAAE,OAAO,EAAE,sCAAsC,EAAE,CAAC;SAC3D,GAAG,CAAC,GAAG,EAAE,EAAE,OAAO,EAAE,sCAAsC,EAAE,CAAC;SAC7D,QAAQ,EAAE;IACf,WAAW,EAAE,OAAC;SACT,MAAM,EAAE;SACR,GAAG,CAAC,CAAC,EAAE,EAAE,OAAO,EAAE,4CAA4C,EAAE,CAAC;SACjE,GAAG,CAAC,IAAI,EAAE,EAAE,OAAO,EAAE,4CAA4C,EAAE,CAAC;SACpE,QAAQ,EAAE;IACf,WAAW,EAAE,OAAC;SACT,MAAM,EAAE;SACR,GAAG,CAAC,CAAC,EAAE,EAAE,OAAO,EAAE,4CAA4C,EAAE,CAAC;SACjE,GAAG,CAAC,GAAG,EAAE,EAAE,OAAO,EAAE,4CAA4C,EAAE,CAAC;SACnE,QAAQ,EAAE;
|
|
1
|
+
{"version":3,"file":"update-user-assistant-request.schema.js","sourceRoot":"","sources":["../../../../v1/assistants/schemas/update-user-assistant-request.schema.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,4CAA6C;AAC7C,uEAAkE;AAErD,QAAA,gCAAgC,GAAG,OAAC,CAAC,MAAM,CAAC;IACrD,KAAK,EAAE,OAAC;SACH,MAAM,EAAE;SACR,GAAG,CAAC,CAAC,EAAE,EAAE,OAAO,EAAE,sCAAsC,EAAE,CAAC;SAC3D,GAAG,CAAC,GAAG,EAAE,EAAE,OAAO,EAAE,sCAAsC,EAAE,CAAC;SAC7D,QAAQ,EAAE;IACf,WAAW,EAAE,OAAC;SACT,MAAM,EAAE;SACR,GAAG,CAAC,CAAC,EAAE,EAAE,OAAO,EAAE,4CAA4C,EAAE,CAAC;SACjE,GAAG,CAAC,IAAI,EAAE,EAAE,OAAO,EAAE,4CAA4C,EAAE,CAAC;SACpE,QAAQ,EAAE;IACf,WAAW,EAAE,OAAC;SACT,MAAM,EAAE;SACR,GAAG,CAAC,CAAC,EAAE,EAAE,OAAO,EAAE,4CAA4C,EAAE,CAAC;SACjE,GAAG,CAAC,GAAG,EAAE,EAAE,OAAO,EAAE,4CAA4C,EAAE,CAAC;SACnE,QAAQ,EAAE;IAQf,KAAK,EAAE,OAAC;SACH,MAAM,CAAC,EAAE,KAAK,EAAE,2CAA2C,EAAE,CAAC;SAC9D,KAAK,CAAC,mBAAU,EAAE,EAAE,OAAO,EAAE,0CAA0C,EAAE,CAAC;SAC1E,QAAQ,EAAE;IACf,MAAM,EAAE,OAAC;SACJ,MAAM,EAAE;SACR,GAAG,CAAC,CAAC,EAAE,EAAE,OAAO,EAAE,uCAAuC,EAAE,CAAC;SAC5D,GAAG,CAAC,KAAK,EAAE,EAAE,OAAO,EAAE,uCAAuC,EAAE,CAAC;SAChE,QAAQ,EAAE;IACf,IAAI,EAAE,OAAC;SACF,KAAK,CACF,OAAC,CAAC,MAAM,EAAE;SACL,GAAG,CAAC,CAAC,EAAE,EAAE,OAAO,EAAE,yCAAyC,EAAE,CAAC;SAC9D,GAAG,CAAC,GAAG,EAAE,EAAE,OAAO,EAAE,yCAAyC,EAAE,CAAC;SAChE,IAAI,EAAE,CACd;SACA,GAAG,CAAC,EAAE,EAAE,EAAE,OAAO,EAAE,qCAAqC,EAAE,CAAC;SAC3D,QAAQ,EAAE;IACf,MAAM,EAAE,+CAAqB,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;CACtD,CAAC,CAAC"}
|
|
@@ -5,7 +5,7 @@ export declare const UserAssistantResponseSchema: z.ZodObject<{
|
|
|
5
5
|
title: z.ZodString;
|
|
6
6
|
description: z.ZodString;
|
|
7
7
|
placeholder: z.ZodString;
|
|
8
|
-
image: z.
|
|
8
|
+
image: z.ZodString;
|
|
9
9
|
prompt: z.ZodString;
|
|
10
10
|
tags: z.ZodArray<z.ZodString>;
|
|
11
11
|
visibility: z.ZodEnum<typeof AssistantVisibility>;
|