@jh-tech/be-content-shared 0.0.37 → 0.0.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.
- package/dist/definitions/project.zod.d.ts +56 -56
- package/dist/index.d.ts +2 -1
- package/dist/index.js +2 -1
- package/dist/route-definitions/creator/creator.update.d.ts +91 -0
- package/dist/route-definitions/creator/creator.update.js +21 -0
- package/dist/route-definitions/creator-project-relation/creatorProjectRelation.create.d.ts +85 -0
- package/dist/route-definitions/creator-project-relation/creatorProjectRelation.create.js +17 -0
- package/dist/route-definitions/project/project.create.d.ts +56 -56
- package/dist/route-definitions/project/project.update.d.ts +56 -56
- package/dist/route-definitions/project/projects.bulkCreate.d.ts +56 -56
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -3,7 +3,6 @@ import { z } from 'zod';
|
|
|
3
3
|
declare const request: z.ZodObject<{
|
|
4
4
|
body: z.ZodObject<{
|
|
5
5
|
data: z.ZodArray<z.ZodObject<{
|
|
6
|
-
title: z.ZodString;
|
|
7
6
|
type: z.ZodEnum<{
|
|
8
7
|
film: "film";
|
|
9
8
|
video_game: "video_game";
|
|
@@ -12,62 +11,8 @@ declare const request: z.ZodObject<{
|
|
|
12
11
|
comic: "comic";
|
|
13
12
|
book: "book";
|
|
14
13
|
}>;
|
|
14
|
+
title: z.ZodString;
|
|
15
15
|
description: z.ZodOptional<z.ZodString>;
|
|
16
|
-
releaseDate: z.ZodOptional<z.ZodString>;
|
|
17
|
-
originalLanguage: z.ZodOptional<z.ZodEnum<{
|
|
18
|
-
id: "id";
|
|
19
|
-
af: "af";
|
|
20
|
-
am: "am";
|
|
21
|
-
ar: "ar";
|
|
22
|
-
bg: "bg";
|
|
23
|
-
bn: "bn";
|
|
24
|
-
ca: "ca";
|
|
25
|
-
cs: "cs";
|
|
26
|
-
cy: "cy";
|
|
27
|
-
da: "da";
|
|
28
|
-
de: "de";
|
|
29
|
-
el: "el";
|
|
30
|
-
en: "en";
|
|
31
|
-
eo: "eo";
|
|
32
|
-
es: "es";
|
|
33
|
-
fa: "fa";
|
|
34
|
-
fi: "fi";
|
|
35
|
-
fr: "fr";
|
|
36
|
-
ga: "ga";
|
|
37
|
-
he: "he";
|
|
38
|
-
hi: "hi";
|
|
39
|
-
hr: "hr";
|
|
40
|
-
hu: "hu";
|
|
41
|
-
is: "is";
|
|
42
|
-
it: "it";
|
|
43
|
-
ja: "ja";
|
|
44
|
-
ko: "ko";
|
|
45
|
-
la: "la";
|
|
46
|
-
lb: "lb";
|
|
47
|
-
mk: "mk";
|
|
48
|
-
mr: "mr";
|
|
49
|
-
ms: "ms";
|
|
50
|
-
mt: "mt";
|
|
51
|
-
nl: "nl";
|
|
52
|
-
no: "no";
|
|
53
|
-
pl: "pl";
|
|
54
|
-
pt: "pt";
|
|
55
|
-
ro: "ro";
|
|
56
|
-
ru: "ru";
|
|
57
|
-
sk: "sk";
|
|
58
|
-
sr: "sr";
|
|
59
|
-
sv: "sv";
|
|
60
|
-
sw: "sw";
|
|
61
|
-
ta: "ta";
|
|
62
|
-
te: "te";
|
|
63
|
-
th: "th";
|
|
64
|
-
tl: "tl";
|
|
65
|
-
tr: "tr";
|
|
66
|
-
uk: "uk";
|
|
67
|
-
ur: "ur";
|
|
68
|
-
vi: "vi";
|
|
69
|
-
zh: "zh";
|
|
70
|
-
}>>;
|
|
71
16
|
originCountry: z.ZodOptional<z.ZodEnum<{
|
|
72
17
|
AF: "AF";
|
|
73
18
|
AX: "AX";
|
|
@@ -319,6 +264,61 @@ declare const request: z.ZodObject<{
|
|
|
319
264
|
ZM: "ZM";
|
|
320
265
|
ZW: "ZW";
|
|
321
266
|
}>>;
|
|
267
|
+
releaseDate: z.ZodOptional<z.ZodString>;
|
|
268
|
+
originalLanguage: z.ZodOptional<z.ZodEnum<{
|
|
269
|
+
id: "id";
|
|
270
|
+
af: "af";
|
|
271
|
+
am: "am";
|
|
272
|
+
ar: "ar";
|
|
273
|
+
bg: "bg";
|
|
274
|
+
bn: "bn";
|
|
275
|
+
ca: "ca";
|
|
276
|
+
cs: "cs";
|
|
277
|
+
cy: "cy";
|
|
278
|
+
da: "da";
|
|
279
|
+
de: "de";
|
|
280
|
+
el: "el";
|
|
281
|
+
en: "en";
|
|
282
|
+
eo: "eo";
|
|
283
|
+
es: "es";
|
|
284
|
+
fa: "fa";
|
|
285
|
+
fi: "fi";
|
|
286
|
+
fr: "fr";
|
|
287
|
+
ga: "ga";
|
|
288
|
+
he: "he";
|
|
289
|
+
hi: "hi";
|
|
290
|
+
hr: "hr";
|
|
291
|
+
hu: "hu";
|
|
292
|
+
is: "is";
|
|
293
|
+
it: "it";
|
|
294
|
+
ja: "ja";
|
|
295
|
+
ko: "ko";
|
|
296
|
+
la: "la";
|
|
297
|
+
lb: "lb";
|
|
298
|
+
mk: "mk";
|
|
299
|
+
mr: "mr";
|
|
300
|
+
ms: "ms";
|
|
301
|
+
mt: "mt";
|
|
302
|
+
nl: "nl";
|
|
303
|
+
no: "no";
|
|
304
|
+
pl: "pl";
|
|
305
|
+
pt: "pt";
|
|
306
|
+
ro: "ro";
|
|
307
|
+
ru: "ru";
|
|
308
|
+
sk: "sk";
|
|
309
|
+
sr: "sr";
|
|
310
|
+
sv: "sv";
|
|
311
|
+
sw: "sw";
|
|
312
|
+
ta: "ta";
|
|
313
|
+
te: "te";
|
|
314
|
+
th: "th";
|
|
315
|
+
tl: "tl";
|
|
316
|
+
tr: "tr";
|
|
317
|
+
uk: "uk";
|
|
318
|
+
ur: "ur";
|
|
319
|
+
vi: "vi";
|
|
320
|
+
zh: "zh";
|
|
321
|
+
}>>;
|
|
322
322
|
}, z.core.$strip>>;
|
|
323
323
|
}, z.core.$strip>;
|
|
324
324
|
}, z.core.$strip>;
|