@brigadasos/nadeshiko-sdk 2.0.6-internal → 2.0.6-internal.e0449f8
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.cjs +11 -3
- package/dist/index.cjs.map +3 -3
- package/dist/index.js +11 -3
- package/dist/index.js.map +3 -3
- package/dist/sdk.gen.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -967,8 +967,16 @@ var searchWords = (options) => (options.client ?? client).post({
|
|
|
967
967
|
...options.headers
|
|
968
968
|
}
|
|
969
969
|
});
|
|
970
|
-
var getStatsOverview = (options) => (options?.client ?? client).get({
|
|
971
|
-
|
|
970
|
+
var getStatsOverview = (options) => (options?.client ?? client).get({
|
|
971
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
972
|
+
url: "/v1/stats/overview",
|
|
973
|
+
...options
|
|
974
|
+
});
|
|
975
|
+
var getCoveredWords = (options) => (options.client ?? client).get({
|
|
976
|
+
security: [{ scheme: "bearer", type: "http" }],
|
|
977
|
+
url: "/v1/stats/covered-words",
|
|
978
|
+
...options
|
|
979
|
+
});
|
|
972
980
|
var triggerCoveredWordsUpdate = (options) => (options?.client ?? client).post({
|
|
973
981
|
security: [{
|
|
974
982
|
in: "cookie",
|
|
@@ -2004,5 +2012,5 @@ function patchCursor(options, cursor) {
|
|
|
2004
2012
|
return { ...options, body: { cursor } };
|
|
2005
2013
|
}
|
|
2006
2014
|
|
|
2007
|
-
//# debugId=
|
|
2015
|
+
//# debugId=1F3074A4474A644864756E2164756E21
|
|
2008
2016
|
//# sourceMappingURL=index.js.map
|