@naturali/cli 0.83.1 → 0.83.2
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.mjs +4 -4
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -14,7 +14,7 @@ var __exportAll = (all, no_symbols) => {
|
|
|
14
14
|
};
|
|
15
15
|
//#endregion
|
|
16
16
|
//#region package.json
|
|
17
|
-
var version = "0.83.
|
|
17
|
+
var version = "0.83.2";
|
|
18
18
|
//#endregion
|
|
19
19
|
//#region ../sdk/src/generated/core/bodySerializer.gen.ts
|
|
20
20
|
const serializeFormDataPair = (data, key, value) => {
|
|
@@ -15492,9 +15492,9 @@ const routes = {
|
|
|
15492
15492
|
*
|
|
15493
15493
|
* Every API operation is a command, generated from `api/openapi/v1/*.yaml` into
|
|
15494
15494
|
* `src/generated/routes.ts` and dispatched through `@naturali/sdk` — so the CLI
|
|
15495
|
-
* is a thin client over exactly the public contract
|
|
15496
|
-
*
|
|
15497
|
-
*
|
|
15495
|
+
* is a thin client over exactly the public contract, with nothing hand-written
|
|
15496
|
+
* per endpoint. Only discovery (`list-commands`) is a command of its own.
|
|
15497
|
+
* Credentials come from the `NATURALI_TOKEN` environment variable.
|
|
15498
15498
|
*/
|
|
15499
15499
|
const addListCommandsCommand = (program) => {
|
|
15500
15500
|
program.command("list-commands").description("List every available API command").action(() => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@naturali/cli",
|
|
3
|
-
"version": "0.83.
|
|
3
|
+
"version": "0.83.2",
|
|
4
4
|
"description": "Command-line interface for the naturali.ai API, generated from its OpenAPI specs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"tsx": "^4.23.1",
|
|
31
31
|
"typescript": "~6.0.3",
|
|
32
32
|
"vitest": "^4.1.10",
|
|
33
|
-
"@naturali/sdk": "0.83.
|
|
33
|
+
"@naturali/sdk": "0.83.2"
|
|
34
34
|
},
|
|
35
35
|
"scripts": {
|
|
36
36
|
"generate": "tsx scripts/generate.ts",
|