Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored and joshamaju committed Jan 3, 2024
1 parent 0baf89c commit cb728fa
Show file tree
Hide file tree
Showing 4 changed files with 117 additions and 6 deletions.
5 changes: 0 additions & 5 deletions .changeset/dry-bananas-lick.md

This file was deleted.

6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# effect-fetch

## 1.2.4

### Patch Changes

- 0baf89c: re-export all modules from single entry point

## 1.2.3

### Patch Changes
Expand Down
110 changes: 110 additions & 0 deletions docs/modules/index.ts.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
---
title: index.ts
nav_order: 4
parent: Modules
---

## index overview

Added in v1.2.4

---

<h2 class="text-delta">Table of contents</h2>

- [exports](#exports)
- [From './Adapters/Fetch.js'](#from-adaptersfetchjs)
- [From './Error.js'](#from-errorjs)
- [From './Fetch.js'](#from-fetchjs)
- [From './Interceptor.js'](#from-interceptorjs)
- [From './Interceptors/Logger.js'](#from-interceptorsloggerjs)
- [From './Request.js'](#from-requestjs)
- [From './Response.js'](#from-responsejs)

---

# exports

## From './Adapters/Fetch.js'

Re-exports all named exports from the './Adapters/Fetch.js' module as `PlatformFetch`.

**Signature**

```ts
export * as PlatformFetch from "./Adapters/Fetch.js"
```

Added in v1.2.4

## From './Error.js'

Re-exports all named exports from the './Error.js' module as `Error`.

**Signature**

```ts
export * as Error from "./Error.js"
```

Added in v1.2.4

## From './Fetch.js'

Re-exports all named exports from the './Fetch.js' module as `Fetch`.

**Signature**

```ts
export * as Fetch from "./Fetch.js"
```

Added in v1.2.4

## From './Interceptor.js'

Re-exports all named exports from the './Interceptor.js' module as `Interceptor`.

**Signature**

```ts
export * as Interceptor from "./Interceptor.js"
```

Added in v1.2.4

## From './Interceptors/Logger.js'

Re-exports all named exports from the './Interceptors/Logger.js' module as `Logger`.

**Signature**

```ts
export * as Logger from "./Interceptors/Logger.js"
```

Added in v1.2.4

## From './Request.js'

Re-exports all named exports from the './Request.js' module as `Request`.

**Signature**

```ts
export * as Request from "./Request.js"
```

Added in v1.2.4

## From './Response.js'

Re-exports all named exports from the './Response.js' module as `Response`.

**Signature**

```ts
export * as Response from "./Response.js"
```

Added in v1.2.4
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "effect-fetch",
"version": "1.2.3",
"version": "1.2.4",
"description": "fetch + interceptors + strongly typed errors",
"type": "module",
"homepage": "https://github.com/joshamaju/effect-fetch",
Expand Down

0 comments on commit cb728fa

Please sign in to comment.