@ps-aux/api-client-gen 0.1.0-rc1 → 0.1.1-rc1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ps-aux/api-client-gen",
3
- "version": "0.1.0-rc1",
3
+ "version": "0.1.1-rc1",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.esm.js",
6
6
  "types": "dist/index.d.ts",
@@ -12,8 +12,7 @@
12
12
  "dev": "rollup -c --watch",
13
13
  "pub": "npm test && npm run build && npm publish",
14
14
  "test": "vitest",
15
- "tc": "tsc",
16
- "eh": "foo"
15
+ "tc": "tsc"
17
16
  },
18
17
  "author": "",
19
18
  "license": "ISC",
@@ -12,6 +12,7 @@ export type Request = {
12
12
  query?: any
13
13
  body?: any
14
14
  type?: string
15
+ secure?: boolean
15
16
  }
16
17
 
17
18
  export type HttpClient<RequestParams> = {