Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions .changeset/graph-navigation-retrieval.md

This file was deleted.

8 changes: 8 additions & 0 deletions apps/client-web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# @inkcre/client-web

## 0.1.1

### Patch Changes

- Updated dependencies [d72d88c]
- @inkcre/core@0.2.0
2 changes: 1 addition & 1 deletion apps/client-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@inkcre/client-web",
"version": "0.1.0",
"version": "0.1.1",
"private": true,
"type": "module",
"scripts": {
Expand Down
8 changes: 8 additions & 0 deletions apps/client-webext/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# @inkcre/client-webext

## 0.1.1

### Patch Changes

- Updated dependencies [d72d88c]
- @inkcre/core@0.2.0
2 changes: 1 addition & 1 deletion apps/client-webext/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@inkcre/client-webext",
"version": "0.1.0",
"version": "0.1.1",
"private": true,
"description": "InKCre's Web extension",
"type": "module",
Expand Down
11 changes: 11 additions & 0 deletions extensions/mail/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @inkcre/ext-mail

## 0.2.0

### Minor Changes

- d72d88c: Add peer-local graph-navigation retrieval and the required Resolver preview presentation contract.

### Patch Changes

- Updated dependencies [d72d88c]
- @inkcre/core@0.2.0

## 0.1.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions extensions/mail/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@inkcre/ext-mail",
"version": "0.1.1",
"version": "0.2.0",
"private": true,
"type": "module",
"scripts": {
Expand Down Expand Up @@ -38,7 +38,7 @@
"nickname": "Mail",
"module_federation": {
"host_sdk": "@inkcre/core",
"host_sdk_version": ">=0.1.0 <0.2.0"
"host_sdk_version": ">=0.2.0 <0.3.0"
}
}
}
11 changes: 11 additions & 0 deletions extensions/twitter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @inkcre/ext-twitter

## 0.3.0

### Minor Changes

- d72d88c: Add peer-local graph-navigation retrieval and the required Resolver preview presentation contract.

### Patch Changes

- Updated dependencies [d72d88c]
- @inkcre/core@0.2.0

## 0.2.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions extensions/twitter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@inkcre/ext-twitter",
"version": "0.2.1",
"version": "0.3.0",
"private": true,
"type": "module",
"scripts": {
Expand Down Expand Up @@ -36,7 +36,7 @@
"nickname": "Twitter",
"module_federation": {
"host_sdk": "@inkcre/core",
"host_sdk_version": ">=0.1.2 <0.2.0"
"host_sdk_version": ">=0.2.0 <0.3.0"
}
}
}
7 changes: 7 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# @inkcre/core

## 0.2.0

### Minor Changes

- d72d88c: Add peer-local graph-navigation retrieval and the required Resolver preview presentation contract.
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@inkcre/core",
"version": "0.1.2",
"version": "0.2.0",
"files": [
"dist"
],
Expand Down
4 changes: 4 additions & 0 deletions packages/core/src/database/database.generated.ts
Original file line number Diff line number Diff line change
Expand Up @@ -373,6 +373,7 @@
enabled: string[]
name: string
nickname: string | null
state: Json
version: string
}
Insert: {
Expand All @@ -381,6 +382,7 @@
enabled?: string[]
name: string
nickname?: string | null
state?: Json
version: string
}
Update: {
Expand All @@ -389,6 +391,7 @@
enabled?: string[]
name?: string
nickname?: string | null
state?: Json
version?: string
}
Relationships: []
Expand Down Expand Up @@ -770,6 +773,7 @@
enabled: string[]
name: string
nickname: string | null
state: Json
version: string
}[]
SetofOptions: {
Expand All @@ -795,7 +799,7 @@

export type Tables<
DefaultSchemaTableNameOrOptions extends
| keyof (DefaultSchema['Tables'] & DefaultSchema['Views'])

Check failure on line 802 in packages/core/src/database/database.generated.ts

View workflow job for this annotation

GitHub Actions / Type-aware and TypeScript 7 shadow

typescript(no-redundant-type-constituents)

'never' overrides all other types in this intersection type.

Check failure on line 802 in packages/core/src/database/database.generated.ts

View workflow job for this annotation

GitHub Actions / Type-aware and TypeScript 7 shadow

typescript(no-redundant-type-constituents)

'never' overrides all other types in this intersection type.

Check failure on line 802 in packages/core/src/database/database.generated.ts

View workflow job for this annotation

GitHub Actions / Type-aware and TypeScript 7 shadow

typescript(no-duplicate-type-constituents)

Intersection type constituent is duplicated with DefaultSchema['Tables'].
| { schema: keyof DatabaseWithoutInternals },
TableName extends (DefaultSchemaTableNameOrOptions extends {
schema: keyof DatabaseWithoutInternals
Expand All @@ -812,8 +816,8 @@
}
? R
: never
: DefaultSchemaTableNameOrOptions extends keyof (DefaultSchema['Tables'] & DefaultSchema['Views'])

Check failure on line 819 in packages/core/src/database/database.generated.ts

View workflow job for this annotation

GitHub Actions / Type-aware and TypeScript 7 shadow

typescript(no-redundant-type-constituents)

'never' overrides all other types in this intersection type.

Check failure on line 819 in packages/core/src/database/database.generated.ts

View workflow job for this annotation

GitHub Actions / Type-aware and TypeScript 7 shadow

typescript(no-redundant-type-constituents)

'never' overrides all other types in this intersection type.

Check failure on line 819 in packages/core/src/database/database.generated.ts

View workflow job for this annotation

GitHub Actions / Type-aware and TypeScript 7 shadow

typescript(no-duplicate-type-constituents)

Intersection type constituent is duplicated with DefaultSchema['Tables'].
? (DefaultSchema['Tables'] & DefaultSchema['Views'])[DefaultSchemaTableNameOrOptions] extends {

Check failure on line 820 in packages/core/src/database/database.generated.ts

View workflow job for this annotation

GitHub Actions / Type-aware and TypeScript 7 shadow

typescript(no-redundant-type-constituents)

'never' overrides all other types in this intersection type.

Check failure on line 820 in packages/core/src/database/database.generated.ts

View workflow job for this annotation

GitHub Actions / Type-aware and TypeScript 7 shadow

typescript(no-redundant-type-constituents)

'never' overrides all other types in this intersection type.

Check failure on line 820 in packages/core/src/database/database.generated.ts

View workflow job for this annotation

GitHub Actions / Type-aware and TypeScript 7 shadow

typescript(no-duplicate-type-constituents)

Intersection type constituent is duplicated with DefaultSchema['Tables'].
Row: infer R
}
? R
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"format": 1,
"revision": "extension-registry-feature-retrieval-v1",
"revision": "peer-extension-setup-v1",
"protocol": {
"format": 1,
"schema": "inkcre"
Expand Down
8 changes: 8 additions & 0 deletions packages/ext-dev-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# @inkcre/ext-dev-utils

## 0.1.1

### Patch Changes

- Updated dependencies [d72d88c]
- @inkcre/core@0.2.0
2 changes: 1 addition & 1 deletion packages/ext-dev-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@inkcre/ext-dev-utils",
"version": "0.1.0",
"version": "0.1.1",
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
Expand Down
Loading