@veruna/api-contracts 13.12.0 → 13.14.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/model-route/admin/commands/create-model-route.command.d.ts +2 -0
- package/build/v1/model-route/admin/commands/update-model-route.command.d.ts +2 -0
- package/build/v1/model-route/admin/queries/get-model-route.query.d.ts +1 -0
- package/build/v1/model-route/admin/queries/list-model-routes-by-model.query.d.ts +1 -0
- package/build/v1/model-route/schemas/create-model-route-request.schema.d.ts +1 -0
- package/build/v1/model-route/schemas/index.d.ts +1 -0
- package/build/v1/model-route/schemas/index.js +1 -0
- package/build/v1/model-route/schemas/index.js.map +1 -1
- package/build/v1/model-route/schemas/list-model-routes-response.schema.d.ts +1 -0
- package/build/v1/model-route/schemas/model-route-response.schema.d.ts +1 -0
- package/build/v1/model-route/schemas/openrouter-transport.enum.d.ts +4 -0
- package/build/v1/model-route/schemas/openrouter-transport.enum.js +9 -0
- package/build/v1/model-route/schemas/openrouter-transport.enum.js.map +1 -0
- package/build/v1/model-route/schemas/provider-generation-config.schema.d.ts +3 -0
- package/build/v1/model-route/schemas/provider-generation-config.schema.js +2 -0
- package/build/v1/model-route/schemas/provider-generation-config.schema.js.map +1 -1
- package/build/v1/model-route/schemas/update-model-route-request.schema.d.ts +1 -0
- package/build/v1/seo-blocks/content-schemas/before-after-slider.block.d.ts +27 -6
- package/build/v1/seo-blocks/content-schemas/before-after-slider.block.js +16 -3
- package/build/v1/seo-blocks/content-schemas/before-after-slider.block.js.map +1 -1
- package/build/v1/seo-blocks/content-schemas/index.d.ts +1 -1
- package/build/v1/seo-blocks/content-schemas/index.js +2 -1
- package/build/v1/seo-blocks/content-schemas/index.js.map +1 -1
- package/build-esm/.tsbuildinfo +1 -1
- package/build-esm/v1/model-route/schemas/index.js +1 -0
- package/build-esm/v1/model-route/schemas/index.js.map +1 -1
- package/build-esm/v1/model-route/schemas/openrouter-transport.enum.js +6 -0
- package/build-esm/v1/model-route/schemas/openrouter-transport.enum.js.map +1 -0
- package/build-esm/v1/model-route/schemas/provider-generation-config.schema.js +2 -0
- package/build-esm/v1/model-route/schemas/provider-generation-config.schema.js.map +1 -1
- package/build-esm/v1/seo-blocks/content-schemas/before-after-slider.block.js +15 -2
- package/build-esm/v1/seo-blocks/content-schemas/before-after-slider.block.js.map +1 -1
- package/build-esm/v1/seo-blocks/content-schemas/index.js +1 -1
- package/build-esm/v1/seo-blocks/content-schemas/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -9,6 +9,7 @@ export declare namespace AdminModelRouteCreateCommand {
|
|
|
9
9
|
status: z.ZodDefault<z.ZodEnum<typeof import("../..").ModelRouteStatus>>;
|
|
10
10
|
runtimeOverrides: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
11
11
|
openrouter: z.ZodOptional<z.ZodObject<{
|
|
12
|
+
transport: z.ZodOptional<z.ZodEnum<typeof import("../..").OpenRouterTransport>>;
|
|
12
13
|
useProxy: z.ZodOptional<z.ZodBoolean>;
|
|
13
14
|
imageConfig: z.ZodOptional<z.ZodObject<{
|
|
14
15
|
aspect_ratio: z.ZodOptional<z.ZodString>;
|
|
@@ -58,6 +59,7 @@ export declare namespace AdminModelRouteCreateCommand {
|
|
|
58
59
|
status: z.ZodEnum<typeof import("../..").ModelRouteStatus>;
|
|
59
60
|
runtimeOverrides: z.ZodObject<{
|
|
60
61
|
openrouter: z.ZodOptional<z.ZodObject<{
|
|
62
|
+
transport: z.ZodOptional<z.ZodEnum<typeof import("../..").OpenRouterTransport>>;
|
|
61
63
|
useProxy: z.ZodOptional<z.ZodBoolean>;
|
|
62
64
|
imageConfig: z.ZodOptional<z.ZodObject<{
|
|
63
65
|
aspect_ratio: z.ZodOptional<z.ZodString>;
|
|
@@ -8,6 +8,7 @@ export declare namespace AdminModelRouteUpdateCommand {
|
|
|
8
8
|
status: z.ZodOptional<z.ZodEnum<typeof import("../..").ModelRouteStatus>>;
|
|
9
9
|
runtimeOverrides: z.ZodOptional<z.ZodObject<{
|
|
10
10
|
openrouter: z.ZodOptional<z.ZodObject<{
|
|
11
|
+
transport: z.ZodOptional<z.ZodEnum<typeof import("../..").OpenRouterTransport>>;
|
|
11
12
|
useProxy: z.ZodOptional<z.ZodBoolean>;
|
|
12
13
|
imageConfig: z.ZodOptional<z.ZodObject<{
|
|
13
14
|
aspect_ratio: z.ZodOptional<z.ZodString>;
|
|
@@ -57,6 +58,7 @@ export declare namespace AdminModelRouteUpdateCommand {
|
|
|
57
58
|
status: z.ZodEnum<typeof import("../..").ModelRouteStatus>;
|
|
58
59
|
runtimeOverrides: z.ZodObject<{
|
|
59
60
|
openrouter: z.ZodOptional<z.ZodObject<{
|
|
61
|
+
transport: z.ZodOptional<z.ZodEnum<typeof import("../..").OpenRouterTransport>>;
|
|
60
62
|
useProxy: z.ZodOptional<z.ZodBoolean>;
|
|
61
63
|
imageConfig: z.ZodOptional<z.ZodObject<{
|
|
62
64
|
aspect_ratio: z.ZodOptional<z.ZodString>;
|
|
@@ -11,6 +11,7 @@ export declare namespace AdminModelRouteGetQuery {
|
|
|
11
11
|
status: z.ZodEnum<typeof import("../..").ModelRouteStatus>;
|
|
12
12
|
runtimeOverrides: z.ZodObject<{
|
|
13
13
|
openrouter: z.ZodOptional<z.ZodObject<{
|
|
14
|
+
transport: z.ZodOptional<z.ZodEnum<typeof import("../..").OpenRouterTransport>>;
|
|
14
15
|
useProxy: z.ZodOptional<z.ZodBoolean>;
|
|
15
16
|
imageConfig: z.ZodOptional<z.ZodObject<{
|
|
16
17
|
aspect_ratio: z.ZodOptional<z.ZodString>;
|
|
@@ -20,6 +20,7 @@ export declare namespace AdminModelRouteListByModelQuery {
|
|
|
20
20
|
status: z.ZodEnum<typeof import("../..").ModelRouteStatus>;
|
|
21
21
|
runtimeOverrides: z.ZodObject<{
|
|
22
22
|
openrouter: z.ZodOptional<z.ZodObject<{
|
|
23
|
+
transport: z.ZodOptional<z.ZodEnum<typeof import("../..").OpenRouterTransport>>;
|
|
23
24
|
useProxy: z.ZodOptional<z.ZodBoolean>;
|
|
24
25
|
imageConfig: z.ZodOptional<z.ZodObject<{
|
|
25
26
|
aspect_ratio: z.ZodOptional<z.ZodString>;
|
|
@@ -9,6 +9,7 @@ export declare const CreateModelRouteRequestSchema: z.ZodObject<{
|
|
|
9
9
|
status: z.ZodDefault<z.ZodEnum<typeof ModelRouteStatus>>;
|
|
10
10
|
runtimeOverrides: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
11
11
|
openrouter: z.ZodOptional<z.ZodObject<{
|
|
12
|
+
transport: z.ZodOptional<z.ZodEnum<typeof import("./openrouter-transport.enum").OpenRouterTransport>>;
|
|
12
13
|
useProxy: z.ZodOptional<z.ZodBoolean>;
|
|
13
14
|
imageConfig: z.ZodOptional<z.ZodObject<{
|
|
14
15
|
aspect_ratio: z.ZodOptional<z.ZodString>;
|
|
@@ -2,6 +2,7 @@ export * from './model-route-status.enum';
|
|
|
2
2
|
export * from './admin-model-route-sort.enum';
|
|
3
3
|
export * from './kie-protocol.enum';
|
|
4
4
|
export * from './wellflow-protocol.enum';
|
|
5
|
+
export * from './openrouter-transport.enum';
|
|
5
6
|
export * from './provider-generation-config.schema';
|
|
6
7
|
export * from './model-route-response.schema';
|
|
7
8
|
export * from './create-model-route-request.schema';
|
|
@@ -18,6 +18,7 @@ __exportStar(require("./model-route-status.enum"), exports);
|
|
|
18
18
|
__exportStar(require("./admin-model-route-sort.enum"), exports);
|
|
19
19
|
__exportStar(require("./kie-protocol.enum"), exports);
|
|
20
20
|
__exportStar(require("./wellflow-protocol.enum"), exports);
|
|
21
|
+
__exportStar(require("./openrouter-transport.enum"), exports);
|
|
21
22
|
__exportStar(require("./provider-generation-config.schema"), exports);
|
|
22
23
|
__exportStar(require("./model-route-response.schema"), exports);
|
|
23
24
|
__exportStar(require("./create-model-route-request.schema"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../v1/model-route/schemas/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4DAA0C;AAC1C,gEAA8C;AAC9C,sDAAoC;AACpC,2DAAyC;AACzC,sEAAoD;AACpD,gEAA8C;AAC9C,sEAAoD;AACpD,sEAAoD;AACpD,sEAAoD;AACpD,qEAAmD;AACnD,8DAA4C;AAC5C,+DAA6C;AAC7C,+DAA6C;AAC7C,qEAAmD"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../v1/model-route/schemas/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,4DAA0C;AAC1C,gEAA8C;AAC9C,sDAAoC;AACpC,2DAAyC;AACzC,8DAA4C;AAC5C,sEAAoD;AACpD,gEAA8C;AAC9C,sEAAoD;AACpD,sEAAoD;AACpD,sEAAoD;AACpD,qEAAmD;AACnD,8DAA4C;AAC5C,+DAA6C;AAC7C,+DAA6C;AAC7C,qEAAmD"}
|
|
@@ -9,6 +9,7 @@ export declare const ListModelRoutesResponseSchema: z.ZodObject<{
|
|
|
9
9
|
status: z.ZodEnum<typeof import("./model-route-status.enum").ModelRouteStatus>;
|
|
10
10
|
runtimeOverrides: z.ZodObject<{
|
|
11
11
|
openrouter: z.ZodOptional<z.ZodObject<{
|
|
12
|
+
transport: z.ZodOptional<z.ZodEnum<typeof import("./openrouter-transport.enum").OpenRouterTransport>>;
|
|
12
13
|
useProxy: z.ZodOptional<z.ZodBoolean>;
|
|
13
14
|
imageConfig: z.ZodOptional<z.ZodObject<{
|
|
14
15
|
aspect_ratio: z.ZodOptional<z.ZodString>;
|
|
@@ -10,6 +10,7 @@ export declare const ModelRouteResponseSchema: z.ZodObject<{
|
|
|
10
10
|
status: z.ZodEnum<typeof ModelRouteStatus>;
|
|
11
11
|
runtimeOverrides: z.ZodObject<{
|
|
12
12
|
openrouter: z.ZodOptional<z.ZodObject<{
|
|
13
|
+
transport: z.ZodOptional<z.ZodEnum<typeof import("./openrouter-transport.enum").OpenRouterTransport>>;
|
|
13
14
|
useProxy: z.ZodOptional<z.ZodBoolean>;
|
|
14
15
|
imageConfig: z.ZodOptional<z.ZodObject<{
|
|
15
16
|
aspect_ratio: z.ZodOptional<z.ZodString>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.OpenRouterTransport = void 0;
|
|
4
|
+
var OpenRouterTransport;
|
|
5
|
+
(function (OpenRouterTransport) {
|
|
6
|
+
OpenRouterTransport["CHAT"] = "CHAT";
|
|
7
|
+
OpenRouterTransport["IMAGES"] = "IMAGES";
|
|
8
|
+
})(OpenRouterTransport || (exports.OpenRouterTransport = OpenRouterTransport = {}));
|
|
9
|
+
//# sourceMappingURL=openrouter-transport.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"openrouter-transport.enum.js","sourceRoot":"","sources":["../../../../v1/model-route/schemas/openrouter-transport.enum.ts"],"names":[],"mappings":";;;AAqBA,IAAY,mBAGX;AAHD,WAAY,mBAAmB;IAC3B,oCAAa,CAAA;IACb,wCAAiB,CAAA;AACrB,CAAC,EAHW,mBAAmB,mCAAnB,mBAAmB,QAG9B"}
|
|
@@ -2,6 +2,7 @@ import { z } from 'zod';
|
|
|
2
2
|
import { KieBodyMode } from '../../tool/schemas/kie-body-mode.enum';
|
|
3
3
|
import { KieProtocol } from './kie-protocol.enum';
|
|
4
4
|
import { WellflowProtocol } from './wellflow-protocol.enum';
|
|
5
|
+
import { OpenRouterTransport } from './openrouter-transport.enum';
|
|
5
6
|
export declare const KiePricingSchema: z.ZodObject<{
|
|
6
7
|
base: z.ZodNumber;
|
|
7
8
|
modifiers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodNumber>>>;
|
|
@@ -22,6 +23,7 @@ export declare const OpenRouterProviderConfigSchema: z.ZodObject<{
|
|
|
22
23
|
}, z.core.$strict>;
|
|
23
24
|
export type OpenRouterProviderConfig = z.infer<typeof OpenRouterProviderConfigSchema>;
|
|
24
25
|
export declare const OpenRouterGenerationConfigSchema: z.ZodObject<{
|
|
26
|
+
transport: z.ZodOptional<z.ZodEnum<typeof OpenRouterTransport>>;
|
|
25
27
|
useProxy: z.ZodOptional<z.ZodBoolean>;
|
|
26
28
|
imageConfig: z.ZodOptional<z.ZodObject<{
|
|
27
29
|
aspect_ratio: z.ZodOptional<z.ZodString>;
|
|
@@ -66,6 +68,7 @@ export declare const RouteFailoverConfigSchema: z.ZodObject<{
|
|
|
66
68
|
export type RouteFailoverConfig = z.infer<typeof RouteFailoverConfigSchema>;
|
|
67
69
|
export declare const ProviderGenerationConfigSchema: z.ZodObject<{
|
|
68
70
|
openrouter: z.ZodOptional<z.ZodObject<{
|
|
71
|
+
transport: z.ZodOptional<z.ZodEnum<typeof OpenRouterTransport>>;
|
|
69
72
|
useProxy: z.ZodOptional<z.ZodBoolean>;
|
|
70
73
|
imageConfig: z.ZodOptional<z.ZodObject<{
|
|
71
74
|
aspect_ratio: z.ZodOptional<z.ZodString>;
|
|
@@ -5,6 +5,7 @@ const zod_1 = require("zod");
|
|
|
5
5
|
const kie_body_mode_enum_1 = require("../../tool/schemas/kie-body-mode.enum");
|
|
6
6
|
const kie_protocol_enum_1 = require("./kie-protocol.enum");
|
|
7
7
|
const wellflow_protocol_enum_1 = require("./wellflow-protocol.enum");
|
|
8
|
+
const openrouter_transport_enum_1 = require("./openrouter-transport.enum");
|
|
8
9
|
exports.KiePricingSchema = zod_1.z
|
|
9
10
|
.object({
|
|
10
11
|
base: zod_1.z.number().nonnegative(),
|
|
@@ -31,6 +32,7 @@ exports.OpenRouterProviderConfigSchema = zod_1.z
|
|
|
31
32
|
.strict();
|
|
32
33
|
exports.OpenRouterGenerationConfigSchema = zod_1.z
|
|
33
34
|
.object({
|
|
35
|
+
transport: zod_1.z.enum(openrouter_transport_enum_1.OpenRouterTransport).optional(),
|
|
34
36
|
useProxy: zod_1.z.boolean().optional(),
|
|
35
37
|
imageConfig: exports.OpenRouterImageConfigSchema.optional(),
|
|
36
38
|
provider: exports.OpenRouterProviderConfigSchema.optional(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"provider-generation-config.schema.js","sourceRoot":"","sources":["../../../../v1/model-route/schemas/provider-generation-config.schema.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,8EAAoE;AACpE,2DAAkD;AAClD,qEAA4D;
|
|
1
|
+
{"version":3,"file":"provider-generation-config.schema.js","sourceRoot":"","sources":["../../../../v1/model-route/schemas/provider-generation-config.schema.ts"],"names":[],"mappings":"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"}
|
|
@@ -8,6 +8,7 @@ export declare const UpdateModelRouteRequestSchema: z.ZodObject<{
|
|
|
8
8
|
status: z.ZodOptional<z.ZodEnum<typeof ModelRouteStatus>>;
|
|
9
9
|
runtimeOverrides: z.ZodOptional<z.ZodObject<{
|
|
10
10
|
openrouter: z.ZodOptional<z.ZodObject<{
|
|
11
|
+
transport: z.ZodOptional<z.ZodEnum<typeof import("./openrouter-transport.enum").OpenRouterTransport>>;
|
|
11
12
|
useProxy: z.ZodOptional<z.ZodBoolean>;
|
|
12
13
|
imageConfig: z.ZodOptional<z.ZodObject<{
|
|
13
14
|
aspect_ratio: z.ZodOptional<z.ZodString>;
|
|
@@ -1,26 +1,47 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
export declare const
|
|
3
|
-
label: z.ZodString;
|
|
2
|
+
export declare const BeforeAfterPairSchema: z.ZodObject<{
|
|
4
3
|
beforeSrc: z.ZodString;
|
|
5
4
|
beforeAlt: z.ZodString;
|
|
6
5
|
afterSrc: z.ZodString;
|
|
7
6
|
afterAlt: z.ZodString;
|
|
7
|
+
}, z.core.$strip>;
|
|
8
|
+
export declare const BeforeAfterExampleSchema: z.ZodObject<{
|
|
9
|
+
label: z.ZodString;
|
|
10
|
+
pairs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11
|
+
beforeSrc: z.ZodString;
|
|
12
|
+
beforeAlt: z.ZodString;
|
|
13
|
+
afterSrc: z.ZodString;
|
|
14
|
+
afterAlt: z.ZodString;
|
|
15
|
+
}, z.core.$strip>>>;
|
|
16
|
+
aspectRatio: z.ZodOptional<z.ZodNumber>;
|
|
8
17
|
prompt: z.ZodOptional<z.ZodString>;
|
|
18
|
+
beforeSrc: z.ZodOptional<z.ZodString>;
|
|
19
|
+
beforeAlt: z.ZodOptional<z.ZodString>;
|
|
20
|
+
afterSrc: z.ZodOptional<z.ZodString>;
|
|
21
|
+
afterAlt: z.ZodOptional<z.ZodString>;
|
|
9
22
|
}, z.core.$strip>;
|
|
10
23
|
export declare const BeforeAfterSliderBlockContentSchema: z.ZodObject<{
|
|
11
24
|
title: z.ZodString;
|
|
12
25
|
subtitle: z.ZodOptional<z.ZodString>;
|
|
13
26
|
examples: z.ZodArray<z.ZodObject<{
|
|
14
27
|
label: z.ZodString;
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
28
|
+
pairs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
29
|
+
beforeSrc: z.ZodString;
|
|
30
|
+
beforeAlt: z.ZodString;
|
|
31
|
+
afterSrc: z.ZodString;
|
|
32
|
+
afterAlt: z.ZodString;
|
|
33
|
+
}, z.core.$strip>>>;
|
|
34
|
+
aspectRatio: z.ZodOptional<z.ZodNumber>;
|
|
19
35
|
prompt: z.ZodOptional<z.ZodString>;
|
|
36
|
+
beforeSrc: z.ZodOptional<z.ZodString>;
|
|
37
|
+
beforeAlt: z.ZodOptional<z.ZodString>;
|
|
38
|
+
afterSrc: z.ZodOptional<z.ZodString>;
|
|
39
|
+
afterAlt: z.ZodOptional<z.ZodString>;
|
|
20
40
|
}, z.core.$strip>>;
|
|
21
41
|
initialPosition: z.ZodOptional<z.ZodNumber>;
|
|
22
42
|
beforeLabel: z.ZodOptional<z.ZodString>;
|
|
23
43
|
afterLabel: z.ZodOptional<z.ZodString>;
|
|
24
44
|
}, z.core.$strip>;
|
|
45
|
+
export type BeforeAfterPair = z.infer<typeof BeforeAfterPairSchema>;
|
|
25
46
|
export type BeforeAfterExample = z.infer<typeof BeforeAfterExampleSchema>;
|
|
26
47
|
export type BeforeAfterSliderBlockContent = z.infer<typeof BeforeAfterSliderBlockContentSchema>;
|
|
@@ -1,14 +1,27 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.BeforeAfterSliderBlockContentSchema = exports.BeforeAfterExampleSchema = void 0;
|
|
3
|
+
exports.BeforeAfterSliderBlockContentSchema = exports.BeforeAfterExampleSchema = exports.BeforeAfterPairSchema = void 0;
|
|
4
4
|
const zod_1 = require("zod");
|
|
5
|
-
exports.
|
|
6
|
-
label: zod_1.z.string().min(1).max(60),
|
|
5
|
+
exports.BeforeAfterPairSchema = zod_1.z.object({
|
|
7
6
|
beforeSrc: zod_1.z.string().min(1).max(500),
|
|
8
7
|
beforeAlt: zod_1.z.string().min(1).max(300),
|
|
9
8
|
afterSrc: zod_1.z.string().min(1).max(500),
|
|
10
9
|
afterAlt: zod_1.z.string().min(1).max(300),
|
|
10
|
+
});
|
|
11
|
+
exports.BeforeAfterExampleSchema = zod_1.z
|
|
12
|
+
.object({
|
|
13
|
+
label: zod_1.z.string().min(1).max(60),
|
|
14
|
+
pairs: zod_1.z.array(exports.BeforeAfterPairSchema).min(1).max(6).optional(),
|
|
15
|
+
aspectRatio: zod_1.z.number().min(0.2).max(5).optional(),
|
|
11
16
|
prompt: zod_1.z.string().min(1).max(500).optional(),
|
|
17
|
+
beforeSrc: zod_1.z.string().min(1).max(500).optional(),
|
|
18
|
+
beforeAlt: zod_1.z.string().min(1).max(300).optional(),
|
|
19
|
+
afterSrc: zod_1.z.string().min(1).max(500).optional(),
|
|
20
|
+
afterAlt: zod_1.z.string().min(1).max(300).optional(),
|
|
21
|
+
})
|
|
22
|
+
.refine((example) => Boolean(example.pairs?.length) ||
|
|
23
|
+
Boolean(example.beforeSrc && example.beforeAlt && example.afterSrc && example.afterAlt), {
|
|
24
|
+
message: 'Пример должен содержать pairs либо полную плоскую пару beforeSrc/beforeAlt/afterSrc/afterAlt',
|
|
12
25
|
});
|
|
13
26
|
exports.BeforeAfterSliderBlockContentSchema = zod_1.z.object({
|
|
14
27
|
title: zod_1.z.string().min(1).max(300),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"before-after-slider.block.js","sourceRoot":"","sources":["../../../../v1/seo-blocks/content-schemas/before-after-slider.block.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;
|
|
1
|
+
{"version":3,"file":"before-after-slider.block.js","sourceRoot":"","sources":["../../../../v1/seo-blocks/content-schemas/before-after-slider.block.ts"],"names":[],"mappings":"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"}
|
|
@@ -5,7 +5,7 @@ export declare function getRegisteredSeoBlockTypes(): string[];
|
|
|
5
5
|
export { ExampleTextBlockContentSchema, type ExampleTextBlockContent } from './example-text.block';
|
|
6
6
|
export { HowItWorksBlockContentSchema, HowItWorksStepSchema, HowItWorksStepImageSchema, type HowItWorksBlockContent, type HowItWorksStep, type HowItWorksStepImage, } from './how-it-works.block';
|
|
7
7
|
export { TextDiffBlockContentSchema, TextDiffTabSchema, TextDiffSegmentSchema, type TextDiffBlockContent, type TextDiffTab, type TextDiffSegment, } from './text-diff.block';
|
|
8
|
-
export { BeforeAfterSliderBlockContentSchema, BeforeAfterExampleSchema, type BeforeAfterSliderBlockContent, type BeforeAfterExample, } from './before-after-slider.block';
|
|
8
|
+
export { BeforeAfterSliderBlockContentSchema, BeforeAfterExampleSchema, BeforeAfterPairSchema, type BeforeAfterSliderBlockContent, type BeforeAfterExample, type BeforeAfterPair, } from './before-after-slider.block';
|
|
9
9
|
export { GenerationExamplesBlockContentSchema, GenerationExampleSchema, type GenerationExamplesBlockContent, type GenerationExample, } from './generation-examples.block';
|
|
10
10
|
export { PromptPresetsBlockContentSchema, PromptPresetSchema, type PromptPresetsBlockContent, type PromptPreset, } from './prompt-presets.block';
|
|
11
11
|
export { UseCasesBlockContentSchema, UseCaseItemSchema, type UseCasesBlockContent, type UseCaseItem, } from './use-cases.block';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.NeuroFeaturesBlockContentSchema = exports.NEURO_FEATURE_CARD_KEYS = exports.FixedSectionMarkerContentSchema = exports.FIXED_SECTION_MARKER_TYPES = exports.ChatCtaBlockContentSchema = exports.RelatedToolSchema = exports.RelatedToolsBlockContentSchema = exports.UseCaseItemSchema = exports.UseCasesBlockContentSchema = exports.PromptPresetSchema = exports.PromptPresetsBlockContentSchema = exports.GenerationExampleSchema = exports.GenerationExamplesBlockContentSchema = exports.BeforeAfterExampleSchema = exports.BeforeAfterSliderBlockContentSchema = exports.TextDiffSegmentSchema = exports.TextDiffTabSchema = exports.TextDiffBlockContentSchema = exports.HowItWorksStepImageSchema = exports.HowItWorksStepSchema = exports.HowItWorksBlockContentSchema = exports.ExampleTextBlockContentSchema = exports.SEO_BLOCK_CONTENT_SCHEMAS = void 0;
|
|
3
|
+
exports.NeuroFeaturesBlockContentSchema = exports.NEURO_FEATURE_CARD_KEYS = exports.FixedSectionMarkerContentSchema = exports.FIXED_SECTION_MARKER_TYPES = exports.ChatCtaBlockContentSchema = exports.RelatedToolSchema = exports.RelatedToolsBlockContentSchema = exports.UseCaseItemSchema = exports.UseCasesBlockContentSchema = exports.PromptPresetSchema = exports.PromptPresetsBlockContentSchema = exports.GenerationExampleSchema = exports.GenerationExamplesBlockContentSchema = exports.BeforeAfterPairSchema = exports.BeforeAfterExampleSchema = exports.BeforeAfterSliderBlockContentSchema = exports.TextDiffSegmentSchema = exports.TextDiffTabSchema = exports.TextDiffBlockContentSchema = exports.HowItWorksStepImageSchema = exports.HowItWorksStepSchema = exports.HowItWorksBlockContentSchema = exports.ExampleTextBlockContentSchema = exports.SEO_BLOCK_CONTENT_SCHEMAS = void 0;
|
|
4
4
|
exports.getSeoBlockContentSchema = getSeoBlockContentSchema;
|
|
5
5
|
exports.getRegisteredSeoBlockTypes = getRegisteredSeoBlockTypes;
|
|
6
6
|
const example_text_block_1 = require("./example-text.block");
|
|
@@ -46,6 +46,7 @@ Object.defineProperty(exports, "TextDiffSegmentSchema", { enumerable: true, get:
|
|
|
46
46
|
var before_after_slider_block_2 = require("./before-after-slider.block");
|
|
47
47
|
Object.defineProperty(exports, "BeforeAfterSliderBlockContentSchema", { enumerable: true, get: function () { return before_after_slider_block_2.BeforeAfterSliderBlockContentSchema; } });
|
|
48
48
|
Object.defineProperty(exports, "BeforeAfterExampleSchema", { enumerable: true, get: function () { return before_after_slider_block_2.BeforeAfterExampleSchema; } });
|
|
49
|
+
Object.defineProperty(exports, "BeforeAfterPairSchema", { enumerable: true, get: function () { return before_after_slider_block_2.BeforeAfterPairSchema; } });
|
|
49
50
|
var generation_examples_block_2 = require("./generation-examples.block");
|
|
50
51
|
Object.defineProperty(exports, "GenerationExamplesBlockContentSchema", { enumerable: true, get: function () { return generation_examples_block_2.GenerationExamplesBlockContentSchema; } });
|
|
51
52
|
Object.defineProperty(exports, "GenerationExampleSchema", { enumerable: true, get: function () { return generation_examples_block_2.GenerationExampleSchema; } });
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../v1/seo-blocks/content-schemas/index.ts"],"names":[],"mappings":";;;AA4CA,4DAEC;AAGD,gEAEC;AAlDD,6DAAqE;AACrE,6DAAoE;AACpE,uDAA+D;AAC/D,2EAAkF;AAClF,2EAAmF;AACnF,iEAAyE;AACzE,uDAA+D;AAC/D,+DAAuE;AACvE,qDAA6D;AAC7D,+EAGuC;AACvC,iEAAyE;AAU5D,QAAA,yBAAyB,GAA8B;IAChE,YAAY,EAAE,kDAA6B;IAC3C,YAAY,EAAE,iDAA4B;IAC1C,SAAS,EAAE,4CAA0B;IACrC,mBAAmB,EAAE,+DAAmC;IACxD,mBAAmB,EAAE,gEAAoC;IACzD,cAAc,EAAE,sDAA+B;IAC/C,SAAS,EAAE,4CAA0B;IACrC,aAAa,EAAE,oDAA8B;IAC7C,QAAQ,EAAE,0CAAyB;IAEnC,GAAG,MAAM,CAAC,WAAW,CACjB,wDAA0B,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE,6DAA+B,CAAC,CAAC,CACpF;IAGD,cAAc,EAAE,sDAA+B;CAClD,CAAC;AAGF,SAAgB,wBAAwB,CAAC,IAAY;IACjD,OAAO,iCAAyB,CAAC,IAAI,CAAC,CAAC;AAC3C,CAAC;AAGD,SAAgB,0BAA0B;IACtC,OAAO,MAAM,CAAC,IAAI,CAAC,iCAAyB,CAAC,CAAC;AAClD,CAAC;AAED,2DAAmG;AAA1F,mIAAA,6BAA6B,OAAA;AACtC,2DAO8B;AAN1B,kIAAA,4BAA4B,OAAA;AAC5B,0HAAA,oBAAoB,OAAA;AACpB,+HAAA,yBAAyB,OAAA;AAK7B,qDAO2B;AANvB,6HAAA,0BAA0B,OAAA;AAC1B,oHAAA,iBAAiB,OAAA;AACjB,wHAAA,qBAAqB,OAAA;AAKzB,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../v1/seo-blocks/content-schemas/index.ts"],"names":[],"mappings":";;;AA4CA,4DAEC;AAGD,gEAEC;AAlDD,6DAAqE;AACrE,6DAAoE;AACpE,uDAA+D;AAC/D,2EAAkF;AAClF,2EAAmF;AACnF,iEAAyE;AACzE,uDAA+D;AAC/D,+DAAuE;AACvE,qDAA6D;AAC7D,+EAGuC;AACvC,iEAAyE;AAU5D,QAAA,yBAAyB,GAA8B;IAChE,YAAY,EAAE,kDAA6B;IAC3C,YAAY,EAAE,iDAA4B;IAC1C,SAAS,EAAE,4CAA0B;IACrC,mBAAmB,EAAE,+DAAmC;IACxD,mBAAmB,EAAE,gEAAoC;IACzD,cAAc,EAAE,sDAA+B;IAC/C,SAAS,EAAE,4CAA0B;IACrC,aAAa,EAAE,oDAA8B;IAC7C,QAAQ,EAAE,0CAAyB;IAEnC,GAAG,MAAM,CAAC,WAAW,CACjB,wDAA0B,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE,6DAA+B,CAAC,CAAC,CACpF;IAGD,cAAc,EAAE,sDAA+B;CAClD,CAAC;AAGF,SAAgB,wBAAwB,CAAC,IAAY;IACjD,OAAO,iCAAyB,CAAC,IAAI,CAAC,CAAC;AAC3C,CAAC;AAGD,SAAgB,0BAA0B;IACtC,OAAO,MAAM,CAAC,IAAI,CAAC,iCAAyB,CAAC,CAAC;AAClD,CAAC;AAED,2DAAmG;AAA1F,mIAAA,6BAA6B,OAAA;AACtC,2DAO8B;AAN1B,kIAAA,4BAA4B,OAAA;AAC5B,0HAAA,oBAAoB,OAAA;AACpB,+HAAA,yBAAyB,OAAA;AAK7B,qDAO2B;AANvB,6HAAA,0BAA0B,OAAA;AAC1B,oHAAA,iBAAiB,OAAA;AACjB,wHAAA,qBAAqB,OAAA;AAKzB,yEAOqC;AANjC,gJAAA,mCAAmC,OAAA;AACnC,qIAAA,wBAAwB,OAAA;AACxB,kIAAA,qBAAqB,OAAA;AAKzB,yEAKqC;AAJjC,iJAAA,oCAAoC,OAAA;AACpC,oIAAA,uBAAuB,OAAA;AAI3B,+DAKgC;AAJ5B,uIAAA,+BAA+B,OAAA;AAC/B,0HAAA,kBAAkB,OAAA;AAItB,qDAK2B;AAJvB,6HAAA,0BAA0B,OAAA;AAC1B,oHAAA,iBAAiB,OAAA;AAIrB,6DAK+B;AAJ3B,qIAAA,8BAA8B,OAAA;AAC9B,wHAAA,iBAAiB,OAAA;AAIrB,mDAAuF;AAA9E,2HAAA,yBAAyB,OAAA;AAClC,6EAKuC;AAJnC,yIAAA,0BAA0B,OAAA;AAC1B,8IAAA,+BAA+B,OAAA;AAInC,+DAKgC;AAJ5B,+HAAA,uBAAuB,OAAA;AACvB,uIAAA,+BAA+B,OAAA"}
|