@townco/apiclient 0.0.20 → 0.0.22

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.ts CHANGED
@@ -60,6 +60,9 @@ export declare const createClient: ({ shedUrl, accessToken, debug, }: {
60
60
  sha256: string;
61
61
  agent: string;
62
62
  shedUrl: string;
63
+ agentUser?: string | undefined;
64
+ agentPass?: string | undefined;
65
+ env?: Record<string, string> | undefined;
63
66
  };
64
67
  output: AsyncIterable<{
65
68
  status: string;
package/dist/server.d.ts CHANGED
@@ -122,6 +122,9 @@ export declare const router: import("@trpc/server").TRPCBuiltRouter<{
122
122
  sha256: string;
123
123
  agent: string;
124
124
  shedUrl: string;
125
+ agentUser?: string | undefined;
126
+ agentPass?: string | undefined;
127
+ env?: Record<string, string> | undefined;
125
128
  };
126
129
  output: AsyncIterable<{
127
130
  status: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@townco/apiclient",
3
3
  "type": "module",
4
- "version": "0.0.20",
4
+ "version": "0.0.22",
5
5
  "description": "apiclient",
6
6
  "license": "UNLICENSED",
7
7
  "main": "./dist/index.js",