Skip to content

Commit 69d40f7

Browse files
feat: add secrets (#26)
1 parent 0c0b3b1 commit 69d40f7

File tree

28 files changed

+2848
-307
lines changed

28 files changed

+2848
-307
lines changed

.assets/pspace.json

Lines changed: 1168 additions & 11 deletions
Large diffs are not rendered by default.

.scripts/generate-api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import openapiTS from "npm:openapi-typescript";
22
import { path } from "../deps.ts";
3-
import { parse } from "https://deno.land/std@0.178.0/flags/mod.ts";
3+
import { parse } from "https://deno.land/std@0.179.0/flags/mod.ts";
44

55
const flags = parse(Deno.args);
66
const url = flags._[0] ?? "https://api.paperspace.com/v1/openapi.json";

.scripts/generate-docs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { app } from "../zcli.ts";
22
import { root } from "../commands/mod.ts";
3-
import { zcliJson } from "https://deno.land/x/[email protected].2/zcli-json.ts";
3+
import { zcliJson } from "https://deno.land/x/[email protected].3/zcli-json.ts";
44

55
// Read the markdown file adjacent to this script
66
const json = await zcliJson(app, root);

README.md

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -10,24 +10,6 @@ Using Shell (macOS, Linux, and Windows using WSL):
1010
curl -fsSL https://paperspace.com/install.sh | sh
1111
```
1212

13-
Using Scoop (Windows):
14-
15-
> **Note** Coming soon
16-
>
17-
> ```sh
18-
> scoop bucket add pspace https://github.com/Paperspace/scoop-bucket.git
19-
> scoop install pspace
20-
> ```
21-
22-
Using Homebrew (macOS and Linux):
23-
24-
> **Note** Coming soon
25-
>
26-
> ```sh
27-
> brew tap paperspace/tap
28-
> brew install pspace
29-
> ```
30-
3113
## Usage
3214

3315
Run `pspace --help` in your terminal.

api/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ export type ClientMethod<
191191
requestInit?: ApiClientRequestInit,
192192
) => Promise<SuccessData<Path, Method> | ErrorData<Path, Method>>
193193
: (
194-
params: PathParams<Path, Method> & PathBody<Path, Method>,
194+
params: Prettify<PathParams<Path, Method> & PathBody<Path, Method>>,
195195
requestInit?: ApiClientRequestInit,
196196
) => Promise<SuccessData<Path, Method> | ErrorData<Path, Method>>);
197197

0 commit comments

Comments
 (0)