nuxt-api-party
Advanced tools
Comparing version 0.21.2 to 0.21.3
@@ -7,3 +7,3 @@ { | ||
}, | ||
"version": "0.21.2" | ||
"version": "0.21.3" | ||
} |
@@ -6,6 +6,9 @@ export interface SerializedBlob { | ||
name?: string; | ||
__type: 'blob'; | ||
} | ||
export type SerializedFormData = Record<string, string | (SerializedBlob & { | ||
__type: 'blob'; | ||
})>; | ||
export type SerializedFormDataValue = string | SerializedBlob | (string | SerializedBlob)[]; | ||
export interface SerializedFormData { | ||
[key: string]: SerializedFormDataValue; | ||
__type: 'form-data'; | ||
} | ||
export declare function isFormData(obj: unknown): obj is FormData; | ||
@@ -12,0 +15,0 @@ export declare function isSerializedFormData(obj: unknown): obj is SerializedFormData; |
import { ModuleOptions } from './module' | ||
import type { ModuleOptions } from './module' | ||
declare module '@nuxt/schema' { | ||
@@ -15,2 +16,2 @@ interface NuxtConfig { ['apiParty']?: Partial<ModuleOptions> } | ||
export { Endpoint, ModuleOptions, default } from './module' | ||
export type { Endpoint, ModuleOptions, default } from './module' |
{ | ||
"name": "nuxt-api-party", | ||
"type": "module", | ||
"version": "0.21.2", | ||
"packageManager": "pnpm@8.10.2", | ||
"version": "0.21.3", | ||
"packageManager": "pnpm@8.11.0", | ||
"description": "Nuxt 3 module to securely connect with any API", | ||
@@ -51,3 +51,3 @@ "author": "Johann Schopplich <pkg@johannschopplich.com>", | ||
"dependencies": { | ||
"@nuxt/kit": "^3.8.1", | ||
"@nuxt/kit": "^3.8.2", | ||
"defu": "^6.1.3", | ||
@@ -57,18 +57,18 @@ "ofetch": "^1.3.3", | ||
"pathe": "^1.1.1", | ||
"scule": "^1.0.0", | ||
"ufo": "^1.3.1" | ||
"scule": "^1.1.0", | ||
"ufo": "^1.3.2" | ||
}, | ||
"optionalDependencies": { | ||
"openapi-typescript": "^6.7.0" | ||
"openapi-typescript": "^6.7.1" | ||
}, | ||
"devDependencies": { | ||
"@antfu/eslint-config": "^1.1.0", | ||
"@nuxt/module-builder": "^0.5.3", | ||
"@antfu/eslint-config": "^2.1.1", | ||
"@nuxt/module-builder": "^0.5.4", | ||
"@nuxt/test-utils": "^3.8.1", | ||
"@types/node": "^20.8.10", | ||
"@types/node": "^20.10.0", | ||
"bumpp": "^9.2.0", | ||
"eslint": "^8.53.0", | ||
"nuxt": "^3.8.1", | ||
"eslint": "^8.54.0", | ||
"nuxt": "^3.8.2", | ||
"nuxt-api-party": "workspace:*", | ||
"typescript": "^5.2.2", | ||
"typescript": "^5.3.2", | ||
"vitest": "^0.34.6", | ||
@@ -75,0 +75,0 @@ "vue-tsc": "^1.8.22" |
@@ -77,3 +77,3 @@ [![nuxt-api-party](./docs/public/og.jpg)](https://nuxt-api-party.byjohann.dev) | ||
> [!NOTE] | ||
> [!TIP] | ||
> You can connect as many APIs as you want, just add them to the `endpoints` object. | ||
@@ -80,0 +80,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
43757
886
Updated@nuxt/kit@^3.8.2
Updatedscule@^1.1.0
Updatedufo@^1.3.2