@ndla/types-taxonomy 1.0.44 → 1.0.45

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.
@@ -2198,6 +2198,9 @@ export type components = {
2198
2198
  /** Format: int32 */
2199
2199
  count: number;
2200
2200
  };
2201
+ LanguageFieldString: {
2202
+ [key: string]: string;
2203
+ };
2201
2204
  Metadata: {
2202
2205
  customFields: {
2203
2206
  [key: string]: string;
@@ -3170,9 +3173,7 @@ export type components = {
3170
3173
  */
3171
3174
  rank: number;
3172
3175
  /** @description Name of the relevance of the parent connection */
3173
- relevance: {
3174
- [key: string]: string;
3175
- };
3176
+ relevance: components["schemas"]["LanguageFieldString"];
3176
3177
  /**
3177
3178
  * Format: uri
3178
3179
  * @description Id of the relevance of the parent connection
@@ -3201,9 +3202,7 @@ export type components = {
3201
3202
  */
3202
3203
  id: string;
3203
3204
  /** @description The name of the node */
3204
- name: {
3205
- [key: string]: string;
3206
- };
3205
+ name: components["schemas"]["LanguageFieldString"];
3207
3206
  /** @description The context path */
3208
3207
  path: string;
3209
3208
  /** @description The context url */
@@ -6,6 +6,7 @@ export type Context = schemas["Context"];
6
6
  export type ContextPOST = schemas["ContextPOST"];
7
7
  export type Grade = schemas["Grade"];
8
8
  export type GradeAverage = schemas["GradeAverage"];
9
+ export type LanguageFieldString = schemas["LanguageFieldString"];
9
10
  export type Metadata = schemas["Metadata"];
10
11
  export type MetadataPUT = schemas["MetadataPUT"];
11
12
  export type Node = schemas["Node"];