-
Notifications
You must be signed in to change notification settings - Fork 1
Patch release 0.7.2: System protocol schemas and documentation #444
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| --- | ||
| "@objectstack/spec": patch | ||
| "@objectstack/core": patch | ||
| "@objectstack/types": patch | ||
| "@objectstack/objectql": patch | ||
| "@objectstack/runtime": patch | ||
| "@objectstack/client": patch | ||
| "@objectstack/client-react": patch | ||
| "@objectstack/driver-memory": patch | ||
| "@objectstack/plugin-hono-server": patch | ||
| "@objectstack/plugin-msw": patch | ||
| "@objectstack/cli": patch | ||
| "@objectstack/ai-bridge": patch | ||
| --- | ||
|
|
||
| Patch release: Updated documentation and JSON schemas | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,14 +6,14 @@ description: Connector protocol schemas | |
| # Connector | ||
|
|
||
| <Callout type="info"> | ||
| **Source:** `packages/spec/src/integration/connector.zod.ts` | ||
| **Source:** `packages/spec/src/automation/connector.zod.ts` | ||
| </Callout> | ||
|
|
||
| ## TypeScript Usage | ||
|
|
||
| ```typescript | ||
| import { AuthenticationSchema, ConflictResolutionSchema, ConnectorSchema, DataSyncConfigSchema } from '@objectstack/spec/integration'; | ||
| import type { Authentication, ConflictResolution, Connector, DataSyncConfig } from '@objectstack/spec/integration'; | ||
| import { AuthenticationSchema, ConflictResolutionSchema, ConnectorSchema, DataSyncConfigSchema } from '@objectstack/spec/automation'; | ||
| import type { Authentication, ConflictResolution, Connector, DataSyncConfig } from '@objectstack/spec/automation'; | ||
|
Comment on lines
8
to
+16
|
||
|
|
||
| // Validate data | ||
| const result = AuthenticationSchema.parse(data); | ||
|
|
||
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PR description says “All packages bump to 0.7.2 via changeset”, but this changeset does not include
@objectstack/metadata(which still exists as a package). Either include it here or adjust the PR description/release plan so versions stay consistent across packages.