@ndla/types-taxonomy 1.0.44 → 1.0.46
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/taxonomy-api-openapi.d.ts +5 -6
- package/build/taxonomy-api.d.ts +1 -0
- package/openapi.json +1 -1
- package/package.json +1 -1
- package/taxonomy-api-openapi.ts +5 -6
- package/taxonomy-api.ts +1 -0
package/package.json
CHANGED
package/taxonomy-api-openapi.ts
CHANGED
|
@@ -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 */
|
package/taxonomy-api.ts
CHANGED
|
@@ -8,6 +8,7 @@ export type Context = schemas["Context"];
|
|
|
8
8
|
export type ContextPOST = schemas["ContextPOST"];
|
|
9
9
|
export type Grade = schemas["Grade"];
|
|
10
10
|
export type GradeAverage = schemas["GradeAverage"];
|
|
11
|
+
export type LanguageFieldString = schemas["LanguageFieldString"];
|
|
11
12
|
export type Metadata = schemas["Metadata"];
|
|
12
13
|
export type MetadataPUT = schemas["MetadataPUT"];
|
|
13
14
|
export type Node = schemas["Node"];
|