shoal-web-sdk 1.0.29 → 1.0.30

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.
@@ -765,6 +765,10 @@ export type NeonBranchId = string;
765
765
  * The Neon branch ID.
766
766
  */
767
767
  export type NeonBranchIdPath = string;
768
+ /**
769
+ * The Neon organization ID.
770
+ */
771
+ export type NeonOrganizationId = string;
768
772
  /**
769
773
  * The endpoint ID to connect to.
770
774
  */
@@ -1757,7 +1761,12 @@ export type ListNeonProjectsData = {
1757
1761
  'x-neon-api-key': string;
1758
1762
  };
1759
1763
  path?: never;
1760
- query?: never;
1764
+ query: {
1765
+ /**
1766
+ * The Neon organization ID.
1767
+ */
1768
+ orgId: string;
1769
+ };
1761
1770
  url: '/auth/neon/projects';
1762
1771
  };
1763
1772
  export type ListNeonProjectsErrors = {
@@ -1537,6 +1537,10 @@ export declare const zNeonBranchId: z.ZodString;
1537
1537
  * The Neon branch ID.
1538
1538
  */
1539
1539
  export declare const zNeonBranchIdPath: z.ZodString;
1540
+ /**
1541
+ * The Neon organization ID.
1542
+ */
1543
+ export declare const zNeonOrganizationId: z.ZodString;
1540
1544
  /**
1541
1545
  * The endpoint ID to connect to.
1542
1546
  */
@@ -2705,7 +2709,9 @@ export declare const zFetchNeonConnectionUriResponse: z.ZodObject<{
2705
2709
  export declare const zListNeonProjectsData: z.ZodObject<{
2706
2710
  body: z.ZodOptional<z.ZodNever>;
2707
2711
  path: z.ZodOptional<z.ZodNever>;
2708
- query: z.ZodOptional<z.ZodNever>;
2712
+ query: z.ZodObject<{
2713
+ orgId: z.ZodString;
2714
+ }, z.core.$strip>;
2709
2715
  headers: z.ZodObject<{
2710
2716
  'x-neon-api-key': z.ZodString;
2711
2717
  }, z.core.$strip>;
@@ -753,6 +753,10 @@ export const zNeonBranchId = z.string();
753
753
  * The Neon branch ID.
754
754
  */
755
755
  export const zNeonBranchIdPath = z.string();
756
+ /**
757
+ * The Neon organization ID.
758
+ */
759
+ export const zNeonOrganizationId = z.string();
756
760
  /**
757
761
  * The endpoint ID to connect to.
758
762
  */
@@ -1106,7 +1110,9 @@ export const zFetchNeonConnectionUriResponse = zNeonConnectionUri;
1106
1110
  export const zListNeonProjectsData = z.object({
1107
1111
  body: z.optional(z.never()),
1108
1112
  path: z.optional(z.never()),
1109
- query: z.optional(z.never()),
1113
+ query: z.object({
1114
+ orgId: z.string()
1115
+ }),
1110
1116
  headers: z.object({
1111
1117
  'x-neon-api-key': z.string()
1112
1118
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shoal-web-sdk",
3
- "version": "1.0.29",
3
+ "version": "1.0.30",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "build-hooks": "npx tsx tanstack-codegen/generator.ts",