apigen-ts 0.1.1 → 0.1.2
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/_template.ts +2 -2
- package/package.json +1 -1
package/dist/_template.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
// Note: Use uppercase for names in ApiClient to avoid conflict with the generated code
|
|
2
2
|
|
|
3
|
-
interface ApigenConfig {
|
|
3
|
+
export interface ApigenConfig {
|
|
4
4
|
baseUrl: string
|
|
5
5
|
headers: Record<string, string>
|
|
6
6
|
}
|
|
7
7
|
|
|
8
|
-
interface ApigenRequest extends Omit<RequestInit, "body"> {
|
|
8
|
+
export interface ApigenRequest extends Omit<RequestInit, "body"> {
|
|
9
9
|
search?: Record<string, unknown>
|
|
10
10
|
body?: unknown
|
|
11
11
|
}
|