@veruna/api-contracts 1.1.38 → 1.1.39

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 (23) hide show
  1. package/build/tsconfig.tsbuildinfo +1 -1
  2. package/build/v1/assistants/catalog/queries/catalog-short-reg.query.d.ts +4 -4
  3. package/build/v1/assistants/catalog/queries/catalog-short-unreg.query.d.ts +4 -4
  4. package/build/v1/assistants/public/queries/get-tree.query.d.ts +4 -4
  5. package/build/v1/assistants/schemas/assistant-tree.schema.d.ts +12 -12
  6. package/build/v1/assistants/schemas/assistant-tree.schema.js +1 -1
  7. package/build/v1/assistants/schemas/assistant-tree.schema.js.map +1 -1
  8. package/build/v1/assistants/schemas/catalog-short-response.schema.d.ts +16 -16
  9. package/build/v1/assistants/schemas/catalog-short-response.schema.js +1 -1
  10. package/build/v1/assistants/schemas/catalog-short-response.schema.js.map +1 -1
  11. package/build/v1/notifications/commands/update-notification-settings.command.d.ts +1 -0
  12. package/build/v1/notifications/queries/get-notification-settings.query.d.ts +1 -0
  13. package/build/v1/notifications/schemas/index.d.ts +1 -0
  14. package/build/v1/notifications/schemas/index.js +1 -0
  15. package/build/v1/notifications/schemas/index.js.map +1 -1
  16. package/build/v1/notifications/schemas/notification-disable-block-reason.enum.d.ts +3 -0
  17. package/build/v1/notifications/schemas/notification-disable-block-reason.enum.js +8 -0
  18. package/build/v1/notifications/schemas/notification-disable-block-reason.enum.js.map +1 -0
  19. package/build/v1/notifications/schemas/notification-setting.schema.d.ts +2 -0
  20. package/build/v1/notifications/schemas/notification-setting.schema.js +2 -0
  21. package/build/v1/notifications/schemas/notification-setting.schema.js.map +1 -1
  22. package/build/v1/notifications/schemas/notification-settings-response.schema.d.ts +1 -0
  23. package/package.json +1 -1
@@ -47,12 +47,12 @@ export declare namespace CatalogShortRegQuery {
47
47
  title: z.ZodString;
48
48
  link: z.ZodOptional<z.ZodString>;
49
49
  }, z.core.$strip>>;
50
- page: z.ZodObject<{
50
+ page: z.ZodNullable<z.ZodObject<{
51
51
  type: z.ZodEnum<typeof import("../../..").PageType>;
52
52
  uuid: z.ZodString;
53
53
  title: z.ZodString;
54
54
  alias: z.ZodString;
55
- }, z.core.$strip>;
55
+ }, z.core.$strip>>;
56
56
  }, z.core.$strip>>;
57
57
  }, z.core.$strip>, z.ZodObject<{
58
58
  uuid: z.ZodString;
@@ -66,12 +66,12 @@ export declare namespace CatalogShortRegQuery {
66
66
  title: z.ZodString;
67
67
  link: z.ZodOptional<z.ZodString>;
68
68
  }, z.core.$strip>>;
69
- page: z.ZodObject<{
69
+ page: z.ZodNullable<z.ZodObject<{
70
70
  type: z.ZodEnum<typeof import("../../..").PageType>;
71
71
  uuid: z.ZodString;
72
72
  title: z.ZodString;
73
73
  alias: z.ZodString;
74
- }, z.core.$strip>;
74
+ }, z.core.$strip>>;
75
75
  }, z.core.$strip>]>>;
76
76
  }, z.core.$strip>;
77
77
  const URL: "/api/v1/assistants/catalog/short";
@@ -19,12 +19,12 @@ export declare namespace CatalogShortUnregQuery {
19
19
  title: z.ZodString;
20
20
  link: z.ZodOptional<z.ZodString>;
21
21
  }, z.core.$strip>>;
22
- page: z.ZodObject<{
22
+ page: z.ZodNullable<z.ZodObject<{
23
23
  type: z.ZodEnum<typeof import("../../..").PageType>;
24
24
  uuid: z.ZodString;
25
25
  title: z.ZodString;
26
26
  alias: z.ZodString;
27
- }, z.core.$strip>;
27
+ }, z.core.$strip>>;
28
28
  }, z.core.$strip>>;
29
29
  }, z.core.$strip>, z.ZodObject<{
30
30
  uuid: z.ZodString;
@@ -38,12 +38,12 @@ export declare namespace CatalogShortUnregQuery {
38
38
  title: z.ZodString;
39
39
  link: z.ZodOptional<z.ZodString>;
40
40
  }, z.core.$strip>>;
41
- page: z.ZodObject<{
41
+ page: z.ZodNullable<z.ZodObject<{
42
42
  type: z.ZodEnum<typeof import("../../..").PageType>;
43
43
  uuid: z.ZodString;
44
44
  title: z.ZodString;
45
45
  alias: z.ZodString;
46
- }, z.core.$strip>;
46
+ }, z.core.$strip>>;
47
47
  }, z.core.$strip>]>>;
48
48
  }, z.core.$strip>;
49
49
  const URL: "/api/v1/unreg/assistants/catalog/short";
@@ -14,12 +14,12 @@ export declare namespace AssistantGetTreeQuery {
14
14
  seoName: z.ZodNullable<z.ZodString>;
15
15
  image: z.ZodString;
16
16
  marks: z.ZodArray<z.ZodEnum<typeof import("../../schemas").AssistantMark>>;
17
- page: z.ZodObject<{
17
+ page: z.ZodNullable<z.ZodObject<{
18
18
  type: z.ZodEnum<typeof import("../../..").PageType>;
19
19
  uuid: z.ZodString;
20
20
  title: z.ZodString;
21
21
  alias: z.ZodString;
22
- }, z.core.$strip>;
22
+ }, z.core.$strip>>;
23
23
  }, z.core.$strip>>;
24
24
  }, z.core.$strip>, z.ZodObject<{
25
25
  uuid: z.ZodString;
@@ -29,12 +29,12 @@ export declare namespace AssistantGetTreeQuery {
29
29
  seoName: z.ZodNullable<z.ZodString>;
30
30
  image: z.ZodString;
31
31
  marks: z.ZodArray<z.ZodEnum<typeof import("../../schemas").AssistantMark>>;
32
- page: z.ZodObject<{
32
+ page: z.ZodNullable<z.ZodObject<{
33
33
  type: z.ZodEnum<typeof import("../../..").PageType>;
34
34
  uuid: z.ZodString;
35
35
  title: z.ZodString;
36
36
  alias: z.ZodString;
37
- }, z.core.$strip>;
37
+ }, z.core.$strip>>;
38
38
  }, z.core.$strip>]>>;
39
39
  const URL: "/api/v1/assistants/";
40
40
  const METHOD = HttpMethod.GET;
@@ -8,12 +8,12 @@ export declare const AssistantTreeChildSchema: z.ZodObject<{
8
8
  seoName: z.ZodNullable<z.ZodString>;
9
9
  image: z.ZodString;
10
10
  marks: z.ZodArray<z.ZodEnum<typeof AssistantMark>>;
11
- page: z.ZodObject<{
11
+ page: z.ZodNullable<z.ZodObject<{
12
12
  type: z.ZodEnum<typeof import("../..").PageType>;
13
13
  uuid: z.ZodString;
14
14
  title: z.ZodString;
15
15
  alias: z.ZodString;
16
- }, z.core.$strip>;
16
+ }, z.core.$strip>>;
17
17
  }, z.core.$strip>;
18
18
  export declare const AssistantTreeNodeSchema: z.ZodObject<{
19
19
  uuid: z.ZodString;
@@ -27,12 +27,12 @@ export declare const AssistantTreeNodeSchema: z.ZodObject<{
27
27
  seoName: z.ZodNullable<z.ZodString>;
28
28
  image: z.ZodString;
29
29
  marks: z.ZodArray<z.ZodEnum<typeof AssistantMark>>;
30
- page: z.ZodObject<{
30
+ page: z.ZodNullable<z.ZodObject<{
31
31
  type: z.ZodEnum<typeof import("../..").PageType>;
32
32
  uuid: z.ZodString;
33
33
  title: z.ZodString;
34
34
  alias: z.ZodString;
35
- }, z.core.$strip>;
35
+ }, z.core.$strip>>;
36
36
  }, z.core.$strip>>;
37
37
  }, z.core.$strip>;
38
38
  export declare const AssistantTreeResponseItemSchema: z.ZodUnion<readonly [z.ZodObject<{
@@ -47,12 +47,12 @@ export declare const AssistantTreeResponseItemSchema: z.ZodUnion<readonly [z.Zod
47
47
  seoName: z.ZodNullable<z.ZodString>;
48
48
  image: z.ZodString;
49
49
  marks: z.ZodArray<z.ZodEnum<typeof AssistantMark>>;
50
- page: z.ZodObject<{
50
+ page: z.ZodNullable<z.ZodObject<{
51
51
  type: z.ZodEnum<typeof import("../..").PageType>;
52
52
  uuid: z.ZodString;
53
53
  title: z.ZodString;
54
54
  alias: z.ZodString;
55
- }, z.core.$strip>;
55
+ }, z.core.$strip>>;
56
56
  }, z.core.$strip>>;
57
57
  }, z.core.$strip>, z.ZodObject<{
58
58
  uuid: z.ZodString;
@@ -62,12 +62,12 @@ export declare const AssistantTreeResponseItemSchema: z.ZodUnion<readonly [z.Zod
62
62
  seoName: z.ZodNullable<z.ZodString>;
63
63
  image: z.ZodString;
64
64
  marks: z.ZodArray<z.ZodEnum<typeof AssistantMark>>;
65
- page: z.ZodObject<{
65
+ page: z.ZodNullable<z.ZodObject<{
66
66
  type: z.ZodEnum<typeof import("../..").PageType>;
67
67
  uuid: z.ZodString;
68
68
  title: z.ZodString;
69
69
  alias: z.ZodString;
70
- }, z.core.$strip>;
70
+ }, z.core.$strip>>;
71
71
  }, z.core.$strip>]>;
72
72
  export declare const AssistantsTreeResponseSchema: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
73
73
  uuid: z.ZodString;
@@ -81,12 +81,12 @@ export declare const AssistantsTreeResponseSchema: z.ZodArray<z.ZodUnion<readonl
81
81
  seoName: z.ZodNullable<z.ZodString>;
82
82
  image: z.ZodString;
83
83
  marks: z.ZodArray<z.ZodEnum<typeof AssistantMark>>;
84
- page: z.ZodObject<{
84
+ page: z.ZodNullable<z.ZodObject<{
85
85
  type: z.ZodEnum<typeof import("../..").PageType>;
86
86
  uuid: z.ZodString;
87
87
  title: z.ZodString;
88
88
  alias: z.ZodString;
89
- }, z.core.$strip>;
89
+ }, z.core.$strip>>;
90
90
  }, z.core.$strip>>;
91
91
  }, z.core.$strip>, z.ZodObject<{
92
92
  uuid: z.ZodString;
@@ -96,12 +96,12 @@ export declare const AssistantsTreeResponseSchema: z.ZodArray<z.ZodUnion<readonl
96
96
  seoName: z.ZodNullable<z.ZodString>;
97
97
  image: z.ZodString;
98
98
  marks: z.ZodArray<z.ZodEnum<typeof AssistantMark>>;
99
- page: z.ZodObject<{
99
+ page: z.ZodNullable<z.ZodObject<{
100
100
  type: z.ZodEnum<typeof import("../..").PageType>;
101
101
  uuid: z.ZodString;
102
102
  title: z.ZodString;
103
103
  alias: z.ZodString;
104
- }, z.core.$strip>;
104
+ }, z.core.$strip>>;
105
105
  }, z.core.$strip>]>>;
106
106
  export type AssistantTreeChildType = z.infer<typeof AssistantTreeChildSchema>;
107
107
  export type AssistantTreeNodeType = z.infer<typeof AssistantTreeNodeSchema>;
@@ -13,7 +13,7 @@ exports.AssistantTreeChildSchema = zod_1.z.object({
13
13
  seoName: zod_1.z.string().nullable(),
14
14
  image: zod_1.z.string(),
15
15
  marks: zod_1.z.array(zod_1.z.nativeEnum(assistant_mark_enum_1.AssistantMark)),
16
- page: assistant_linked_page_schema_1.AssistantTreePageSchema,
16
+ page: assistant_linked_page_schema_1.AssistantTreePageSchema.nullable(),
17
17
  });
18
18
  exports.AssistantTreeNodeSchema = zod_1.z.object({
19
19
  uuid: zod_1.z.string().regex(shared_1.UUID_REGEX),
@@ -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;IACjB,KAAK,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,UAAU,CAAC,mCAAa,CAAC,CAAC;IAC3C,IAAI,EAAE,sDAAuB;CAChC,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"}
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,UAAU,CAAC,mCAAa,CAAC,CAAC;IAM3C,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"}
@@ -26,12 +26,12 @@ export declare const CatalogShortTreeChildSchema: z.ZodObject<{
26
26
  title: z.ZodString;
27
27
  link: z.ZodOptional<z.ZodString>;
28
28
  }, z.core.$strip>>;
29
- page: z.ZodObject<{
29
+ page: z.ZodNullable<z.ZodObject<{
30
30
  type: z.ZodEnum<typeof import("../..").PageType>;
31
31
  uuid: z.ZodString;
32
32
  title: z.ZodString;
33
33
  alias: z.ZodString;
34
- }, z.core.$strip>;
34
+ }, z.core.$strip>>;
35
35
  }, z.core.$strip>;
36
36
  export declare const CatalogShortTreeNodeSchema: z.ZodObject<{
37
37
  uuid: z.ZodString;
@@ -49,12 +49,12 @@ export declare const CatalogShortTreeNodeSchema: z.ZodObject<{
49
49
  title: z.ZodString;
50
50
  link: z.ZodOptional<z.ZodString>;
51
51
  }, z.core.$strip>>;
52
- page: z.ZodObject<{
52
+ page: z.ZodNullable<z.ZodObject<{
53
53
  type: z.ZodEnum<typeof import("../..").PageType>;
54
54
  uuid: z.ZodString;
55
55
  title: z.ZodString;
56
56
  alias: z.ZodString;
57
- }, z.core.$strip>;
57
+ }, z.core.$strip>>;
58
58
  }, z.core.$strip>>;
59
59
  }, z.core.$strip>;
60
60
  export declare const CatalogShortResponseItemSchema: z.ZodUnion<readonly [z.ZodObject<{
@@ -73,12 +73,12 @@ export declare const CatalogShortResponseItemSchema: z.ZodUnion<readonly [z.ZodO
73
73
  title: z.ZodString;
74
74
  link: z.ZodOptional<z.ZodString>;
75
75
  }, z.core.$strip>>;
76
- page: z.ZodObject<{
76
+ page: z.ZodNullable<z.ZodObject<{
77
77
  type: z.ZodEnum<typeof import("../..").PageType>;
78
78
  uuid: z.ZodString;
79
79
  title: z.ZodString;
80
80
  alias: z.ZodString;
81
- }, z.core.$strip>;
81
+ }, z.core.$strip>>;
82
82
  }, z.core.$strip>>;
83
83
  }, z.core.$strip>, z.ZodObject<{
84
84
  uuid: z.ZodString;
@@ -92,12 +92,12 @@ export declare const CatalogShortResponseItemSchema: z.ZodUnion<readonly [z.ZodO
92
92
  title: z.ZodString;
93
93
  link: z.ZodOptional<z.ZodString>;
94
94
  }, z.core.$strip>>;
95
- page: z.ZodObject<{
95
+ page: z.ZodNullable<z.ZodObject<{
96
96
  type: z.ZodEnum<typeof import("../..").PageType>;
97
97
  uuid: z.ZodString;
98
98
  title: z.ZodString;
99
99
  alias: z.ZodString;
100
- }, z.core.$strip>;
100
+ }, z.core.$strip>>;
101
101
  }, z.core.$strip>]>;
102
102
  export declare const CatalogShortUnregResponseSchema: z.ZodObject<{
103
103
  all: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
@@ -116,12 +116,12 @@ export declare const CatalogShortUnregResponseSchema: z.ZodObject<{
116
116
  title: z.ZodString;
117
117
  link: z.ZodOptional<z.ZodString>;
118
118
  }, z.core.$strip>>;
119
- page: z.ZodObject<{
119
+ page: z.ZodNullable<z.ZodObject<{
120
120
  type: z.ZodEnum<typeof import("../..").PageType>;
121
121
  uuid: z.ZodString;
122
122
  title: z.ZodString;
123
123
  alias: z.ZodString;
124
- }, z.core.$strip>;
124
+ }, z.core.$strip>>;
125
125
  }, z.core.$strip>>;
126
126
  }, z.core.$strip>, z.ZodObject<{
127
127
  uuid: z.ZodString;
@@ -135,12 +135,12 @@ export declare const CatalogShortUnregResponseSchema: z.ZodObject<{
135
135
  title: z.ZodString;
136
136
  link: z.ZodOptional<z.ZodString>;
137
137
  }, z.core.$strip>>;
138
- page: z.ZodObject<{
138
+ page: z.ZodNullable<z.ZodObject<{
139
139
  type: z.ZodEnum<typeof import("../..").PageType>;
140
140
  uuid: z.ZodString;
141
141
  title: z.ZodString;
142
142
  alias: z.ZodString;
143
- }, z.core.$strip>;
143
+ }, z.core.$strip>>;
144
144
  }, z.core.$strip>]>>;
145
145
  }, z.core.$strip>;
146
146
  export declare const CatalogShortRegResponseSchema: z.ZodObject<{
@@ -188,12 +188,12 @@ export declare const CatalogShortRegResponseSchema: z.ZodObject<{
188
188
  title: z.ZodString;
189
189
  link: z.ZodOptional<z.ZodString>;
190
190
  }, z.core.$strip>>;
191
- page: z.ZodObject<{
191
+ page: z.ZodNullable<z.ZodObject<{
192
192
  type: z.ZodEnum<typeof import("../..").PageType>;
193
193
  uuid: z.ZodString;
194
194
  title: z.ZodString;
195
195
  alias: z.ZodString;
196
- }, z.core.$strip>;
196
+ }, z.core.$strip>>;
197
197
  }, z.core.$strip>>;
198
198
  }, z.core.$strip>, z.ZodObject<{
199
199
  uuid: z.ZodString;
@@ -207,11 +207,11 @@ export declare const CatalogShortRegResponseSchema: z.ZodObject<{
207
207
  title: z.ZodString;
208
208
  link: z.ZodOptional<z.ZodString>;
209
209
  }, z.core.$strip>>;
210
- page: z.ZodObject<{
210
+ page: z.ZodNullable<z.ZodObject<{
211
211
  type: z.ZodEnum<typeof import("../..").PageType>;
212
212
  uuid: z.ZodString;
213
213
  title: z.ZodString;
214
214
  alias: z.ZodString;
215
- }, z.core.$strip>;
215
+ }, z.core.$strip>>;
216
216
  }, z.core.$strip>]>>;
217
217
  }, z.core.$strip>;
@@ -26,7 +26,7 @@ exports.CatalogShortTreeChildSchema = zod_1.z.object({
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(),
29
- page: assistant_linked_page_schema_1.AssistantTreePageSchema,
29
+ page: assistant_linked_page_schema_1.AssistantTreePageSchema.nullable(),
30
30
  });
31
31
  exports.CatalogShortTreeNodeSchema = zod_1.z.object({
32
32
  uuid: zod_1.z.string().regex(shared_1.UUID_REGEX),
@@ -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;IACjB,IAAI,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC;IACzB,UAAU,EAAE,OAAC,CAAC,UAAU,CAAC,+CAAmB,CAAC;IAC7C,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;IACxC,IAAI,EAAE,sDAAuB;CAChC,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"}
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,UAAU,CAAC,+CAAmB,CAAC;IAC7C,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"}
@@ -13,6 +13,7 @@ export declare namespace UpdateNotificationSettingsCommand {
13
13
  groupKey: z.ZodEnum<typeof import("../schemas").NotificationGroup>;
14
14
  channel: z.ZodEnum<typeof import("../schemas").NotificationChannel>;
15
15
  status: z.ZodEnum<typeof import("../schemas").NotificationSettingStatus>;
16
+ disableBlockedReason: z.ZodNullable<z.ZodEnum<typeof import("../schemas").NotificationDisableBlockReason>>;
16
17
  }, z.core.$strip>>;
17
18
  integrations: z.ZodObject<{
18
19
  email: z.ZodObject<{
@@ -7,6 +7,7 @@ export declare namespace GetNotificationSettingsQuery {
7
7
  groupKey: z.ZodEnum<typeof import("../schemas").NotificationGroup>;
8
8
  channel: z.ZodEnum<typeof import("../schemas").NotificationChannel>;
9
9
  status: z.ZodEnum<typeof import("../schemas").NotificationSettingStatus>;
10
+ disableBlockedReason: z.ZodNullable<z.ZodEnum<typeof import("../schemas").NotificationDisableBlockReason>>;
10
11
  }, z.core.$strip>>;
11
12
  integrations: z.ZodObject<{
12
13
  email: z.ZodObject<{
@@ -7,6 +7,7 @@ export * from './email-template.enum';
7
7
  export * from './notification-group.enum';
8
8
  export * from './notification-channel.enum';
9
9
  export * from './notification-setting-status.enum';
10
+ export * from './notification-disable-block-reason.enum';
10
11
  export * from './telegram-delivery-status.enum';
11
12
  export * from './notification-setting.schema';
12
13
  export * from './notification-settings-response.schema';
@@ -23,6 +23,7 @@ __exportStar(require("./email-template.enum"), exports);
23
23
  __exportStar(require("./notification-group.enum"), exports);
24
24
  __exportStar(require("./notification-channel.enum"), exports);
25
25
  __exportStar(require("./notification-setting-status.enum"), exports);
26
+ __exportStar(require("./notification-disable-block-reason.enum"), exports);
26
27
  __exportStar(require("./telegram-delivery-status.enum"), exports);
27
28
  __exportStar(require("./notification-setting.schema"), exports);
28
29
  __exportStar(require("./notification-settings-response.schema"), exports);
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../v1/notifications/schemas/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2DAAyC;AACzC,6DAA2C;AAC3C,iEAA+C;AAC/C,+DAA6C;AAC7C,6DAA2C;AAC3C,wDAAsC;AACtC,4DAA0C;AAC1C,8DAA4C;AAC5C,qEAAmD;AACnD,kEAAgD;AAChD,gEAA8C;AAC9C,0EAAwD;AACxD,gFAA8D;AAC9D,iEAA+C"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../v1/notifications/schemas/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,2DAAyC;AACzC,6DAA2C;AAC3C,iEAA+C;AAC/C,+DAA6C;AAC7C,6DAA2C;AAC3C,wDAAsC;AACtC,4DAA0C;AAC1C,8DAA4C;AAC5C,qEAAmD;AACnD,2EAAyD;AACzD,kEAAgD;AAChD,gEAA8C;AAC9C,0EAAwD;AACxD,gFAA8D;AAC9D,iEAA+C"}
@@ -0,0 +1,3 @@
1
+ export declare enum NotificationDisableBlockReason {
2
+ LAST_ACTIVE_NON_WEB_CHANNEL = "LAST_ACTIVE_NON_WEB_CHANNEL"
3
+ }
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.NotificationDisableBlockReason = void 0;
4
+ var NotificationDisableBlockReason;
5
+ (function (NotificationDisableBlockReason) {
6
+ NotificationDisableBlockReason["LAST_ACTIVE_NON_WEB_CHANNEL"] = "LAST_ACTIVE_NON_WEB_CHANNEL";
7
+ })(NotificationDisableBlockReason || (exports.NotificationDisableBlockReason = NotificationDisableBlockReason = {}));
8
+ //# sourceMappingURL=notification-disable-block-reason.enum.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"notification-disable-block-reason.enum.js","sourceRoot":"","sources":["../../../../v1/notifications/schemas/notification-disable-block-reason.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,8BAEX;AAFD,WAAY,8BAA8B;IACtC,6FAA2D,CAAA;AAC/D,CAAC,EAFW,8BAA8B,8CAA9B,8BAA8B,QAEzC"}
@@ -2,9 +2,11 @@ import { z } from 'zod';
2
2
  import { NotificationGroup } from './notification-group.enum';
3
3
  import { NotificationChannel } from './notification-channel.enum';
4
4
  import { NotificationSettingStatus } from './notification-setting-status.enum';
5
+ import { NotificationDisableBlockReason } from './notification-disable-block-reason.enum';
5
6
  export declare const NotificationSettingSchema: z.ZodObject<{
6
7
  groupKey: z.ZodEnum<typeof NotificationGroup>;
7
8
  channel: z.ZodEnum<typeof NotificationChannel>;
8
9
  status: z.ZodEnum<typeof NotificationSettingStatus>;
10
+ disableBlockedReason: z.ZodNullable<z.ZodEnum<typeof NotificationDisableBlockReason>>;
9
11
  }, z.core.$strip>;
10
12
  export type NotificationSettingDto = z.infer<typeof NotificationSettingSchema>;
@@ -5,9 +5,11 @@ const zod_1 = require("zod");
5
5
  const notification_group_enum_1 = require("./notification-group.enum");
6
6
  const notification_channel_enum_1 = require("./notification-channel.enum");
7
7
  const notification_setting_status_enum_1 = require("./notification-setting-status.enum");
8
+ const notification_disable_block_reason_enum_1 = require("./notification-disable-block-reason.enum");
8
9
  exports.NotificationSettingSchema = zod_1.z.object({
9
10
  groupKey: zod_1.z.nativeEnum(notification_group_enum_1.NotificationGroup),
10
11
  channel: zod_1.z.nativeEnum(notification_channel_enum_1.NotificationChannel),
11
12
  status: zod_1.z.nativeEnum(notification_setting_status_enum_1.NotificationSettingStatus),
13
+ disableBlockedReason: zod_1.z.nativeEnum(notification_disable_block_reason_enum_1.NotificationDisableBlockReason).nullable(),
12
14
  });
13
15
  //# sourceMappingURL=notification-setting.schema.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"notification-setting.schema.js","sourceRoot":"","sources":["../../../../v1/notifications/schemas/notification-setting.schema.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,uEAA8D;AAC9D,2EAAkE;AAClE,yFAA+E;AAElE,QAAA,yBAAyB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC9C,QAAQ,EAAE,OAAC,CAAC,UAAU,CAAC,2CAAiB,CAAC;IACzC,OAAO,EAAE,OAAC,CAAC,UAAU,CAAC,+CAAmB,CAAC;IAC1C,MAAM,EAAE,OAAC,CAAC,UAAU,CAAC,4DAAyB,CAAC;CAClD,CAAC,CAAC"}
1
+ {"version":3,"file":"notification-setting.schema.js","sourceRoot":"","sources":["../../../../v1/notifications/schemas/notification-setting.schema.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,uEAA8D;AAC9D,2EAAkE;AAClE,yFAA+E;AAC/E,qGAA0F;AAE7E,QAAA,yBAAyB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC9C,QAAQ,EAAE,OAAC,CAAC,UAAU,CAAC,2CAAiB,CAAC;IACzC,OAAO,EAAE,OAAC,CAAC,UAAU,CAAC,+CAAmB,CAAC;IAC1C,MAAM,EAAE,OAAC,CAAC,UAAU,CAAC,4DAAyB,CAAC;IAC/C,oBAAoB,EAAE,OAAC,CAAC,UAAU,CAAC,uEAA8B,CAAC,CAAC,QAAQ,EAAE;CAChF,CAAC,CAAC"}
@@ -5,6 +5,7 @@ export declare const NotificationSettingsResponseSchema: z.ZodObject<{
5
5
  groupKey: z.ZodEnum<typeof import("./notification-group.enum").NotificationGroup>;
6
6
  channel: z.ZodEnum<typeof import("./notification-channel.enum").NotificationChannel>;
7
7
  status: z.ZodEnum<typeof import("./notification-setting-status.enum").NotificationSettingStatus>;
8
+ disableBlockedReason: z.ZodNullable<z.ZodEnum<typeof import("./notification-disable-block-reason.enum").NotificationDisableBlockReason>>;
8
9
  }, z.core.$strip>>;
9
10
  integrations: z.ZodObject<{
10
11
  email: z.ZodObject<{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veruna/api-contracts",
3
- "version": "1.1.38",
3
+ "version": "1.1.39",
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",