Skip to content

Commit 68438dd

Browse files
authored
Merge branch 'tim-smart:main' into main
2 parents 4bd780c + c7bc459 commit 68438dd

File tree

20 files changed

+175
-198
lines changed

20 files changed

+175
-198
lines changed

docs/atom-livestore/AtomLivestore.ts.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Added in v1.0.0
2929
```ts
3030
export declare const Tag: <Self>() => <const Id extends string, S extends LiveStoreSchema, Context = {}>(
3131
id: Id,
32-
options: Options<Id, S, Context> | Atom.Atom<Options<Id, S, Context>>
32+
options: Options<S, Context> | ((get: Atom.Context) => Options<S, Context>)
3333
) => AtomLiveStore<Self, Id, S, Context>
3434
```
3535
@@ -87,10 +87,7 @@ Added in v1.0.0
8787
**Signature**
8888

8989
```ts
90-
export type Options<const Id extends string, S extends LiveStoreSchema, Context = {}> = CreateStoreOptions<
91-
S,
92-
Context
93-
> & {
90+
export type Options<S extends LiveStoreSchema, Context = {}> = CreateStoreOptions<S, Context> & {
9491
readonly otelOptions?: Partial<OtelOptions> | undefined
9592
}
9693
```

docs/atom/Atom.ts.md

Lines changed: 0 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -92,11 +92,6 @@ Added in v1.0.0
9292
- [Interrupt (type alias)](#interrupt-type-alias)
9393
- [Reset](#reset)
9494
- [Reset (type alias)](#reset-type-alias)
95-
- [type ids](#type-ids)
96-
- [TypeId](#typeid)
97-
- [TypeId (type alias)](#typeid-type-alias)
98-
- [WritableTypeId](#writabletypeid)
99-
- [WritableTypeId (type alias)](#writabletypeid-type-alias)
10095
- [utils](#utils)
10196
- [Failure (type alias)](#failure-type-alias)
10297
- [PullSuccess (type alias)](#pullsuccess-type-alias)
@@ -1211,48 +1206,6 @@ export type Reset = typeof Reset
12111206
12121207
Added in v1.0.0
12131208
1214-
# type ids
1215-
1216-
## TypeId
1217-
1218-
**Signature**
1219-
1220-
```ts
1221-
export declare const TypeId: "~effect-atom/atom/Atom"
1222-
```
1223-
1224-
Added in v1.0.0
1225-
1226-
## TypeId (type alias)
1227-
1228-
**Signature**
1229-
1230-
```ts
1231-
export type TypeId = "~effect-atom/atom/Atom"
1232-
```
1233-
1234-
Added in v1.0.0
1235-
1236-
## WritableTypeId
1237-
1238-
**Signature**
1239-
1240-
```ts
1241-
export declare const WritableTypeId: "~effect-atom/atom/Atom/Writable"
1242-
```
1243-
1244-
Added in v1.0.0
1245-
1246-
## WritableTypeId (type alias)
1247-
1248-
**Signature**
1249-
1250-
```ts
1251-
export type WritableTypeId = "~effect-atom/atom/Atom/Writable"
1252-
```
1253-
1254-
Added in v1.0.0
1255-
12561209
# utils
12571210
12581211
## Failure (type alias)

docs/atom/AtomRef.ts.md

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@ Added in v1.0.0
1919
- [AtomRef (interface)](#atomref-interface)
2020
- [Collection (interface)](#collection-interface)
2121
- [ReadonlyRef (interface)](#readonlyref-interface)
22-
- [type ids](#type-ids)
23-
- [TypeId](#typeid)
24-
- [TypeId (type alias)](#typeid-type-alias)
2522

2623
---
2724

@@ -93,25 +90,3 @@ export interface ReadonlyRef<A> extends Equal.Equal {
9390
```
9491

9592
Added in v1.0.0
96-
97-
# type ids
98-
99-
## TypeId
100-
101-
**Signature**
102-
103-
```ts
104-
export declare const TypeId: "~effect-atom/atom/AtomRef"
105-
```
106-
107-
Added in v1.0.0
108-
109-
## TypeId (type alias)
110-
111-
**Signature**
112-
113-
```ts
114-
export type TypeId = "~effect-atom/atom/AtomRef"
115-
```
116-
117-
Added in v1.0.0

docs/atom/Registry.ts.md

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,6 @@ Added in v1.0.0
2727
- [isRegistry](#isregistry)
2828
- [models](#models)
2929
- [Registry (interface)](#registry-interface)
30-
- [type ids](#type-ids)
31-
- [TypeId](#typeid)
32-
- [TypeId (type alias)](#typeid-type-alias)
3330

3431
---
3532

@@ -183,25 +180,3 @@ export interface Registry {
183180
```
184181

185182
Added in v1.0.0
186-
187-
# type ids
188-
189-
## TypeId
190-
191-
**Signature**
192-
193-
```ts
194-
export declare const TypeId: "~effect-atom/atom/Registry"
195-
```
196-
197-
Added in v1.0.0
198-
199-
## TypeId (type alias)
200-
201-
**Signature**
202-
203-
```ts
204-
export type TypeId = "~effect-atom/atom/Registry"
205-
```
206-
207-
Added in v1.0.0

docs/atom/Result.ts.md

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,6 @@ Added in v1.0.0
6666
- [isNotInitial](#isnotinitial)
6767
- [isSuccess](#issuccess)
6868
- [isWaiting](#iswaiting)
69-
- [type ids](#type-ids)
70-
- [TypeId](#typeid)
71-
- [TypeId (type alias)](#typeid-type-alias)
7269
- [utils](#utils)
7370
- [With (type alias)](#with-type-alias)
7471

@@ -755,28 +752,6 @@ export declare const isWaiting: <A, E>(result: Result<A, E>) => boolean
755752
756753
Added in v1.0.0
757754
758-
# type ids
759-
760-
## TypeId
761-
762-
**Signature**
763-
764-
```ts
765-
export declare const TypeId: typeof TypeId
766-
```
767-
768-
Added in v1.0.0
769-
770-
## TypeId (type alias)
771-
772-
**Signature**
773-
774-
```ts
775-
export type TypeId = typeof TypeId
776-
```
777-
778-
Added in v1.0.0
779-
780755
# utils
781756
782757
## With (type alias)

packages/atom-livestore/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @effect-rx/rx-livestore
22

3+
## 0.4.8
4+
5+
### Patch Changes
6+
7+
- [`c874a58`](https://github.com/tim-smart/effect-atom/commit/c874a58df3d7bf921d987bbdce5cd219587c8755) Thanks [@tim-smart](https://github.com/tim-smart)! - try hiding type ids to fix declaration emit errors
8+
9+
- Updated dependencies [[`c874a58`](https://github.com/tim-smart/effect-atom/commit/c874a58df3d7bf921d987bbdce5cd219587c8755)]:
10+
- @effect-atom/atom@0.4.12
11+
312
## 0.4.7
413

514
### Patch Changes

packages/atom-livestore/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@effect-atom/atom-livestore",
3-
"version": "0.4.7",
3+
"version": "0.4.8",
44
"description": "effect-atom bindings to livestore",
55
"type": "module",
66
"publishConfig": {

packages/atom-react/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @effect-rx/rx-react
22

3+
## 0.4.5
4+
5+
### Patch Changes
6+
7+
- [`c874a58`](https://github.com/tim-smart/effect-atom/commit/c874a58df3d7bf921d987bbdce5cd219587c8755) Thanks [@tim-smart](https://github.com/tim-smart)! - try hiding type ids to fix declaration emit errors
8+
9+
- Updated dependencies [[`c874a58`](https://github.com/tim-smart/effect-atom/commit/c874a58df3d7bf921d987bbdce5cd219587c8755)]:
10+
- @effect-atom/atom@0.4.12
11+
312
## 0.4.4
413

514
### Patch Changes

packages/atom-react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@effect-atom/atom-react",
3-
"version": "0.4.4",
3+
"version": "0.4.5",
44
"description": "Reactive toolkit for Effect",
55
"type": "module",
66
"publishConfig": {

packages/atom-vue/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @effect-rx/rx-vue
22

3+
## 0.4.5
4+
5+
### Patch Changes
6+
7+
- [`c874a58`](https://github.com/tim-smart/effect-atom/commit/c874a58df3d7bf921d987bbdce5cd219587c8755) Thanks [@tim-smart](https://github.com/tim-smart)! - try hiding type ids to fix declaration emit errors
8+
9+
- Updated dependencies [[`c874a58`](https://github.com/tim-smart/effect-atom/commit/c874a58df3d7bf921d987bbdce5cd219587c8755)]:
10+
- @effect-atom/atom@0.4.12
11+
312
## 0.4.4
413

514
### Patch Changes

0 commit comments

Comments
 (0)