@segha/catalog 4.1.0 → 4.1.1

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/README.md CHANGED
@@ -27,12 +27,6 @@ const result = ArticleSchema.parse(data);
27
27
  type Article = z.infer<typeof ArticleSchema>;
28
28
  ```
29
29
 
30
- You can also import specific submodules:
31
-
32
- ```typescript
33
- import { MetaClothingSchema, CatalogClothingSchema, DetailedClothingSchema } from '@segha/catalog/en/clothing';
34
- ```
35
-
36
30
  ### Schemas
37
31
 
38
32
  - [Article](#article)
package/en/index.ts CHANGED
@@ -4,3 +4,5 @@ export * from './Clothing';
4
4
  export * from './Movie';
5
5
  export * from './Note';
6
6
  export * from './Wikipedia';
7
+
8
+ export * from './types';
package/es/index.ts CHANGED
@@ -6,3 +6,5 @@ export * from './Movie';
6
6
  export * from './Note';
7
7
  export * from './Painting';
8
8
  export * from './Video';
9
+
10
+ export * from './types';
package/index.ts CHANGED
@@ -1,4 +1,2 @@
1
1
 
2
2
  export * from './en';
3
-
4
- export * from './en/types';
package/package.json CHANGED
@@ -1,8 +1,11 @@
1
1
  {
2
2
  "name": "@segha/catalog",
3
- "version": "4.1.0",
3
+ "version": "4.1.1",
4
4
  "main": "index.ts",
5
5
  "description": "Schemas for Petroglyph Catalog",
6
+ "segha": {
7
+ "multiLanguage": true
8
+ },
6
9
  "keywords": [
7
10
  "schemas",
8
11
  "zod",
@@ -38,17 +41,19 @@
38
41
  "exports": {
39
42
  ".": "./index.ts",
40
43
  "./en": "./en/index.ts",
41
- "./en/clothing": "./en/Clothing/index.ts",
42
- "./en/clothing/types": "./en/Clothing/types.ts",
44
+ "./en/types": "./en/types.ts",
43
45
  "./en/json-schema": "./json-schemas/en/index.json",
44
46
  "./en/json-schemas/*": "./json-schemas/en/*.json",
47
+ "./en/clothing": "./en/Clothing/index.ts",
48
+ "./en/clothing/types": "./en/Clothing/types.ts",
45
49
  "./en/clothing/json-schema": "./json-schemas/en/Clothing/index.json",
46
50
  "./en/clothing/json-schemas/*": "./json-schemas/en/Clothing/*.json",
47
51
  "./es": "./es/index.ts",
48
- "./es/clothing": "./es/Clothing/index.ts",
49
- "./es/clothing/types": "./es/Clothing/types.ts",
52
+ "./es/types": "./es/types.ts",
50
53
  "./es/json-schema": "./json-schemas/es/index.json",
51
54
  "./es/json-schemas/*": "./json-schemas/es/*.json",
55
+ "./es/clothing": "./es/Clothing/index.ts",
56
+ "./es/clothing/types": "./es/Clothing/types.ts",
52
57
  "./es/clothing/json-schema": "./json-schemas/es/Clothing/index.json",
53
58
  "./es/clothing/json-schemas/*": "./json-schemas/es/Clothing/*.json",
54
59
  "./types": "./types.ts"