@jh-tech/be-content-shared 0.0.36 → 0.0.38

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.
@@ -36,6 +36,7 @@ export declare const projectCreatorRelation: z.ZodObject<{
36
36
  }, z.core.$strip>;
37
37
  export type ProjectCreatorRelation = z.infer<typeof projectCreatorRelation>;
38
38
  export declare const projectCreationData: z.ZodObject<{
39
+ title: z.ZodString;
39
40
  type: z.ZodEnum<{
40
41
  film: "film";
41
42
  video_game: "video_game";
@@ -44,8 +45,62 @@ export declare const projectCreationData: z.ZodObject<{
44
45
  comic: "comic";
45
46
  book: "book";
46
47
  }>;
47
- title: z.ZodString;
48
48
  description: z.ZodOptional<z.ZodString>;
49
+ releaseDate: z.ZodOptional<z.ZodString>;
50
+ originalLanguage: z.ZodOptional<z.ZodEnum<{
51
+ id: "id";
52
+ af: "af";
53
+ am: "am";
54
+ ar: "ar";
55
+ bg: "bg";
56
+ bn: "bn";
57
+ ca: "ca";
58
+ cs: "cs";
59
+ cy: "cy";
60
+ da: "da";
61
+ de: "de";
62
+ el: "el";
63
+ en: "en";
64
+ eo: "eo";
65
+ es: "es";
66
+ fa: "fa";
67
+ fi: "fi";
68
+ fr: "fr";
69
+ ga: "ga";
70
+ he: "he";
71
+ hi: "hi";
72
+ hr: "hr";
73
+ hu: "hu";
74
+ is: "is";
75
+ it: "it";
76
+ ja: "ja";
77
+ ko: "ko";
78
+ la: "la";
79
+ lb: "lb";
80
+ mk: "mk";
81
+ mr: "mr";
82
+ ms: "ms";
83
+ mt: "mt";
84
+ nl: "nl";
85
+ no: "no";
86
+ pl: "pl";
87
+ pt: "pt";
88
+ ro: "ro";
89
+ ru: "ru";
90
+ sk: "sk";
91
+ sr: "sr";
92
+ sv: "sv";
93
+ sw: "sw";
94
+ ta: "ta";
95
+ te: "te";
96
+ th: "th";
97
+ tl: "tl";
98
+ tr: "tr";
99
+ uk: "uk";
100
+ ur: "ur";
101
+ vi: "vi";
102
+ zh: "zh";
103
+ }>>;
49
104
  originCountry: z.ZodOptional<z.ZodEnum<{
50
105
  AF: "AF";
51
106
  AX: "AX";
@@ -297,60 +352,5 @@ export declare const projectCreationData: z.ZodObject<{
297
352
  ZM: "ZM";
298
353
  ZW: "ZW";
299
354
  }>>;
300
- releaseDate: z.ZodOptional<z.ZodString>;
301
- originalLanguage: z.ZodOptional<z.ZodEnum<{
302
- id: "id";
303
- af: "af";
304
- am: "am";
305
- ar: "ar";
306
- bg: "bg";
307
- bn: "bn";
308
- ca: "ca";
309
- cs: "cs";
310
- cy: "cy";
311
- da: "da";
312
- de: "de";
313
- el: "el";
314
- en: "en";
315
- eo: "eo";
316
- es: "es";
317
- fa: "fa";
318
- fi: "fi";
319
- fr: "fr";
320
- ga: "ga";
321
- he: "he";
322
- hi: "hi";
323
- hr: "hr";
324
- hu: "hu";
325
- is: "is";
326
- it: "it";
327
- ja: "ja";
328
- ko: "ko";
329
- la: "la";
330
- lb: "lb";
331
- mk: "mk";
332
- mr: "mr";
333
- ms: "ms";
334
- mt: "mt";
335
- nl: "nl";
336
- no: "no";
337
- pl: "pl";
338
- pt: "pt";
339
- ro: "ro";
340
- ru: "ru";
341
- sk: "sk";
342
- sr: "sr";
343
- sv: "sv";
344
- sw: "sw";
345
- ta: "ta";
346
- te: "te";
347
- th: "th";
348
- tl: "tl";
349
- tr: "tr";
350
- uk: "uk";
351
- ur: "ur";
352
- vi: "vi";
353
- zh: "zh";
354
- }>>;
355
355
  }, z.core.$strip>;
356
356
  export type ProjectCreationData = z.infer<typeof projectCreationData>;
@@ -0,0 +1,37 @@
1
+ import { type z } from 'zod';
2
+ export declare const projectCreatorCreationData: z.ZodObject<{
3
+ name: z.ZodString;
4
+ role: z.ZodUnion<readonly [z.ZodEnum<{
5
+ "film-director": "film-director";
6
+ "film-producer": "film-producer";
7
+ "film-writer": "film-writer";
8
+ "film-actor": "film-actor";
9
+ "film-studio": "film-studio";
10
+ "film-publisher": "film-publisher";
11
+ }>, z.ZodEnum<{
12
+ "video_game-studio": "video_game-studio";
13
+ "video_game-publisher": "video_game-publisher";
14
+ "video_game-developer": "video_game-developer";
15
+ }>, z.ZodEnum<{
16
+ "music-artist": "music-artist";
17
+ "music-producer": "music-producer";
18
+ "music-label": "music-label";
19
+ "music-band": "music-band";
20
+ }>, z.ZodEnum<{
21
+ "tv-director": "tv-director";
22
+ "tv-producer": "tv-producer";
23
+ "tv-writer": "tv-writer";
24
+ "tv-actor": "tv-actor";
25
+ "tv-studio": "tv-studio";
26
+ "tv-network": "tv-network";
27
+ }>, z.ZodEnum<{
28
+ "comic-artist": "comic-artist";
29
+ "comic-writer": "comic-writer";
30
+ "comic-publisher": "comic-publisher";
31
+ }>, z.ZodEnum<{
32
+ "book-author": "book-author";
33
+ "book-publisher": "book-publisher";
34
+ }>]>;
35
+ primary: z.ZodBoolean;
36
+ }, z.core.$strip>;
37
+ export type ProjectCreatorCreationData = z.infer<typeof projectCreatorCreationData>;
@@ -0,0 +1,5 @@
1
+ import { projectCreator } from '@jackhayes/util-types';
2
+ import {} from 'zod';
3
+ export const projectCreatorCreationData = projectCreator.omit({
4
+ id: true,
5
+ });
package/dist/index.d.ts CHANGED
@@ -14,6 +14,7 @@ export * as GetProjectDef from './route-definitions/project/project.get.js';
14
14
  export * as UpdateProjectDef from './route-definitions/project/project.update.js';
15
15
  export * as BulkCreateProjectsDef from './route-definitions/project/projects.bulkCreate.js';
16
16
  export * as ListProjectsDef from './route-definitions/project/projects.list.js';
17
+ export * as CreateCreatorProjectRelationDef from './route-definitions/creator-project-relation/creatorProjectRelation.create.js';
17
18
  export * as ListProjectCreatorsDef from './route-definitions/project-creator/projectCreators.list.js';
18
19
  export * as CreateUpdateDef from './route-definitions/update/update.create.js';
19
20
  export * as BulkCreateUpdatesDef from './route-definitions/update/updates.bulkCreate.js';
package/dist/index.js CHANGED
@@ -14,6 +14,7 @@ export * as GetProjectDef from './route-definitions/project/project.get.js';
14
14
  export * as UpdateProjectDef from './route-definitions/project/project.update.js';
15
15
  export * as BulkCreateProjectsDef from './route-definitions/project/projects.bulkCreate.js';
16
16
  export * as ListProjectsDef from './route-definitions/project/projects.list.js';
17
+ export * as CreateCreatorProjectRelationDef from './route-definitions/creator-project-relation/creatorProjectRelation.create.js';
17
18
  export * as ListProjectCreatorsDef from './route-definitions/project-creator/projectCreators.list.js';
18
19
  export * as CreateUpdateDef from './route-definitions/update/update.create.js';
19
20
  export * as BulkCreateUpdatesDef from './route-definitions/update/updates.bulkCreate.js';
@@ -0,0 +1,85 @@
1
+ import type { RouteDef, RouteSchema } from '@jh-tech/util-tools-be';
2
+ import { z } from 'zod';
3
+ declare const request: z.ZodObject<{
4
+ body: z.ZodObject<{
5
+ data: z.ZodObject<{
6
+ creatorId: z.ZodUUID;
7
+ projectId: z.ZodUUID;
8
+ primary: z.ZodBoolean;
9
+ role: z.ZodUnion<readonly [z.ZodEnum<{
10
+ "film-director": "film-director";
11
+ "film-producer": "film-producer";
12
+ "film-writer": "film-writer";
13
+ "film-actor": "film-actor";
14
+ "film-studio": "film-studio";
15
+ "film-publisher": "film-publisher";
16
+ }>, z.ZodEnum<{
17
+ "video_game-studio": "video_game-studio";
18
+ "video_game-publisher": "video_game-publisher";
19
+ "video_game-developer": "video_game-developer";
20
+ }>, z.ZodEnum<{
21
+ "music-artist": "music-artist";
22
+ "music-producer": "music-producer";
23
+ "music-label": "music-label";
24
+ "music-band": "music-band";
25
+ }>, z.ZodEnum<{
26
+ "tv-director": "tv-director";
27
+ "tv-producer": "tv-producer";
28
+ "tv-writer": "tv-writer";
29
+ "tv-actor": "tv-actor";
30
+ "tv-studio": "tv-studio";
31
+ "tv-network": "tv-network";
32
+ }>, z.ZodEnum<{
33
+ "comic-artist": "comic-artist";
34
+ "comic-writer": "comic-writer";
35
+ "comic-publisher": "comic-publisher";
36
+ }>, z.ZodEnum<{
37
+ "book-author": "book-author";
38
+ "book-publisher": "book-publisher";
39
+ }>]>;
40
+ }, z.core.$strip>;
41
+ }, z.core.$strip>;
42
+ }, z.core.$strip>;
43
+ declare const response: z.ZodObject<{
44
+ data: z.ZodObject<{
45
+ creatorId: z.ZodUUID;
46
+ projectId: z.ZodUUID;
47
+ primary: z.ZodBoolean;
48
+ role: z.ZodUnion<readonly [z.ZodEnum<{
49
+ "film-director": "film-director";
50
+ "film-producer": "film-producer";
51
+ "film-writer": "film-writer";
52
+ "film-actor": "film-actor";
53
+ "film-studio": "film-studio";
54
+ "film-publisher": "film-publisher";
55
+ }>, z.ZodEnum<{
56
+ "video_game-studio": "video_game-studio";
57
+ "video_game-publisher": "video_game-publisher";
58
+ "video_game-developer": "video_game-developer";
59
+ }>, z.ZodEnum<{
60
+ "music-artist": "music-artist";
61
+ "music-producer": "music-producer";
62
+ "music-label": "music-label";
63
+ "music-band": "music-band";
64
+ }>, z.ZodEnum<{
65
+ "tv-director": "tv-director";
66
+ "tv-producer": "tv-producer";
67
+ "tv-writer": "tv-writer";
68
+ "tv-actor": "tv-actor";
69
+ "tv-studio": "tv-studio";
70
+ "tv-network": "tv-network";
71
+ }>, z.ZodEnum<{
72
+ "comic-artist": "comic-artist";
73
+ "comic-writer": "comic-writer";
74
+ "comic-publisher": "comic-publisher";
75
+ }>, z.ZodEnum<{
76
+ "book-author": "book-author";
77
+ "book-publisher": "book-publisher";
78
+ }>]>;
79
+ }, z.core.$strip>;
80
+ }, z.core.$strip>;
81
+ export declare const routeSchema: RouteSchema;
82
+ export type Request = z.infer<typeof request>;
83
+ export type Response = z.infer<typeof response>;
84
+ export declare const definition: RouteDef;
85
+ export {};
@@ -0,0 +1,17 @@
1
+ import { creatorProjectRelation } from '@jackhayes/util-types';
2
+ import { z } from 'zod';
3
+ const request = z.object({
4
+ body: z.object({
5
+ data: creatorProjectRelation,
6
+ }),
7
+ });
8
+ const response = z.object({
9
+ data: creatorProjectRelation,
10
+ });
11
+ export const routeSchema = {
12
+ request,
13
+ response,
14
+ };
15
+ const method = 'post';
16
+ const path = '/creator-project-relation';
17
+ export const definition = { method, path, routeSchema };
@@ -0,0 +1,85 @@
1
+ import type { RouteDef, RouteSchema } from '@jh-tech/util-tools-be';
2
+ import { z } from 'zod';
3
+ declare const request: z.ZodObject<{
4
+ body: z.ZodObject<{
5
+ data: z.ZodObject<{
6
+ creatorId: z.ZodUUID;
7
+ projectId: z.ZodUUID;
8
+ primary: z.ZodBoolean;
9
+ role: z.ZodUnion<readonly [z.ZodEnum<{
10
+ "film-director": "film-director";
11
+ "film-producer": "film-producer";
12
+ "film-writer": "film-writer";
13
+ "film-actor": "film-actor";
14
+ "film-studio": "film-studio";
15
+ "film-publisher": "film-publisher";
16
+ }>, z.ZodEnum<{
17
+ "video_game-studio": "video_game-studio";
18
+ "video_game-publisher": "video_game-publisher";
19
+ "video_game-developer": "video_game-developer";
20
+ }>, z.ZodEnum<{
21
+ "music-artist": "music-artist";
22
+ "music-producer": "music-producer";
23
+ "music-label": "music-label";
24
+ "music-band": "music-band";
25
+ }>, z.ZodEnum<{
26
+ "tv-director": "tv-director";
27
+ "tv-producer": "tv-producer";
28
+ "tv-writer": "tv-writer";
29
+ "tv-actor": "tv-actor";
30
+ "tv-studio": "tv-studio";
31
+ "tv-network": "tv-network";
32
+ }>, z.ZodEnum<{
33
+ "comic-artist": "comic-artist";
34
+ "comic-writer": "comic-writer";
35
+ "comic-publisher": "comic-publisher";
36
+ }>, z.ZodEnum<{
37
+ "book-author": "book-author";
38
+ "book-publisher": "book-publisher";
39
+ }>]>;
40
+ }, z.core.$strip>;
41
+ }, z.core.$strip>;
42
+ }, z.core.$strip>;
43
+ declare const response: z.ZodObject<{
44
+ data: z.ZodObject<{
45
+ creatorId: z.ZodUUID;
46
+ projectId: z.ZodUUID;
47
+ primary: z.ZodBoolean;
48
+ role: z.ZodUnion<readonly [z.ZodEnum<{
49
+ "film-director": "film-director";
50
+ "film-producer": "film-producer";
51
+ "film-writer": "film-writer";
52
+ "film-actor": "film-actor";
53
+ "film-studio": "film-studio";
54
+ "film-publisher": "film-publisher";
55
+ }>, z.ZodEnum<{
56
+ "video_game-studio": "video_game-studio";
57
+ "video_game-publisher": "video_game-publisher";
58
+ "video_game-developer": "video_game-developer";
59
+ }>, z.ZodEnum<{
60
+ "music-artist": "music-artist";
61
+ "music-producer": "music-producer";
62
+ "music-label": "music-label";
63
+ "music-band": "music-band";
64
+ }>, z.ZodEnum<{
65
+ "tv-director": "tv-director";
66
+ "tv-producer": "tv-producer";
67
+ "tv-writer": "tv-writer";
68
+ "tv-actor": "tv-actor";
69
+ "tv-studio": "tv-studio";
70
+ "tv-network": "tv-network";
71
+ }>, z.ZodEnum<{
72
+ "comic-artist": "comic-artist";
73
+ "comic-writer": "comic-writer";
74
+ "comic-publisher": "comic-publisher";
75
+ }>, z.ZodEnum<{
76
+ "book-author": "book-author";
77
+ "book-publisher": "book-publisher";
78
+ }>]>;
79
+ }, z.core.$strip>;
80
+ }, z.core.$strip>;
81
+ export declare const routeSchema: RouteSchema;
82
+ export type Request = z.infer<typeof request>;
83
+ export type Response = z.infer<typeof response>;
84
+ export declare const definition: RouteDef;
85
+ export {};
@@ -0,0 +1,17 @@
1
+ import { creatorProjectRelation } from '@jackhayes/util-types';
2
+ import { z } from 'zod';
3
+ const request = z.object({
4
+ body: z.object({
5
+ data: creatorProjectRelation,
6
+ }),
7
+ });
8
+ const response = z.object({
9
+ data: creatorProjectRelation,
10
+ });
11
+ export const routeSchema = {
12
+ request,
13
+ response,
14
+ };
15
+ const method = 'post';
16
+ const path = '/project-creator-relation';
17
+ export const definition = { method, path, routeSchema };
@@ -0,0 +1,85 @@
1
+ import type { RouteDef, RouteSchema } from '@jh-tech/util-tools-be';
2
+ import { z } from 'zod';
3
+ declare const request: z.ZodObject<{
4
+ body: z.ZodObject<{
5
+ data: z.ZodObject<{
6
+ creatorId: z.ZodUUID;
7
+ projectId: z.ZodUUID;
8
+ primary: z.ZodBoolean;
9
+ role: z.ZodUnion<readonly [z.ZodEnum<{
10
+ "film-director": "film-director";
11
+ "film-producer": "film-producer";
12
+ "film-writer": "film-writer";
13
+ "film-actor": "film-actor";
14
+ "film-studio": "film-studio";
15
+ "film-publisher": "film-publisher";
16
+ }>, z.ZodEnum<{
17
+ "video_game-studio": "video_game-studio";
18
+ "video_game-publisher": "video_game-publisher";
19
+ "video_game-developer": "video_game-developer";
20
+ }>, z.ZodEnum<{
21
+ "music-artist": "music-artist";
22
+ "music-producer": "music-producer";
23
+ "music-label": "music-label";
24
+ "music-band": "music-band";
25
+ }>, z.ZodEnum<{
26
+ "tv-director": "tv-director";
27
+ "tv-producer": "tv-producer";
28
+ "tv-writer": "tv-writer";
29
+ "tv-actor": "tv-actor";
30
+ "tv-studio": "tv-studio";
31
+ "tv-network": "tv-network";
32
+ }>, z.ZodEnum<{
33
+ "comic-artist": "comic-artist";
34
+ "comic-writer": "comic-writer";
35
+ "comic-publisher": "comic-publisher";
36
+ }>, z.ZodEnum<{
37
+ "book-author": "book-author";
38
+ "book-publisher": "book-publisher";
39
+ }>]>;
40
+ }, z.core.$strip>;
41
+ }, z.core.$strip>;
42
+ }, z.core.$strip>;
43
+ declare const response: z.ZodObject<{
44
+ data: z.ZodObject<{
45
+ creatorId: z.ZodUUID;
46
+ projectId: z.ZodUUID;
47
+ primary: z.ZodBoolean;
48
+ role: z.ZodUnion<readonly [z.ZodEnum<{
49
+ "film-director": "film-director";
50
+ "film-producer": "film-producer";
51
+ "film-writer": "film-writer";
52
+ "film-actor": "film-actor";
53
+ "film-studio": "film-studio";
54
+ "film-publisher": "film-publisher";
55
+ }>, z.ZodEnum<{
56
+ "video_game-studio": "video_game-studio";
57
+ "video_game-publisher": "video_game-publisher";
58
+ "video_game-developer": "video_game-developer";
59
+ }>, z.ZodEnum<{
60
+ "music-artist": "music-artist";
61
+ "music-producer": "music-producer";
62
+ "music-label": "music-label";
63
+ "music-band": "music-band";
64
+ }>, z.ZodEnum<{
65
+ "tv-director": "tv-director";
66
+ "tv-producer": "tv-producer";
67
+ "tv-writer": "tv-writer";
68
+ "tv-actor": "tv-actor";
69
+ "tv-studio": "tv-studio";
70
+ "tv-network": "tv-network";
71
+ }>, z.ZodEnum<{
72
+ "comic-artist": "comic-artist";
73
+ "comic-writer": "comic-writer";
74
+ "comic-publisher": "comic-publisher";
75
+ }>, z.ZodEnum<{
76
+ "book-author": "book-author";
77
+ "book-publisher": "book-publisher";
78
+ }>]>;
79
+ }, z.core.$strip>;
80
+ }, z.core.$strip>;
81
+ export declare const routeSchema: RouteSchema;
82
+ export type Request = z.infer<typeof request>;
83
+ export type Response = z.infer<typeof response>;
84
+ export declare const definition: RouteDef;
85
+ export {};
@@ -0,0 +1,17 @@
1
+ import { creatorProjectRelation } from '@jackhayes/util-types';
2
+ import { z } from 'zod';
3
+ const request = z.object({
4
+ body: z.object({
5
+ data: creatorProjectRelation,
6
+ }),
7
+ });
8
+ const response = z.object({
9
+ data: creatorProjectRelation,
10
+ });
11
+ export const routeSchema = {
12
+ request,
13
+ response,
14
+ };
15
+ const method = 'post';
16
+ const path = '/project-creator-relation';
17
+ export const definition = { method, path, routeSchema };
@@ -3,6 +3,7 @@ import { z } from 'zod';
3
3
  declare const request: z.ZodObject<{
4
4
  body: z.ZodObject<{
5
5
  data: z.ZodObject<{
6
+ title: z.ZodString;
6
7
  type: z.ZodEnum<{
7
8
  film: "film";
8
9
  video_game: "video_game";
@@ -11,8 +12,62 @@ declare const request: z.ZodObject<{
11
12
  comic: "comic";
12
13
  book: "book";
13
14
  }>;
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
+ }>>;
16
71
  originCountry: z.ZodOptional<z.ZodEnum<{
17
72
  AF: "AF";
18
73
  AX: "AX";
@@ -264,61 +319,6 @@ declare const request: z.ZodObject<{
264
319
  ZM: "ZM";
265
320
  ZW: "ZW";
266
321
  }>>;
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>;