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({
|
package/dist/sdk/sdk.gen.d.ts
CHANGED
|
@@ -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
|
/**
|
package/dist/sdk/sdk.gen.js
CHANGED
|
@@ -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({
|
package/dist/sdk/types.gen.d.ts
CHANGED
|
@@ -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
|
/**
|