@budibase/pro 3.21.2 → 3.22.0

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.
@@ -0,0 +1,13 @@
1
+ /**
2
+ * A proxy-aware fetch function that respects global-agent environment variables.
3
+ * Use this instead of the native fetch when making external HTTP requests that
4
+ * need to go through a proxy.
5
+ *
6
+ * @param input - The URL or Request object
7
+ * @param init - Optional fetch init options
8
+ * @param options - Optional configuration for TLS verification
9
+ * @returns Promise<Response>
10
+ */
11
+ export declare function proxyFetch(input: string | URL | Request, init?: RequestInit, options?: {
12
+ rejectUnauthorized?: boolean;
13
+ }): Promise<Response>;
@@ -1 +1,2 @@
1
1
  export { default as API } from "./api";
2
+ export { proxyFetch } from "./fetch";
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "dist"
5
5
  ],
6
6
  "license": "UNLICENSED",
7
- "version": "3.21.2",
7
+ "version": "3.22.0",
8
8
  "description": "Budibase Pro (Backend)",
9
9
  "main": "dist/index.js",
10
10
  "types": "dist/index.d.ts",
@@ -29,6 +29,7 @@
29
29
  "openai": "5.12.1",
30
30
  "scim-patch": "^0.8.1",
31
31
  "scim2-parse-filter": "^0.2.8",
32
+ "undici": "^6.0.0",
32
33
  "zod": "^3.23.8"
33
34
  },
34
35
  "devDependencies": {
@@ -70,5 +71,5 @@
70
71
  }
71
72
  }
72
73
  },
73
- "gitHead": "c040bbfadf1faab16b7e07a56037204de3e0a311"
74
+ "gitHead": "5ccef259f2972ae8625f9c576b8e1d28c9f1fbfc"
74
75
  }