@veruna/api-contracts 1.1.14 → 1.1.15

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.
Files changed (24) hide show
  1. package/build/tsconfig.tsbuildinfo +1 -1
  2. package/build/v1/assistants/admin/commands/create-assistant.command.d.ts +2 -2
  3. package/build/v1/assistants/admin/commands/update-assistant.command.d.ts +2 -2
  4. package/build/v1/assistants/admin/queries/get-assistant.query.d.ts +1 -1
  5. package/build/v1/assistants/admin/queries/get-assistants.query.d.ts +3 -3
  6. package/build/v1/assistants/catalog/queries/catalog-long-reg.query.d.ts +2 -2
  7. package/build/v1/assistants/catalog/queries/catalog-long-unreg.query.d.ts +2 -2
  8. package/build/v1/assistants/catalog/queries/catalog-short-reg.query.d.ts +4 -4
  9. package/build/v1/assistants/catalog/queries/catalog-short-unreg.query.d.ts +2 -2
  10. package/build/v1/assistants/schemas/assistant-author.schema.d.ts +1 -1
  11. package/build/v1/assistants/schemas/assistant-author.schema.js +1 -1
  12. package/build/v1/assistants/schemas/assistant-author.schema.js.map +1 -1
  13. package/build/v1/assistants/schemas/assistant-response.schema.d.ts +2 -2
  14. package/build/v1/assistants/schemas/catalog-long-response.schema.d.ts +12 -12
  15. package/build/v1/assistants/schemas/catalog-short-response.schema.d.ts +11 -11
  16. package/build/v1/assistants/schemas/create-assistant-request.schema.d.ts +1 -1
  17. package/build/v1/assistants/schemas/create-user-assistant-request.schema.d.ts +1 -1
  18. package/build/v1/assistants/schemas/update-assistant-request.schema.d.ts +1 -1
  19. package/build/v1/assistants/schemas/update-user-assistant-request.schema.d.ts +1 -1
  20. package/build/v1/assistants/schemas/user-assistant-response.schema.d.ts +1 -1
  21. package/build/v1/assistants/user/commands/create-user-assistant.command.d.ts +2 -2
  22. package/build/v1/assistants/user/commands/update-user-assistant.command.d.ts +2 -2
  23. package/build/v1/assistants/user/queries/get-user-assistant.query.d.ts +1 -1
  24. package/package.json +1 -1
@@ -15,7 +15,7 @@ export declare namespace AdminAssistantCreateAssistantCommand {
15
15
  status: z.ZodDefault<z.ZodEnum<typeof import("../../schemas").AssistantStatus>>;
16
16
  author: z.ZodOptional<z.ZodNullable<z.ZodObject<{
17
17
  title: z.ZodString;
18
- link: z.ZodString;
18
+ link: z.ZodOptional<z.ZodString>;
19
19
  }, z.core.$strip>>>;
20
20
  }, z.core.$strict>;
21
21
  const Response: z.ZodObject<{
@@ -35,7 +35,7 @@ export declare namespace AdminAssistantCreateAssistantCommand {
35
35
  visibility: z.ZodEnum<typeof import("../../schemas").AssistantVisibility>;
36
36
  author: z.ZodNullable<z.ZodObject<{
37
37
  title: z.ZodString;
38
- link: z.ZodString;
38
+ link: z.ZodOptional<z.ZodString>;
39
39
  }, z.core.$strip>>;
40
40
  deletedAt: z.ZodNullable<z.ZodString>;
41
41
  createdAt: z.ZodString;
@@ -16,7 +16,7 @@ export declare namespace AdminAssistantUpdateAssistantCommand {
16
16
  visibility: z.ZodOptional<z.ZodEnum<typeof import("../../schemas").AssistantVisibility>>;
17
17
  author: z.ZodOptional<z.ZodNullable<z.ZodObject<{
18
18
  title: z.ZodString;
19
- link: z.ZodString;
19
+ link: z.ZodOptional<z.ZodString>;
20
20
  }, z.core.$strip>>>;
21
21
  }, z.core.$strict>;
22
22
  const Response: z.ZodObject<{
@@ -36,7 +36,7 @@ export declare namespace AdminAssistantUpdateAssistantCommand {
36
36
  visibility: z.ZodEnum<typeof import("../../schemas").AssistantVisibility>;
37
37
  author: z.ZodNullable<z.ZodObject<{
38
38
  title: z.ZodString;
39
- link: z.ZodString;
39
+ link: z.ZodOptional<z.ZodString>;
40
40
  }, z.core.$strip>>;
41
41
  deletedAt: z.ZodNullable<z.ZodString>;
42
42
  createdAt: z.ZodString;
@@ -19,7 +19,7 @@ export declare namespace AdminAssistantGetAssistantQuery {
19
19
  visibility: z.ZodEnum<typeof import("../../schemas").AssistantVisibility>;
20
20
  author: z.ZodNullable<z.ZodObject<{
21
21
  title: z.ZodString;
22
- link: z.ZodString;
22
+ link: z.ZodOptional<z.ZodString>;
23
23
  }, z.core.$strip>>;
24
24
  deletedAt: z.ZodNullable<z.ZodString>;
25
25
  createdAt: z.ZodString;
@@ -22,7 +22,7 @@ export declare const AdminAssistantListItemSchema: z.ZodObject<{
22
22
  visibility: z.ZodEnum<typeof AssistantVisibility>;
23
23
  author: z.ZodNullable<z.ZodObject<{
24
24
  title: z.ZodString;
25
- link: z.ZodString;
25
+ link: z.ZodOptional<z.ZodString>;
26
26
  }, z.core.$strip>>;
27
27
  deletedAt: z.ZodNullable<z.ZodString>;
28
28
  createdAt: z.ZodString;
@@ -63,7 +63,7 @@ export declare const GetAssistantsResponseSchema: z.ZodObject<{
63
63
  visibility: z.ZodEnum<typeof AssistantVisibility>;
64
64
  author: z.ZodNullable<z.ZodObject<{
65
65
  title: z.ZodString;
66
- link: z.ZodString;
66
+ link: z.ZodOptional<z.ZodString>;
67
67
  }, z.core.$strip>>;
68
68
  deletedAt: z.ZodNullable<z.ZodString>;
69
69
  createdAt: z.ZodString;
@@ -114,7 +114,7 @@ export declare namespace AdminAssistantGetAssistantsQuery {
114
114
  visibility: z.ZodEnum<typeof AssistantVisibility>;
115
115
  author: z.ZodNullable<z.ZodObject<{
116
116
  title: z.ZodString;
117
- link: z.ZodString;
117
+ link: z.ZodOptional<z.ZodString>;
118
118
  }, z.core.$strip>>;
119
119
  deletedAt: z.ZodNullable<z.ZodString>;
120
120
  createdAt: z.ZodString;
@@ -25,7 +25,7 @@ export declare namespace CatalogLongRegQuery {
25
25
  usageCount: z.ZodNumber;
26
26
  author: z.ZodNullable<z.ZodObject<{
27
27
  title: z.ZodString;
28
- link: z.ZodString;
28
+ link: z.ZodOptional<z.ZodString>;
29
29
  }, z.core.$strip>>;
30
30
  createdAt: z.ZodString;
31
31
  isFavorite: z.ZodBoolean;
@@ -41,7 +41,7 @@ export declare namespace CatalogLongRegQuery {
41
41
  usageCount: z.ZodNumber;
42
42
  author: z.ZodNullable<z.ZodObject<{
43
43
  title: z.ZodString;
44
- link: z.ZodString;
44
+ link: z.ZodOptional<z.ZodString>;
45
45
  }, z.core.$strip>>;
46
46
  createdAt: z.ZodString;
47
47
  isFavorite: z.ZodBoolean;
@@ -24,7 +24,7 @@ export declare namespace CatalogLongUnregQuery {
24
24
  usageCount: z.ZodNumber;
25
25
  author: z.ZodNullable<z.ZodObject<{
26
26
  title: z.ZodString;
27
- link: z.ZodString;
27
+ link: z.ZodOptional<z.ZodString>;
28
28
  }, z.core.$strip>>;
29
29
  createdAt: z.ZodString;
30
30
  }, z.core.$strip>>;
@@ -38,7 +38,7 @@ export declare namespace CatalogLongUnregQuery {
38
38
  usageCount: z.ZodNumber;
39
39
  author: z.ZodNullable<z.ZodObject<{
40
40
  title: z.ZodString;
41
- link: z.ZodString;
41
+ link: z.ZodOptional<z.ZodString>;
42
42
  }, z.core.$strip>>;
43
43
  createdAt: z.ZodString;
44
44
  }, z.core.$strip>]>>;
@@ -14,7 +14,7 @@ export declare namespace CatalogShortRegQuery {
14
14
  usageCount: z.ZodNumber;
15
15
  author: z.ZodNullable<z.ZodObject<{
16
16
  title: z.ZodString;
17
- link: z.ZodString;
17
+ link: z.ZodOptional<z.ZodString>;
18
18
  }, z.core.$strip>>;
19
19
  }, z.core.$strip>>;
20
20
  favorites: z.ZodArray<z.ZodObject<{
@@ -28,7 +28,7 @@ export declare namespace CatalogShortRegQuery {
28
28
  usageCount: z.ZodNumber;
29
29
  author: z.ZodNullable<z.ZodObject<{
30
30
  title: z.ZodString;
31
- link: z.ZodString;
31
+ link: z.ZodOptional<z.ZodString>;
32
32
  }, z.core.$strip>>;
33
33
  }, z.core.$strip>>;
34
34
  all: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
@@ -45,7 +45,7 @@ export declare namespace CatalogShortRegQuery {
45
45
  usageCount: z.ZodNumber;
46
46
  author: z.ZodNullable<z.ZodObject<{
47
47
  title: z.ZodString;
48
- link: z.ZodString;
48
+ link: z.ZodOptional<z.ZodString>;
49
49
  }, z.core.$strip>>;
50
50
  page: z.ZodObject<{
51
51
  type: z.ZodEnum<typeof import("../../..").PageType>;
@@ -64,7 +64,7 @@ export declare namespace CatalogShortRegQuery {
64
64
  usageCount: z.ZodNumber;
65
65
  author: z.ZodNullable<z.ZodObject<{
66
66
  title: z.ZodString;
67
- link: z.ZodString;
67
+ link: z.ZodOptional<z.ZodString>;
68
68
  }, z.core.$strip>>;
69
69
  page: z.ZodObject<{
70
70
  type: z.ZodEnum<typeof import("../../..").PageType>;
@@ -17,7 +17,7 @@ export declare namespace CatalogShortUnregQuery {
17
17
  usageCount: z.ZodNumber;
18
18
  author: z.ZodNullable<z.ZodObject<{
19
19
  title: z.ZodString;
20
- link: z.ZodString;
20
+ link: z.ZodOptional<z.ZodString>;
21
21
  }, z.core.$strip>>;
22
22
  page: z.ZodObject<{
23
23
  type: z.ZodEnum<typeof import("../../..").PageType>;
@@ -36,7 +36,7 @@ export declare namespace CatalogShortUnregQuery {
36
36
  usageCount: z.ZodNumber;
37
37
  author: z.ZodNullable<z.ZodObject<{
38
38
  title: z.ZodString;
39
- link: z.ZodString;
39
+ link: z.ZodOptional<z.ZodString>;
40
40
  }, z.core.$strip>>;
41
41
  page: z.ZodObject<{
42
42
  type: z.ZodEnum<typeof import("../../..").PageType>;
@@ -1,5 +1,5 @@
1
1
  import { z } from 'zod';
2
2
  export declare const AssistantAuthorSchema: z.ZodObject<{
3
3
  title: z.ZodString;
4
- link: z.ZodString;
4
+ link: z.ZodOptional<z.ZodString>;
5
5
  }, z.core.$strip>;
@@ -4,6 +4,6 @@ exports.AssistantAuthorSchema = void 0;
4
4
  const zod_1 = require("zod");
5
5
  exports.AssistantAuthorSchema = zod_1.z.object({
6
6
  title: zod_1.z.string().min(1).max(100),
7
- link: zod_1.z.string().url().max(500),
7
+ link: zod_1.z.string().url().max(500).optional(),
8
8
  });
9
9
  //# sourceMappingURL=assistant-author.schema.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"assistant-author.schema.js","sourceRoot":"","sources":["../../../../v1/assistants/schemas/assistant-author.schema.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAEX,QAAA,qBAAqB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC1C,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC;IACjC,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC;CAClC,CAAC,CAAC"}
1
+ {"version":3,"file":"assistant-author.schema.js","sourceRoot":"","sources":["../../../../v1/assistants/schemas/assistant-author.schema.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAEX,QAAA,qBAAqB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC1C,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC;IACjC,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE;CAC7C,CAAC,CAAC"}
@@ -19,7 +19,7 @@ export declare const AssistantResponseSchema: z.ZodObject<{
19
19
  visibility: z.ZodEnum<typeof AssistantVisibility>;
20
20
  author: z.ZodNullable<z.ZodObject<{
21
21
  title: z.ZodString;
22
- link: z.ZodString;
22
+ link: z.ZodOptional<z.ZodString>;
23
23
  }, z.core.$strip>>;
24
24
  deletedAt: z.ZodNullable<z.ZodString>;
25
25
  createdAt: z.ZodString;
@@ -50,7 +50,7 @@ export declare const AssistantListItemSchema: z.ZodObject<{
50
50
  visibility: z.ZodEnum<typeof AssistantVisibility>;
51
51
  author: z.ZodNullable<z.ZodObject<{
52
52
  title: z.ZodString;
53
- link: z.ZodString;
53
+ link: z.ZodOptional<z.ZodString>;
54
54
  }, z.core.$strip>>;
55
55
  deletedAt: z.ZodNullable<z.ZodString>;
56
56
  createdAt: z.ZodString;
@@ -9,7 +9,7 @@ export declare const CatalogLongUnregItemSchema: z.ZodObject<{
9
9
  usageCount: z.ZodNumber;
10
10
  author: z.ZodNullable<z.ZodObject<{
11
11
  title: z.ZodString;
12
- link: z.ZodString;
12
+ link: z.ZodOptional<z.ZodString>;
13
13
  }, z.core.$strip>>;
14
14
  createdAt: z.ZodString;
15
15
  }, z.core.$strip>;
@@ -23,7 +23,7 @@ export declare const CatalogLongRegItemSchema: z.ZodObject<{
23
23
  usageCount: z.ZodNumber;
24
24
  author: z.ZodNullable<z.ZodObject<{
25
25
  title: z.ZodString;
26
- link: z.ZodString;
26
+ link: z.ZodOptional<z.ZodString>;
27
27
  }, z.core.$strip>>;
28
28
  createdAt: z.ZodString;
29
29
  isFavorite: z.ZodBoolean;
@@ -43,7 +43,7 @@ export declare const CatalogLongUnregGroupSchema: z.ZodObject<{
43
43
  usageCount: z.ZodNumber;
44
44
  author: z.ZodNullable<z.ZodObject<{
45
45
  title: z.ZodString;
46
- link: z.ZodString;
46
+ link: z.ZodOptional<z.ZodString>;
47
47
  }, z.core.$strip>>;
48
48
  createdAt: z.ZodString;
49
49
  }, z.core.$strip>>;
@@ -62,7 +62,7 @@ export declare const CatalogLongRegGroupSchema: z.ZodObject<{
62
62
  usageCount: z.ZodNumber;
63
63
  author: z.ZodNullable<z.ZodObject<{
64
64
  title: z.ZodString;
65
- link: z.ZodString;
65
+ link: z.ZodOptional<z.ZodString>;
66
66
  }, z.core.$strip>>;
67
67
  createdAt: z.ZodString;
68
68
  isFavorite: z.ZodBoolean;
@@ -83,7 +83,7 @@ export declare const CatalogLongUnregResponseItemSchema: z.ZodUnion<readonly [z.
83
83
  usageCount: z.ZodNumber;
84
84
  author: z.ZodNullable<z.ZodObject<{
85
85
  title: z.ZodString;
86
- link: z.ZodString;
86
+ link: z.ZodOptional<z.ZodString>;
87
87
  }, z.core.$strip>>;
88
88
  createdAt: z.ZodString;
89
89
  }, z.core.$strip>>;
@@ -97,7 +97,7 @@ export declare const CatalogLongUnregResponseItemSchema: z.ZodUnion<readonly [z.
97
97
  usageCount: z.ZodNumber;
98
98
  author: z.ZodNullable<z.ZodObject<{
99
99
  title: z.ZodString;
100
- link: z.ZodString;
100
+ link: z.ZodOptional<z.ZodString>;
101
101
  }, z.core.$strip>>;
102
102
  createdAt: z.ZodString;
103
103
  }, z.core.$strip>]>;
@@ -115,7 +115,7 @@ export declare const CatalogLongRegResponseItemSchema: z.ZodUnion<readonly [z.Zo
115
115
  usageCount: z.ZodNumber;
116
116
  author: z.ZodNullable<z.ZodObject<{
117
117
  title: z.ZodString;
118
- link: z.ZodString;
118
+ link: z.ZodOptional<z.ZodString>;
119
119
  }, z.core.$strip>>;
120
120
  createdAt: z.ZodString;
121
121
  isFavorite: z.ZodBoolean;
@@ -131,7 +131,7 @@ export declare const CatalogLongRegResponseItemSchema: z.ZodUnion<readonly [z.Zo
131
131
  usageCount: z.ZodNumber;
132
132
  author: z.ZodNullable<z.ZodObject<{
133
133
  title: z.ZodString;
134
- link: z.ZodString;
134
+ link: z.ZodOptional<z.ZodString>;
135
135
  }, z.core.$strip>>;
136
136
  createdAt: z.ZodString;
137
137
  isFavorite: z.ZodBoolean;
@@ -152,7 +152,7 @@ export declare const CatalogLongUnregResponseSchema: z.ZodObject<{
152
152
  usageCount: z.ZodNumber;
153
153
  author: z.ZodNullable<z.ZodObject<{
154
154
  title: z.ZodString;
155
- link: z.ZodString;
155
+ link: z.ZodOptional<z.ZodString>;
156
156
  }, z.core.$strip>>;
157
157
  createdAt: z.ZodString;
158
158
  }, z.core.$strip>>;
@@ -166,7 +166,7 @@ export declare const CatalogLongUnregResponseSchema: z.ZodObject<{
166
166
  usageCount: z.ZodNumber;
167
167
  author: z.ZodNullable<z.ZodObject<{
168
168
  title: z.ZodString;
169
- link: z.ZodString;
169
+ link: z.ZodOptional<z.ZodString>;
170
170
  }, z.core.$strip>>;
171
171
  createdAt: z.ZodString;
172
172
  }, z.core.$strip>]>>;
@@ -188,7 +188,7 @@ export declare const CatalogLongRegResponseSchema: z.ZodObject<{
188
188
  usageCount: z.ZodNumber;
189
189
  author: z.ZodNullable<z.ZodObject<{
190
190
  title: z.ZodString;
191
- link: z.ZodString;
191
+ link: z.ZodOptional<z.ZodString>;
192
192
  }, z.core.$strip>>;
193
193
  createdAt: z.ZodString;
194
194
  isFavorite: z.ZodBoolean;
@@ -204,7 +204,7 @@ export declare const CatalogLongRegResponseSchema: z.ZodObject<{
204
204
  usageCount: z.ZodNumber;
205
205
  author: z.ZodNullable<z.ZodObject<{
206
206
  title: z.ZodString;
207
- link: z.ZodString;
207
+ link: z.ZodOptional<z.ZodString>;
208
208
  }, z.core.$strip>>;
209
209
  createdAt: z.ZodString;
210
210
  isFavorite: z.ZodBoolean;
@@ -11,7 +11,7 @@ export declare const CatalogShortItemSchema: z.ZodObject<{
11
11
  usageCount: z.ZodNumber;
12
12
  author: z.ZodNullable<z.ZodObject<{
13
13
  title: z.ZodString;
14
- link: z.ZodString;
14
+ link: z.ZodOptional<z.ZodString>;
15
15
  }, z.core.$strip>>;
16
16
  }, z.core.$strip>;
17
17
  export declare const CatalogShortTreeChildSchema: z.ZodObject<{
@@ -24,7 +24,7 @@ export declare const CatalogShortTreeChildSchema: z.ZodObject<{
24
24
  usageCount: z.ZodNumber;
25
25
  author: z.ZodNullable<z.ZodObject<{
26
26
  title: z.ZodString;
27
- link: z.ZodString;
27
+ link: z.ZodOptional<z.ZodString>;
28
28
  }, z.core.$strip>>;
29
29
  page: z.ZodObject<{
30
30
  type: z.ZodEnum<typeof import("../..").PageType>;
@@ -47,7 +47,7 @@ export declare const CatalogShortTreeNodeSchema: z.ZodObject<{
47
47
  usageCount: z.ZodNumber;
48
48
  author: z.ZodNullable<z.ZodObject<{
49
49
  title: z.ZodString;
50
- link: z.ZodString;
50
+ link: z.ZodOptional<z.ZodString>;
51
51
  }, z.core.$strip>>;
52
52
  page: z.ZodObject<{
53
53
  type: z.ZodEnum<typeof import("../..").PageType>;
@@ -71,7 +71,7 @@ export declare const CatalogShortResponseItemSchema: z.ZodUnion<readonly [z.ZodO
71
71
  usageCount: z.ZodNumber;
72
72
  author: z.ZodNullable<z.ZodObject<{
73
73
  title: z.ZodString;
74
- link: z.ZodString;
74
+ link: z.ZodOptional<z.ZodString>;
75
75
  }, z.core.$strip>>;
76
76
  page: z.ZodObject<{
77
77
  type: z.ZodEnum<typeof import("../..").PageType>;
@@ -90,7 +90,7 @@ export declare const CatalogShortResponseItemSchema: z.ZodUnion<readonly [z.ZodO
90
90
  usageCount: z.ZodNumber;
91
91
  author: z.ZodNullable<z.ZodObject<{
92
92
  title: z.ZodString;
93
- link: z.ZodString;
93
+ link: z.ZodOptional<z.ZodString>;
94
94
  }, z.core.$strip>>;
95
95
  page: z.ZodObject<{
96
96
  type: z.ZodEnum<typeof import("../..").PageType>;
@@ -114,7 +114,7 @@ export declare const CatalogShortUnregResponseSchema: z.ZodObject<{
114
114
  usageCount: z.ZodNumber;
115
115
  author: z.ZodNullable<z.ZodObject<{
116
116
  title: z.ZodString;
117
- link: z.ZodString;
117
+ link: z.ZodOptional<z.ZodString>;
118
118
  }, z.core.$strip>>;
119
119
  page: z.ZodObject<{
120
120
  type: z.ZodEnum<typeof import("../..").PageType>;
@@ -133,7 +133,7 @@ export declare const CatalogShortUnregResponseSchema: z.ZodObject<{
133
133
  usageCount: z.ZodNumber;
134
134
  author: z.ZodNullable<z.ZodObject<{
135
135
  title: z.ZodString;
136
- link: z.ZodString;
136
+ link: z.ZodOptional<z.ZodString>;
137
137
  }, z.core.$strip>>;
138
138
  page: z.ZodObject<{
139
139
  type: z.ZodEnum<typeof import("../..").PageType>;
@@ -155,7 +155,7 @@ export declare const CatalogShortRegResponseSchema: z.ZodObject<{
155
155
  usageCount: z.ZodNumber;
156
156
  author: z.ZodNullable<z.ZodObject<{
157
157
  title: z.ZodString;
158
- link: z.ZodString;
158
+ link: z.ZodOptional<z.ZodString>;
159
159
  }, z.core.$strip>>;
160
160
  }, z.core.$strip>>;
161
161
  favorites: z.ZodArray<z.ZodObject<{
@@ -169,7 +169,7 @@ export declare const CatalogShortRegResponseSchema: z.ZodObject<{
169
169
  usageCount: z.ZodNumber;
170
170
  author: z.ZodNullable<z.ZodObject<{
171
171
  title: z.ZodString;
172
- link: z.ZodString;
172
+ link: z.ZodOptional<z.ZodString>;
173
173
  }, z.core.$strip>>;
174
174
  }, z.core.$strip>>;
175
175
  all: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
@@ -186,7 +186,7 @@ export declare const CatalogShortRegResponseSchema: z.ZodObject<{
186
186
  usageCount: z.ZodNumber;
187
187
  author: z.ZodNullable<z.ZodObject<{
188
188
  title: z.ZodString;
189
- link: z.ZodString;
189
+ link: z.ZodOptional<z.ZodString>;
190
190
  }, z.core.$strip>>;
191
191
  page: z.ZodObject<{
192
192
  type: z.ZodEnum<typeof import("../..").PageType>;
@@ -205,7 +205,7 @@ export declare const CatalogShortRegResponseSchema: z.ZodObject<{
205
205
  usageCount: z.ZodNumber;
206
206
  author: z.ZodNullable<z.ZodObject<{
207
207
  title: z.ZodString;
208
- link: z.ZodString;
208
+ link: z.ZodOptional<z.ZodString>;
209
209
  }, z.core.$strip>>;
210
210
  page: z.ZodObject<{
211
211
  type: z.ZodEnum<typeof import("../..").PageType>;
@@ -15,6 +15,6 @@ export declare const CreateAssistantRequestSchema: z.ZodObject<{
15
15
  status: z.ZodDefault<z.ZodEnum<typeof AssistantStatus>>;
16
16
  author: z.ZodOptional<z.ZodNullable<z.ZodObject<{
17
17
  title: z.ZodString;
18
- link: z.ZodString;
18
+ link: z.ZodOptional<z.ZodString>;
19
19
  }, z.core.$strip>>>;
20
20
  }, z.core.$strict>;
@@ -8,6 +8,6 @@ export declare const CreateUserAssistantRequestSchema: z.ZodObject<{
8
8
  tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
9
9
  author: z.ZodOptional<z.ZodNullable<z.ZodObject<{
10
10
  title: z.ZodString;
11
- link: z.ZodString;
11
+ link: z.ZodOptional<z.ZodString>;
12
12
  }, z.core.$strip>>>;
13
13
  }, z.core.$strip>;
@@ -17,6 +17,6 @@ export declare const UpdateAssistantRequestSchema: z.ZodObject<{
17
17
  visibility: z.ZodOptional<z.ZodEnum<typeof AssistantVisibility>>;
18
18
  author: z.ZodOptional<z.ZodNullable<z.ZodObject<{
19
19
  title: z.ZodString;
20
- link: z.ZodString;
20
+ link: z.ZodOptional<z.ZodString>;
21
21
  }, z.core.$strip>>>;
22
22
  }, z.core.$strict>;
@@ -8,6 +8,6 @@ export declare const UpdateUserAssistantRequestSchema: z.ZodObject<{
8
8
  tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
9
9
  author: z.ZodOptional<z.ZodNullable<z.ZodObject<{
10
10
  title: z.ZodString;
11
- link: z.ZodString;
11
+ link: z.ZodOptional<z.ZodString>;
12
12
  }, z.core.$strip>>>;
13
13
  }, z.core.$strip>;
@@ -11,7 +11,7 @@ export declare const UserAssistantResponseSchema: z.ZodObject<{
11
11
  visibility: z.ZodEnum<typeof AssistantVisibility>;
12
12
  author: z.ZodNullable<z.ZodObject<{
13
13
  title: z.ZodString;
14
- link: z.ZodString;
14
+ link: z.ZodOptional<z.ZodString>;
15
15
  }, z.core.$strip>>;
16
16
  createdAt: z.ZodString;
17
17
  updatedAt: z.ZodString;
@@ -10,7 +10,7 @@ export declare namespace UserAssistantCreateCommand {
10
10
  tags: z.ZodDefault<z.ZodArray<z.ZodString>>;
11
11
  author: z.ZodOptional<z.ZodNullable<z.ZodObject<{
12
12
  title: z.ZodString;
13
- link: z.ZodString;
13
+ link: z.ZodOptional<z.ZodString>;
14
14
  }, z.core.$strip>>>;
15
15
  }, z.core.$strip>;
16
16
  const Response: z.ZodObject<{
@@ -24,7 +24,7 @@ export declare namespace UserAssistantCreateCommand {
24
24
  visibility: z.ZodEnum<typeof import("../../schemas").AssistantVisibility>;
25
25
  author: z.ZodNullable<z.ZodObject<{
26
26
  title: z.ZodString;
27
- link: z.ZodString;
27
+ link: z.ZodOptional<z.ZodString>;
28
28
  }, z.core.$strip>>;
29
29
  createdAt: z.ZodString;
30
30
  updatedAt: z.ZodString;
@@ -10,7 +10,7 @@ export declare namespace UserAssistantUpdateCommand {
10
10
  tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
11
11
  author: z.ZodOptional<z.ZodNullable<z.ZodObject<{
12
12
  title: z.ZodString;
13
- link: z.ZodString;
13
+ link: z.ZodOptional<z.ZodString>;
14
14
  }, z.core.$strip>>>;
15
15
  }, z.core.$strip>;
16
16
  const Response: z.ZodObject<{
@@ -24,7 +24,7 @@ export declare namespace UserAssistantUpdateCommand {
24
24
  visibility: z.ZodEnum<typeof import("../../schemas").AssistantVisibility>;
25
25
  author: z.ZodNullable<z.ZodObject<{
26
26
  title: z.ZodString;
27
- link: z.ZodString;
27
+ link: z.ZodOptional<z.ZodString>;
28
28
  }, z.core.$strip>>;
29
29
  createdAt: z.ZodString;
30
30
  updatedAt: z.ZodString;
@@ -13,7 +13,7 @@ export declare namespace UserAssistantGetByUuidQuery {
13
13
  visibility: z.ZodEnum<typeof import("../../schemas").AssistantVisibility>;
14
14
  author: z.ZodNullable<z.ZodObject<{
15
15
  title: z.ZodString;
16
- link: z.ZodString;
16
+ link: z.ZodOptional<z.ZodString>;
17
17
  }, z.core.$strip>>;
18
18
  createdAt: z.ZodString;
19
19
  updatedAt: z.ZodString;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veruna/api-contracts",
3
- "version": "1.1.14",
3
+ "version": "1.1.15",
4
4
  "description": "API contracts for Veruna project - Zod schemas, types, and paths",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",