shoal-web-sdk 0.0.139 → 0.0.140
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/sdk/@tanstack/react-query.gen.d.ts +2 -2
- package/dist/sdk/@tanstack/react-query.gen.js +2 -2
- package/dist/sdk/sdk.gen.d.ts +1 -1
- package/dist/sdk/sdk.gen.js +1 -1
- package/dist/sdk/types.gen.d.ts +4 -4
- package/dist/sdk/zod.gen.d.ts +3 -3
- package/dist/sdk/zod.gen.js +3 -3
- package/package.json +1 -1
|
@@ -778,7 +778,7 @@ export declare const getEnvironmentVersionsQueryKey: (options: Options<GetEnviro
|
|
|
778
778
|
tags?: ReadonlyArray<string>;
|
|
779
779
|
}];
|
|
780
780
|
/**
|
|
781
|
-
* Get paginated environment versions ordered by latest version first, optionally
|
|
781
|
+
* Get paginated environment versions ordered by latest version first, optionally excluding a version UUID and filtering by status.
|
|
782
782
|
*/
|
|
783
783
|
export declare const getEnvironmentVersionsOptions: (options: Options<GetEnvironmentVersionsData>) => import("@tanstack/react-query").OmitKeyof<import("@tanstack/react-query").UseQueryOptions<import("../types.gen").PaginatedEnvironmentVersions, Error, import("../types.gen").PaginatedEnvironmentVersions, [Pick<Options<GetEnvironmentVersionsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
784
784
|
_id: string;
|
|
@@ -802,7 +802,7 @@ export declare const getEnvironmentVersionsOptions: (options: Options<GetEnviron
|
|
|
802
802
|
};
|
|
803
803
|
export declare const getEnvironmentVersionsInfiniteQueryKey: (options: Options<GetEnvironmentVersionsData>) => QueryKey<Options<GetEnvironmentVersionsData>>;
|
|
804
804
|
/**
|
|
805
|
-
* Get paginated environment versions ordered by latest version first, optionally
|
|
805
|
+
* Get paginated environment versions ordered by latest version first, optionally excluding a version UUID and filtering by status.
|
|
806
806
|
*/
|
|
807
807
|
export declare const getEnvironmentVersionsInfiniteOptions: (options: Options<GetEnvironmentVersionsData>) => import("@tanstack/react-query").UseInfiniteQueryOptions<import("../types.gen").PaginatedEnvironmentVersions, Error, InfiniteData<import("../types.gen").PaginatedEnvironmentVersions, unknown>, QueryKey<Options<GetEnvironmentVersionsData>>, number | Pick<Pick<Options<GetEnvironmentVersionsData>, "query" | "body" | "headers" | "path" | "baseUrl"> & {
|
|
808
808
|
_id: string;
|
|
@@ -845,7 +845,7 @@ export const getEnvironmentOverviewOptions = (options) => {
|
|
|
845
845
|
};
|
|
846
846
|
export const getEnvironmentVersionsQueryKey = (options) => createQueryKey('getEnvironmentVersions', options);
|
|
847
847
|
/**
|
|
848
|
-
* Get paginated environment versions ordered by latest version first, optionally
|
|
848
|
+
* Get paginated environment versions ordered by latest version first, optionally excluding a version UUID and filtering by status.
|
|
849
849
|
*/
|
|
850
850
|
export const getEnvironmentVersionsOptions = (options) => {
|
|
851
851
|
return queryOptions({
|
|
@@ -863,7 +863,7 @@ export const getEnvironmentVersionsOptions = (options) => {
|
|
|
863
863
|
};
|
|
864
864
|
export const getEnvironmentVersionsInfiniteQueryKey = (options) => createQueryKey('getEnvironmentVersions', options, true);
|
|
865
865
|
/**
|
|
866
|
-
* Get paginated environment versions ordered by latest version first, optionally
|
|
866
|
+
* Get paginated environment versions ordered by latest version first, optionally excluding a version UUID and filtering by status.
|
|
867
867
|
*/
|
|
868
868
|
export const getEnvironmentVersionsInfiniteOptions = (options) => {
|
|
869
869
|
return infiniteQueryOptions(
|
package/dist/sdk/sdk.gen.d.ts
CHANGED
|
@@ -154,7 +154,7 @@ export declare const createEnvironment: <ThrowOnError extends boolean = false>(o
|
|
|
154
154
|
*/
|
|
155
155
|
export declare const getEnvironmentOverview: <ThrowOnError extends boolean = false>(options: Options<GetEnvironmentOverviewData, ThrowOnError>) => import("./client").RequestResult<GetEnvironmentOverviewResponses, GetEnvironmentOverviewErrors, ThrowOnError, "fields">;
|
|
156
156
|
/**
|
|
157
|
-
* Get paginated environment versions ordered by latest version first, optionally
|
|
157
|
+
* Get paginated environment versions ordered by latest version first, optionally excluding a version UUID and filtering by status.
|
|
158
158
|
*/
|
|
159
159
|
export declare const getEnvironmentVersions: <ThrowOnError extends boolean = false>(options: Options<GetEnvironmentVersionsData, ThrowOnError>) => import("./client").RequestResult<GetEnvironmentVersionsResponses, unknown, ThrowOnError, "fields">;
|
|
160
160
|
/**
|
package/dist/sdk/sdk.gen.js
CHANGED
|
@@ -562,7 +562,7 @@ export const getEnvironmentOverview = (options) => {
|
|
|
562
562
|
});
|
|
563
563
|
};
|
|
564
564
|
/**
|
|
565
|
-
* Get paginated environment versions ordered by latest version first, optionally
|
|
565
|
+
* Get paginated environment versions ordered by latest version first, optionally excluding a version UUID and filtering by status.
|
|
566
566
|
*/
|
|
567
567
|
export const getEnvironmentVersions = (options) => {
|
|
568
568
|
return (options.client ?? client).get({
|
package/dist/sdk/types.gen.d.ts
CHANGED
|
@@ -554,9 +554,9 @@ export type NodeId = string;
|
|
|
554
554
|
*/
|
|
555
555
|
export type VersionUuid = string;
|
|
556
556
|
/**
|
|
557
|
-
* Optional version UUID to
|
|
557
|
+
* Optional version UUID to exclude from the environment versions response.
|
|
558
558
|
*/
|
|
559
|
-
export type
|
|
559
|
+
export type ExcludeVersionUuidQuery = string;
|
|
560
560
|
/**
|
|
561
561
|
* Optional version status to filter the environment versions response.
|
|
562
562
|
*/
|
|
@@ -2005,9 +2005,9 @@ export type GetEnvironmentVersionsData = {
|
|
|
2005
2005
|
*/
|
|
2006
2006
|
limit?: number;
|
|
2007
2007
|
/**
|
|
2008
|
-
* Optional version UUID to
|
|
2008
|
+
* Optional version UUID to exclude from the environment versions response.
|
|
2009
2009
|
*/
|
|
2010
|
-
|
|
2010
|
+
excludeVersionUUID?: string;
|
|
2011
2011
|
/**
|
|
2012
2012
|
* Optional version status to filter the environment versions response.
|
|
2013
2013
|
*/
|
package/dist/sdk/zod.gen.d.ts
CHANGED
|
@@ -1259,9 +1259,9 @@ export declare const zNodeId: z.ZodUUID;
|
|
|
1259
1259
|
*/
|
|
1260
1260
|
export declare const zVersionUuid: z.ZodUUID;
|
|
1261
1261
|
/**
|
|
1262
|
-
* Optional version UUID to
|
|
1262
|
+
* Optional version UUID to exclude from the environment versions response.
|
|
1263
1263
|
*/
|
|
1264
|
-
export declare const
|
|
1264
|
+
export declare const zExcludeVersionUuidQuery: z.ZodUUID;
|
|
1265
1265
|
/**
|
|
1266
1266
|
* Optional version status to filter the environment versions response.
|
|
1267
1267
|
*/
|
|
@@ -2441,7 +2441,7 @@ export declare const zGetEnvironmentVersionsData: z.ZodObject<{
|
|
|
2441
2441
|
query: z.ZodOptional<z.ZodObject<{
|
|
2442
2442
|
page: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
2443
2443
|
limit: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
2444
|
-
|
|
2444
|
+
excludeVersionUUID: z.ZodOptional<z.ZodUUID>;
|
|
2445
2445
|
status: z.ZodOptional<z.ZodEnum<{
|
|
2446
2446
|
pending: "pending";
|
|
2447
2447
|
queued: "queued";
|
package/dist/sdk/zod.gen.js
CHANGED
|
@@ -584,9 +584,9 @@ export const zNodeId = z.uuid();
|
|
|
584
584
|
*/
|
|
585
585
|
export const zVersionUuid = z.uuid();
|
|
586
586
|
/**
|
|
587
|
-
* Optional version UUID to
|
|
587
|
+
* Optional version UUID to exclude from the environment versions response.
|
|
588
588
|
*/
|
|
589
|
-
export const
|
|
589
|
+
export const zExcludeVersionUuidQuery = z.uuid();
|
|
590
590
|
/**
|
|
591
591
|
* Optional version status to filter the environment versions response.
|
|
592
592
|
*/
|
|
@@ -1025,7 +1025,7 @@ export const zGetEnvironmentVersionsData = z.object({
|
|
|
1025
1025
|
query: z.optional(z.object({
|
|
1026
1026
|
page: z.optional(z.int().gte(1)).default(1),
|
|
1027
1027
|
limit: z.optional(z.int().gte(1).lte(100)).default(10),
|
|
1028
|
-
|
|
1028
|
+
excludeVersionUUID: z.optional(z.uuid()),
|
|
1029
1029
|
status: z.optional(zVersionStatus)
|
|
1030
1030
|
}))
|
|
1031
1031
|
});
|