Skip to content

Commit d4a594f

Browse files
authored
Merge pull request #520 from objectstack-ai/changeset-release/main
2 parents 109fc5b + aebae67 commit d4a594f

56 files changed

Lines changed: 514 additions & 72 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.changeset/infrastructure-setup.md

Lines changed: 0 additions & 24 deletions
This file was deleted.

.changeset/unified_patch.md

Lines changed: 0 additions & 20 deletions
This file was deleted.

apps/docs/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# @objectstack/docs
22

3+
## 1.0.2
4+
5+
### Patch Changes
6+
7+
- a0a6c85: Infrastructure and development tooling improvements
8+
9+
- Add changeset configuration for automated version management
10+
- Add comprehensive GitHub Actions workflows (CI, CodeQL, linting, releases)
11+
- Add development configuration files (.cursorrules, .github/prompts)
12+
- Add documentation files (ARCHITECTURE.md, CONTRIBUTING.md, workflows docs)
13+
- Update test script configuration in package.json
14+
- Add @objectstack/cli to devDependencies for better development experience
15+
16+
- 109fc5b: Unified patch release to align all package versions.
17+
318
## 1.0.1
419

520
## 1.0.0

apps/docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@objectstack/docs",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"private": true,
55
"description": "ObjectStack Protocol Documentation Site",
66
"scripts": {
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
title: Connector
3+
description: Connector protocol schemas
4+
---
5+
6+
<Callout type="info">
7+
**Source:** `packages/spec/src/api/connector.zod.ts`
8+
</Callout>
9+
10+
## TypeScript Usage
11+
12+
```typescript
13+
import { RetryStrategy } from '@objectstack/spec/api';
14+
import type { RetryStrategy } from '@objectstack/spec/api';
15+
16+
// Validate data
17+
const result = RetryStrategy.parse(data);
18+
```
19+
20+
---
21+
22+
## RetryStrategy
23+
24+
### Allowed Values
25+
26+
* `no_retry`
27+
* `retry_immediate`
28+
* `retry_backoff`
29+
* `retry_after`
30+
31+
32+
---
33+
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
title: Identity
3+
description: Identity protocol schemas
4+
---
5+
6+
<Callout type="info">
7+
**Source:** `packages/spec/src/api/identity.zod.ts`
8+
</Callout>
9+
10+
## TypeScript Usage
11+
12+
```typescript
13+
import { Session } from '@objectstack/spec/api';
14+
import type { Session } from '@objectstack/spec/api';
15+
16+
// Validate data
17+
const result = Session.parse(data);
18+
```
19+
20+
---
21+
22+
## Session
23+
24+
### Properties
25+
26+
| Property | Type | Required | Description |
27+
| :--- | :--- | :--- | :--- |
28+
| **id** | `string` || |
29+
| **expiresAt** | `string` || |
30+
| **token** | `string` | optional | |
31+
| **ipAddress** | `string` | optional | |
32+
| **userAgent** | `string` | optional | |
33+
| **userId** | `string` || |
34+
35+
36+
---
37+
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
title: View
3+
description: View protocol schemas
4+
---
5+
6+
<Callout type="info">
7+
**Source:** `packages/spec/src/api/view.zod.ts`
8+
</Callout>
9+
10+
## TypeScript Usage
11+
12+
```typescript
13+
import { HttpMethod } from '@objectstack/spec/api';
14+
import type { HttpMethod } from '@objectstack/spec/api';
15+
16+
// Validate data
17+
const result = HttpMethod.parse(data);
18+
```
19+
20+
---
21+
22+
## HttpMethod
23+
24+
### Allowed Values
25+
26+
* `GET`
27+
* `POST`
28+
* `PUT`
29+
* `DELETE`
30+
* `PATCH`
31+
* `HEAD`
32+
* `OPTIONS`
33+
34+
35+
---
36+
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"title": "Contracts Protocol",
3+
"pages": []
4+
}

examples/app-crm/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @objectstack/example-crm
22

3+
## 0.9.5
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [a0a6c85]
8+
- Updated dependencies [109fc5b]
9+
- @objectstack/spec@1.0.2
10+
311
## 0.9.4
412

513
### Patch Changes

examples/app-crm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@example/app-crm",
3-
"version": "0.9.4",
3+
"version": "0.9.5",
44
"description": "Example CRM implementation using ObjectStack Protocol",
55
"private": true,
66
"main": "./objectstack.config.ts",

0 commit comments

Comments
 (0)