shoal-web-sdk 1.0.129 → 1.0.130

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.
@@ -2000,7 +2000,7 @@ export declare const checkNodePortsQueryKey: (options: Options<CheckNodePortsDat
2000
2000
  tags?: ReadonlyArray<string>;
2001
2001
  }];
2002
2002
  /**
2003
- * Download a container node's uploaded source code and statically check that it listens on the node's configured port, alongside pre-build problems.
2003
+ * Download a container node's uploaded or GitHub (public, or private via the node's installation) source code and statically check that it listens on the node's configured port, alongside pre-build problems.
2004
2004
  */
2005
2005
  export declare const checkNodePortsOptions: (options: Options<CheckNodePortsData>) => import("@tanstack/react-query").OmitKeyof<import("@tanstack/react-query").UseQueryOptions<import("../types.gen").NodePortCheckResponse, Error, import("../types.gen").NodePortCheckResponse, [Pick<Options<CheckNodePortsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
2006
2006
  _id: string;
@@ -2083,7 +2083,7 @@ export const pingNodeOptions = (options) => {
2083
2083
  };
2084
2084
  export const checkNodePortsQueryKey = (options) => createQueryKey('checkNodePorts', options);
2085
2085
  /**
2086
- * Download a container node's uploaded source code and statically check that it listens on the node's configured port, alongside pre-build problems.
2086
+ * Download a container node's uploaded or GitHub (public, or private via the node's installation) source code and statically check that it listens on the node's configured port, alongside pre-build problems.
2087
2087
  */
2088
2088
  export const checkNodePortsOptions = (options) => {
2089
2089
  return queryOptions({
@@ -392,7 +392,7 @@ export declare const checkSubdomainUniqueness: <ThrowOnError extends boolean = f
392
392
  */
393
393
  export declare const pingNode: <ThrowOnError extends boolean = false>(options: Options<PingNodeData, ThrowOnError>) => import("./client").RequestResult<PingNodeResponses, PingNodeErrors, ThrowOnError, "fields">;
394
394
  /**
395
- * Download a container node's uploaded source code and statically check that it listens on the node's configured port, alongside pre-build problems.
395
+ * Download a container node's uploaded or GitHub (public, or private via the node's installation) source code and statically check that it listens on the node's configured port, alongside pre-build problems.
396
396
  */
397
397
  export declare const checkNodePorts: <ThrowOnError extends boolean = false>(options: Options<CheckNodePortsData, ThrowOnError>) => import("./client").RequestResult<CheckNodePortsResponses, CheckNodePortsErrors, ThrowOnError, "fields">;
398
398
  /**
@@ -1934,7 +1934,7 @@ export const pingNode = (options) => {
1934
1934
  });
1935
1935
  };
1936
1936
  /**
1937
- * Download a container node's uploaded source code and statically check that it listens on the node's configured port, alongside pre-build problems.
1937
+ * Download a container node's uploaded or GitHub (public, or private via the node's installation) source code and statically check that it listens on the node's configured port, alongside pre-build problems.
1938
1938
  */
1939
1939
  export const checkNodePorts = (options) => {
1940
1940
  return (options.client ?? client).get({
@@ -5681,7 +5681,7 @@ export type CheckNodePortsErrors = {
5681
5681
  */
5682
5682
  404: ErrorResponse;
5683
5683
  /**
5684
- * Node type or source does not support port checks, or the source is not a valid zip.
5684
+ * Node type or source does not support port checks, the GitHub source or installation is invalid, or the source is not a valid zip.
5685
5685
  */
5686
5686
  422: ErrorResponse;
5687
5687
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shoal-web-sdk",
3
- "version": "1.0.129",
3
+ "version": "1.0.130",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "build-hooks": "npx tsx tanstack-codegen/generator.ts",