@veruna/api-contracts 1.0.15 → 1.0.16

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 (27) hide show
  1. package/build/shared/common-schemas.d.ts +6 -0
  2. package/build/shared/common-schemas.js +8 -1
  3. package/build/v1/blog/admin/commands/delete-category.command.d.ts +3 -1
  4. package/build/v1/blog/admin/commands/delete-category.command.js +1 -1
  5. package/build/v1/blog/admin/commands/delete-post.command.d.ts +3 -1
  6. package/build/v1/blog/admin/commands/delete-post.command.js +1 -1
  7. package/build/v1/blog/schemas/get-posts-query.schema.js +4 -4
  8. package/build/v1/seo-pages/admin/commands/create-page.command.d.ts +12 -0
  9. package/build/v1/seo-pages/admin/commands/delete-page.command.d.ts +1 -1
  10. package/build/v1/seo-pages/admin/commands/delete-page.command.js +2 -1
  11. package/build/v1/seo-pages/admin/commands/update-page.command.d.ts +12 -0
  12. package/build/v1/seo-pages/admin/queries/get-page.query.d.ts +6 -0
  13. package/build/v1/seo-pages/admin/queries/get-pages.query.d.ts +6 -0
  14. package/build/v1/seo-pages/public/queries/get-page-by-alias.query.d.ts +6 -0
  15. package/build/v1/seo-pages/schemas/create-page-request.schema.d.ts +6 -0
  16. package/build/v1/seo-pages/schemas/create-page-request.schema.js +2 -0
  17. package/build/v1/seo-pages/schemas/faq.schema.d.ts +19 -0
  18. package/build/v1/seo-pages/schemas/faq.schema.js +17 -0
  19. package/build/v1/seo-pages/schemas/index.d.ts +1 -0
  20. package/build/v1/seo-pages/schemas/index.js +4 -1
  21. package/build/v1/seo-pages/schemas/page-response.schema.d.ts +6 -0
  22. package/build/v1/seo-pages/schemas/page-response.schema.js +2 -0
  23. package/build/v1/seo-pages/schemas/update-page-request.schema.d.ts +6 -0
  24. package/build/v1/seo-pages/schemas/update-page-request.schema.js +2 -0
  25. package/build/v1/seo-pages/seo-pages.errors.d.ts +2 -1
  26. package/build/v1/seo-pages/seo-pages.errors.js +5 -0
  27. package/package.json +1 -1
@@ -3,6 +3,12 @@ import { z } from 'zod';
3
3
  * Empty Response (for void operations)
4
4
  */
5
5
  export declare const EmptyResponseSchema: z.ZodObject<{}, z.core.$strip>;
6
+ /**
7
+ * Delete Response Schema (returns UUID of deleted entity)
8
+ */
9
+ export declare const DeleteResponseSchema: z.ZodObject<{
10
+ uuid: z.ZodString;
11
+ }, z.core.$strip>;
6
12
  /**
7
13
  * Error Response Schema
8
14
  */
@@ -1,11 +1,18 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ErrorResponseSchema = exports.EmptyResponseSchema = void 0;
3
+ exports.ErrorResponseSchema = exports.DeleteResponseSchema = exports.EmptyResponseSchema = void 0;
4
4
  const zod_1 = require("zod");
5
+ const regex_1 = require("./regex");
5
6
  /**
6
7
  * Empty Response (for void operations)
7
8
  */
8
9
  exports.EmptyResponseSchema = zod_1.z.object({});
10
+ /**
11
+ * Delete Response Schema (returns UUID of deleted entity)
12
+ */
13
+ exports.DeleteResponseSchema = zod_1.z.object({
14
+ uuid: zod_1.z.string().regex(regex_1.UUID_REGEX),
15
+ });
9
16
  /**
10
17
  * Error Response Schema
11
18
  */
@@ -2,7 +2,9 @@ import { z } from 'zod';
2
2
  import { HttpMethod } from '../../../../shared/http-method';
3
3
  export declare namespace AdminBlogDeleteCategoryCommand {
4
4
  const Request: z.ZodObject<{}, z.core.$strip>;
5
- const Response: z.ZodObject<{}, z.core.$strip>;
5
+ const Response: z.ZodObject<{
6
+ uuid: z.ZodString;
7
+ }, z.core.$strip>;
6
8
  const URL: (uuid: string) => string;
7
9
  const METHOD = HttpMethod.DELETE;
8
10
  type RequestType = z.infer<typeof Request>;
@@ -8,7 +8,7 @@ const common_schemas_1 = require("../../../../shared/common-schemas");
8
8
  var AdminBlogDeleteCategoryCommand;
9
9
  (function (AdminBlogDeleteCategoryCommand) {
10
10
  AdminBlogDeleteCategoryCommand.Request = zod_1.z.object({});
11
- AdminBlogDeleteCategoryCommand.Response = common_schemas_1.EmptyResponseSchema;
11
+ AdminBlogDeleteCategoryCommand.Response = common_schemas_1.DeleteResponseSchema;
12
12
  AdminBlogDeleteCategoryCommand.URL = (uuid) => rest_api_1.REST_API.V1.BLOG.ADMIN.CATEGORIES.DELETE(uuid);
13
13
  AdminBlogDeleteCategoryCommand.METHOD = http_method_1.HttpMethod.DELETE;
14
14
  })(AdminBlogDeleteCategoryCommand || (exports.AdminBlogDeleteCategoryCommand = AdminBlogDeleteCategoryCommand = {}));
@@ -2,7 +2,9 @@ import { z } from 'zod';
2
2
  import { HttpMethod } from '../../../../shared/http-method';
3
3
  export declare namespace AdminBlogDeletePostCommand {
4
4
  const Request: z.ZodObject<{}, z.core.$strip>;
5
- const Response: z.ZodObject<{}, z.core.$strip>;
5
+ const Response: z.ZodObject<{
6
+ uuid: z.ZodString;
7
+ }, z.core.$strip>;
6
8
  const URL: (uuid: string) => string;
7
9
  const METHOD = HttpMethod.DELETE;
8
10
  type RequestType = z.infer<typeof Request>;
@@ -8,7 +8,7 @@ const common_schemas_1 = require("../../../../shared/common-schemas");
8
8
  var AdminBlogDeletePostCommand;
9
9
  (function (AdminBlogDeletePostCommand) {
10
10
  AdminBlogDeletePostCommand.Request = zod_1.z.object({});
11
- AdminBlogDeletePostCommand.Response = common_schemas_1.EmptyResponseSchema;
11
+ AdminBlogDeletePostCommand.Response = common_schemas_1.DeleteResponseSchema;
12
12
  AdminBlogDeletePostCommand.URL = (uuid) => rest_api_1.REST_API.V1.BLOG.ADMIN.POSTS.DELETE(uuid);
13
13
  AdminBlogDeletePostCommand.METHOD = http_method_1.HttpMethod.DELETE;
14
14
  })(AdminBlogDeletePostCommand || (exports.AdminBlogDeletePostCommand = AdminBlogDeletePostCommand = {}));
@@ -2,12 +2,12 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.GetPostsQueryPublicSchema = exports.GetPostsQueryAdminSchema = void 0;
4
4
  const zod_1 = require("zod");
5
- const pagination_schema_1 = require("../../../shared/pagination.schema");
5
+ const shared_1 = require("../../../shared");
6
6
  const blog_post_status_enum_1 = require("./blog-post-status.enum");
7
- exports.GetPostsQueryAdminSchema = pagination_schema_1.PaginationQuerySchema.extend({
8
- status: zod_1.z.nativeEnum(blog_post_status_enum_1.BlogPostStatus).optional(),
7
+ exports.GetPostsQueryAdminSchema = shared_1.PaginationQuerySchema.extend({
8
+ status: zod_1.z.enum(blog_post_status_enum_1.BlogPostStatus).optional(),
9
9
  categoryAliases: zod_1.z.array(zod_1.z.string()).optional(),
10
10
  });
11
- exports.GetPostsQueryPublicSchema = pagination_schema_1.PaginationQuerySchema.extend({
11
+ exports.GetPostsQueryPublicSchema = shared_1.PaginationQuerySchema.extend({
12
12
  categoryAliases: zod_1.z.array(zod_1.z.string()).optional(),
13
13
  });
@@ -9,6 +9,12 @@ export declare namespace AdminSeoPageCreatePageCommand {
9
9
  content: z.ZodString;
10
10
  alias: z.ZodString;
11
11
  type: z.ZodEnum<typeof import("../../schemas").PageType>;
12
+ faq: z.ZodOptional<z.ZodObject<{
13
+ items: z.ZodDefault<z.ZodArray<z.ZodObject<{
14
+ question: z.ZodString;
15
+ answer: z.ZodString;
16
+ }, z.core.$strip>>>;
17
+ }, z.core.$strip>>;
12
18
  }, z.core.$strip>;
13
19
  const Response: z.ZodObject<{
14
20
  uuid: z.ZodString;
@@ -19,6 +25,12 @@ export declare namespace AdminSeoPageCreatePageCommand {
19
25
  content: z.ZodString;
20
26
  alias: z.ZodString;
21
27
  type: z.ZodEnum<typeof import("../../schemas").PageType>;
28
+ faq: z.ZodObject<{
29
+ items: z.ZodDefault<z.ZodArray<z.ZodObject<{
30
+ question: z.ZodString;
31
+ answer: z.ZodString;
32
+ }, z.core.$strip>>>;
33
+ }, z.core.$strip>;
22
34
  createdAt: z.ZodString;
23
35
  updatedAt: z.ZodString;
24
36
  }, z.core.$strip>;
@@ -3,7 +3,7 @@ import { HttpMethod } from '../../../../shared/http-method';
3
3
  export declare namespace AdminSeoPageDeletePageCommand {
4
4
  const Request: z.ZodObject<{}, z.core.$strip>;
5
5
  const Response: z.ZodObject<{
6
- success: z.ZodBoolean;
6
+ uuid: z.ZodString;
7
7
  }, z.core.$strip>;
8
8
  const URL: (uuid: string) => string;
9
9
  const METHOD = HttpMethod.DELETE;
@@ -4,10 +4,11 @@ exports.AdminSeoPageDeletePageCommand = void 0;
4
4
  const zod_1 = require("zod");
5
5
  const rest_api_1 = require("../../../../rest-api");
6
6
  const http_method_1 = require("../../../../shared/http-method");
7
+ const common_schemas_1 = require("../../../../shared/common-schemas");
7
8
  var AdminSeoPageDeletePageCommand;
8
9
  (function (AdminSeoPageDeletePageCommand) {
9
10
  AdminSeoPageDeletePageCommand.Request = zod_1.z.object({});
10
- AdminSeoPageDeletePageCommand.Response = zod_1.z.object({ success: zod_1.z.boolean() });
11
+ AdminSeoPageDeletePageCommand.Response = common_schemas_1.DeleteResponseSchema;
11
12
  AdminSeoPageDeletePageCommand.URL = (uuid) => rest_api_1.REST_API.V1.SEO_PAGES.ADMIN.DELETE(uuid);
12
13
  AdminSeoPageDeletePageCommand.METHOD = http_method_1.HttpMethod.DELETE;
13
14
  })(AdminSeoPageDeletePageCommand || (exports.AdminSeoPageDeletePageCommand = AdminSeoPageDeletePageCommand = {}));
@@ -9,6 +9,12 @@ export declare namespace AdminSeoPageUpdatePageCommand {
9
9
  content: z.ZodOptional<z.ZodString>;
10
10
  alias: z.ZodOptional<z.ZodString>;
11
11
  type: z.ZodOptional<z.ZodEnum<typeof import("../../schemas").PageType>>;
12
+ faq: z.ZodOptional<z.ZodObject<{
13
+ items: z.ZodDefault<z.ZodArray<z.ZodObject<{
14
+ question: z.ZodString;
15
+ answer: z.ZodString;
16
+ }, z.core.$strip>>>;
17
+ }, z.core.$strip>>;
12
18
  }, z.core.$strip>;
13
19
  const Response: z.ZodObject<{
14
20
  uuid: z.ZodString;
@@ -19,6 +25,12 @@ export declare namespace AdminSeoPageUpdatePageCommand {
19
25
  content: z.ZodString;
20
26
  alias: z.ZodString;
21
27
  type: z.ZodEnum<typeof import("../../schemas").PageType>;
28
+ faq: z.ZodObject<{
29
+ items: z.ZodDefault<z.ZodArray<z.ZodObject<{
30
+ question: z.ZodString;
31
+ answer: z.ZodString;
32
+ }, z.core.$strip>>>;
33
+ }, z.core.$strip>;
22
34
  createdAt: z.ZodString;
23
35
  updatedAt: z.ZodString;
24
36
  }, z.core.$strip>;
@@ -11,6 +11,12 @@ export declare namespace AdminSeoPageGetPageQuery {
11
11
  content: z.ZodString;
12
12
  alias: z.ZodString;
13
13
  type: z.ZodEnum<typeof import("../../schemas").PageType>;
14
+ faq: z.ZodObject<{
15
+ items: z.ZodDefault<z.ZodArray<z.ZodObject<{
16
+ question: z.ZodString;
17
+ answer: z.ZodString;
18
+ }, z.core.$strip>>>;
19
+ }, z.core.$strip>;
14
20
  createdAt: z.ZodString;
15
21
  updatedAt: z.ZodString;
16
22
  }, z.core.$strip>;
@@ -15,6 +15,12 @@ export declare namespace AdminSeoPageGetPagesQuery {
15
15
  content: z.ZodString;
16
16
  alias: z.ZodString;
17
17
  type: z.ZodEnum<typeof import("../../schemas").PageType>;
18
+ faq: z.ZodObject<{
19
+ items: z.ZodDefault<z.ZodArray<z.ZodObject<{
20
+ question: z.ZodString;
21
+ answer: z.ZodString;
22
+ }, z.core.$strip>>>;
23
+ }, z.core.$strip>;
18
24
  createdAt: z.ZodString;
19
25
  updatedAt: z.ZodString;
20
26
  }, z.core.$strip>>;
@@ -11,6 +11,12 @@ export declare namespace SeoPageGetPageByAliasQuery {
11
11
  content: z.ZodString;
12
12
  alias: z.ZodString;
13
13
  type: z.ZodEnum<typeof import("../../schemas").PageType>;
14
+ faq: z.ZodObject<{
15
+ items: z.ZodDefault<z.ZodArray<z.ZodObject<{
16
+ question: z.ZodString;
17
+ answer: z.ZodString;
18
+ }, z.core.$strip>>>;
19
+ }, z.core.$strip>;
14
20
  createdAt: z.ZodString;
15
21
  updatedAt: z.ZodString;
16
22
  }, z.core.$strip>;
@@ -11,4 +11,10 @@ export declare const CreatePageRequestSchema: z.ZodObject<{
11
11
  content: z.ZodString;
12
12
  alias: z.ZodString;
13
13
  type: z.ZodEnum<typeof PageType>;
14
+ faq: z.ZodOptional<z.ZodObject<{
15
+ items: z.ZodDefault<z.ZodArray<z.ZodObject<{
16
+ question: z.ZodString;
17
+ answer: z.ZodString;
18
+ }, z.core.$strip>>>;
19
+ }, z.core.$strip>>;
14
20
  }, z.core.$strip>;
@@ -4,6 +4,7 @@ exports.CreatePageRequestSchema = void 0;
4
4
  const zod_1 = require("zod");
5
5
  const shared_1 = require("../../../shared");
6
6
  const page_type_enum_1 = require("./page-type.enum");
7
+ const faq_schema_1 = require("./faq.schema");
7
8
  /**
8
9
  * Create SEO Page Request Schema
9
10
  */
@@ -15,4 +16,5 @@ exports.CreatePageRequestSchema = zod_1.z.object({
15
16
  content: zod_1.z.string().min(1),
16
17
  alias: zod_1.z.string().min(1).max(200).regex(shared_1.SLUG_REGEX),
17
18
  type: zod_1.z.nativeEnum(page_type_enum_1.PageType),
19
+ faq: faq_schema_1.FaqSchema.optional(),
18
20
  });
@@ -0,0 +1,19 @@
1
+ import { z } from 'zod';
2
+ /**
3
+ * FAQ Item Schema
4
+ */
5
+ export declare const FaqItemSchema: z.ZodObject<{
6
+ question: z.ZodString;
7
+ answer: z.ZodString;
8
+ }, z.core.$strip>;
9
+ /**
10
+ * FAQ Schema
11
+ */
12
+ export declare const FaqSchema: z.ZodObject<{
13
+ items: z.ZodDefault<z.ZodArray<z.ZodObject<{
14
+ question: z.ZodString;
15
+ answer: z.ZodString;
16
+ }, z.core.$strip>>>;
17
+ }, z.core.$strip>;
18
+ export type FaqItem = z.infer<typeof FaqItemSchema>;
19
+ export type Faq = z.infer<typeof FaqSchema>;
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.FaqSchema = exports.FaqItemSchema = void 0;
4
+ const zod_1 = require("zod");
5
+ /**
6
+ * FAQ Item Schema
7
+ */
8
+ exports.FaqItemSchema = zod_1.z.object({
9
+ question: zod_1.z.string().min(10).max(500),
10
+ answer: zod_1.z.string().min(20).max(2000),
11
+ });
12
+ /**
13
+ * FAQ Schema
14
+ */
15
+ exports.FaqSchema = zod_1.z.object({
16
+ items: zod_1.z.array(exports.FaqItemSchema).max(20).default([]),
17
+ });
@@ -5,3 +5,4 @@ export { PageType } from './page-type.enum';
5
5
  export { PageResponseSchema } from './page-response.schema';
6
6
  export { CreatePageRequestSchema } from './create-page-request.schema';
7
7
  export { UpdatePageRequestSchema } from './update-page-request.schema';
8
+ export { FaqSchema, FaqItemSchema, type Faq, type FaqItem } from './faq.schema';
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdatePageRequestSchema = exports.CreatePageRequestSchema = exports.PageResponseSchema = exports.PageType = void 0;
3
+ exports.FaqItemSchema = exports.FaqSchema = exports.UpdatePageRequestSchema = exports.CreatePageRequestSchema = exports.PageResponseSchema = exports.PageType = void 0;
4
4
  /**
5
5
  * Centralized exports for SEO Pages schemas
6
6
  */
@@ -12,3 +12,6 @@ var create_page_request_schema_1 = require("./create-page-request.schema");
12
12
  Object.defineProperty(exports, "CreatePageRequestSchema", { enumerable: true, get: function () { return create_page_request_schema_1.CreatePageRequestSchema; } });
13
13
  var update_page_request_schema_1 = require("./update-page-request.schema");
14
14
  Object.defineProperty(exports, "UpdatePageRequestSchema", { enumerable: true, get: function () { return update_page_request_schema_1.UpdatePageRequestSchema; } });
15
+ var faq_schema_1 = require("./faq.schema");
16
+ Object.defineProperty(exports, "FaqSchema", { enumerable: true, get: function () { return faq_schema_1.FaqSchema; } });
17
+ Object.defineProperty(exports, "FaqItemSchema", { enumerable: true, get: function () { return faq_schema_1.FaqItemSchema; } });
@@ -12,6 +12,12 @@ export declare const PageResponseSchema: z.ZodObject<{
12
12
  content: z.ZodString;
13
13
  alias: z.ZodString;
14
14
  type: z.ZodEnum<typeof PageType>;
15
+ faq: z.ZodObject<{
16
+ items: z.ZodDefault<z.ZodArray<z.ZodObject<{
17
+ question: z.ZodString;
18
+ answer: z.ZodString;
19
+ }, z.core.$strip>>>;
20
+ }, z.core.$strip>;
15
21
  createdAt: z.ZodString;
16
22
  updatedAt: z.ZodString;
17
23
  }, z.core.$strip>;
@@ -4,6 +4,7 @@ exports.PageResponseSchema = void 0;
4
4
  const zod_1 = require("zod");
5
5
  const regex_1 = require("../../../shared/regex");
6
6
  const page_type_enum_1 = require("./page-type.enum");
7
+ const faq_schema_1 = require("./faq.schema");
7
8
  /**
8
9
  * SEO Page Response Schema
9
10
  */
@@ -16,6 +17,7 @@ exports.PageResponseSchema = zod_1.z.object({
16
17
  content: zod_1.z.string(),
17
18
  alias: zod_1.z.string(),
18
19
  type: zod_1.z.nativeEnum(page_type_enum_1.PageType),
20
+ faq: faq_schema_1.FaqSchema,
19
21
  createdAt: zod_1.z.string().regex(regex_1.DATETIME_REGEX),
20
22
  updatedAt: zod_1.z.string().regex(regex_1.DATETIME_REGEX),
21
23
  });
@@ -11,4 +11,10 @@ export declare const UpdatePageRequestSchema: z.ZodObject<{
11
11
  content: z.ZodOptional<z.ZodString>;
12
12
  alias: z.ZodOptional<z.ZodString>;
13
13
  type: z.ZodOptional<z.ZodEnum<typeof PageType>>;
14
+ faq: z.ZodOptional<z.ZodObject<{
15
+ items: z.ZodDefault<z.ZodArray<z.ZodObject<{
16
+ question: z.ZodString;
17
+ answer: z.ZodString;
18
+ }, z.core.$strip>>>;
19
+ }, z.core.$strip>>;
14
20
  }, z.core.$strip>;
@@ -4,6 +4,7 @@ exports.UpdatePageRequestSchema = void 0;
4
4
  const zod_1 = require("zod");
5
5
  const shared_1 = require("../../../shared");
6
6
  const page_type_enum_1 = require("./page-type.enum");
7
+ const faq_schema_1 = require("./faq.schema");
7
8
  /**
8
9
  * Update SEO Page Request Schema
9
10
  */
@@ -15,4 +16,5 @@ exports.UpdatePageRequestSchema = zod_1.z.object({
15
16
  content: zod_1.z.string().min(1).optional(),
16
17
  alias: zod_1.z.string().min(1).max(200).regex(shared_1.SLUG_REGEX).optional(),
17
18
  type: zod_1.z.nativeEnum(page_type_enum_1.PageType).optional(),
19
+ faq: faq_schema_1.FaqSchema.optional(),
18
20
  });
@@ -6,6 +6,7 @@ export declare enum SeoPageErrorCode {
6
6
  PAGE_CREATION_FAILED = "PAGE_CREATION_FAILED",
7
7
  PAGE_UPDATE_FAILED = "PAGE_UPDATE_FAILED",
8
8
  PAGE_DELETE_FAILED = "PAGE_DELETE_FAILED",
9
- INVALID_ALIAS_FORMAT = "INVALID_ALIAS_FORMAT"
9
+ INVALID_ALIAS_FORMAT = "INVALID_ALIAS_FORMAT",
10
+ INVALID_FAQ_FORMAT = "INVALID_FAQ_FORMAT"
10
11
  }
11
12
  export declare const SEO_PAGE_ERRORS: Record<SeoPageErrorCode, ErrorMetadata>;
@@ -10,6 +10,7 @@ var SeoPageErrorCode;
10
10
  SeoPageErrorCode["PAGE_UPDATE_FAILED"] = "PAGE_UPDATE_FAILED";
11
11
  SeoPageErrorCode["PAGE_DELETE_FAILED"] = "PAGE_DELETE_FAILED";
12
12
  SeoPageErrorCode["INVALID_ALIAS_FORMAT"] = "INVALID_ALIAS_FORMAT";
13
+ SeoPageErrorCode["INVALID_FAQ_FORMAT"] = "INVALID_FAQ_FORMAT";
13
14
  })(SeoPageErrorCode || (exports.SeoPageErrorCode = SeoPageErrorCode = {}));
14
15
  exports.SEO_PAGE_ERRORS = {
15
16
  [SeoPageErrorCode.PAGE_NOT_FOUND]: {
@@ -40,4 +41,8 @@ exports.SEO_PAGE_ERRORS = {
40
41
  code: SeoPageErrorCode.INVALID_ALIAS_FORMAT,
41
42
  statusCode: 400,
42
43
  },
44
+ [SeoPageErrorCode.INVALID_FAQ_FORMAT]: {
45
+ code: SeoPageErrorCode.INVALID_FAQ_FORMAT,
46
+ statusCode: 400,
47
+ },
43
48
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veruna/api-contracts",
3
- "version": "1.0.15",
3
+ "version": "1.0.16",
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",