@quizbase/client 0.1.0 → 0.2.3
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/index.d.cts +4 -6
- package/dist/index.d.ts +4 -6
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -245,7 +245,7 @@ interface paths {
|
|
|
245
245
|
};
|
|
246
246
|
/**
|
|
247
247
|
* List curated topics
|
|
248
|
-
* @description 2,184 curated topics with aliases and counts. Public,
|
|
248
|
+
* @description 2,184 curated topics with aliases and counts. Public, no API key required.
|
|
249
249
|
*/
|
|
250
250
|
get: {
|
|
251
251
|
parameters: {
|
|
@@ -1123,9 +1123,9 @@ interface components {
|
|
|
1123
1123
|
/** @example pl */
|
|
1124
1124
|
language: string;
|
|
1125
1125
|
category: components["schemas"]["CategoryRef"];
|
|
1126
|
-
/** @description
|
|
1126
|
+
/** @description Localized `{slug, label}` per `?lang=`. */
|
|
1127
1127
|
subcategories: components["schemas"]["SlugLabel"][];
|
|
1128
|
-
/** @description
|
|
1128
|
+
/** @description Localized `{slug, label}` per `?lang=`. */
|
|
1129
1129
|
tags: components["schemas"]["SlugLabel"][];
|
|
1130
1130
|
/**
|
|
1131
1131
|
* @example [
|
|
@@ -1151,7 +1151,7 @@ interface components {
|
|
|
1151
1151
|
translator: "machine" | "human" | "native" | null;
|
|
1152
1152
|
/** @description Optional explanation of the correct answer. */
|
|
1153
1153
|
explanation: string | null;
|
|
1154
|
-
/** @description
|
|
1154
|
+
/** @description Forward-compatible container for stable per-source extras. Today exposes `subcategories: string[]` (also surfaced as the typed top-level `subcategories` field). Future stable fields land here additively. */
|
|
1155
1155
|
extensions: {
|
|
1156
1156
|
[key: string]: unknown;
|
|
1157
1157
|
};
|
|
@@ -1379,8 +1379,6 @@ interface components {
|
|
|
1379
1379
|
aliases: string[];
|
|
1380
1380
|
/** @example 64977 */
|
|
1381
1381
|
count: number;
|
|
1382
|
-
/** @example null */
|
|
1383
|
-
description: string | null;
|
|
1384
1382
|
};
|
|
1385
1383
|
MetaTopicsList: {
|
|
1386
1384
|
/** @example 100 */
|
package/dist/index.d.ts
CHANGED
|
@@ -245,7 +245,7 @@ interface paths {
|
|
|
245
245
|
};
|
|
246
246
|
/**
|
|
247
247
|
* List curated topics
|
|
248
|
-
* @description 2,184 curated topics with aliases and counts. Public,
|
|
248
|
+
* @description 2,184 curated topics with aliases and counts. Public, no API key required.
|
|
249
249
|
*/
|
|
250
250
|
get: {
|
|
251
251
|
parameters: {
|
|
@@ -1123,9 +1123,9 @@ interface components {
|
|
|
1123
1123
|
/** @example pl */
|
|
1124
1124
|
language: string;
|
|
1125
1125
|
category: components["schemas"]["CategoryRef"];
|
|
1126
|
-
/** @description
|
|
1126
|
+
/** @description Localized `{slug, label}` per `?lang=`. */
|
|
1127
1127
|
subcategories: components["schemas"]["SlugLabel"][];
|
|
1128
|
-
/** @description
|
|
1128
|
+
/** @description Localized `{slug, label}` per `?lang=`. */
|
|
1129
1129
|
tags: components["schemas"]["SlugLabel"][];
|
|
1130
1130
|
/**
|
|
1131
1131
|
* @example [
|
|
@@ -1151,7 +1151,7 @@ interface components {
|
|
|
1151
1151
|
translator: "machine" | "human" | "native" | null;
|
|
1152
1152
|
/** @description Optional explanation of the correct answer. */
|
|
1153
1153
|
explanation: string | null;
|
|
1154
|
-
/** @description
|
|
1154
|
+
/** @description Forward-compatible container for stable per-source extras. Today exposes `subcategories: string[]` (also surfaced as the typed top-level `subcategories` field). Future stable fields land here additively. */
|
|
1155
1155
|
extensions: {
|
|
1156
1156
|
[key: string]: unknown;
|
|
1157
1157
|
};
|
|
@@ -1379,8 +1379,6 @@ interface components {
|
|
|
1379
1379
|
aliases: string[];
|
|
1380
1380
|
/** @example 64977 */
|
|
1381
1381
|
count: number;
|
|
1382
|
-
/** @example null */
|
|
1383
|
-
description: string | null;
|
|
1384
1382
|
};
|
|
1385
1383
|
MetaTopicsList: {
|
|
1386
1384
|
/** @example 100 */
|
package/package.json
CHANGED