@airdraft/auth 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +41 -0
  2. package/package.json +12 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,46 @@
1
1
  # Changelog
2
2
 
3
+ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
+
5
+ ### [0.1.1](https://github.com/aevrHQ/airdraft/compare/auth@v0.1.0...auth@v0.1.1) (2026-05-23)
6
+
7
+
8
+ ### Features
9
+
10
+ * add Next.js app detection and prompt for app directory in init commands ([2ed1afd](https://github.com/aevrHQ/airdraft/commit/2ed1afdd1ba3142fd50a9bfd4133f01c2ad22ae9))
11
+ * add schema editor plugin and GitHub schema adapter for managing airdraft.schema.json ([46fd7f2](https://github.com/aevrHQ/airdraft/commit/46fd7f271afe8bc562d5f2fe72b94390cb257161))
12
+ * add versioning and changelog support for all packages ([d6c85df](https://github.com/aevrHQ/airdraft/commit/d6c85dfed37f11c42151c93b49a80ede90699616))
13
+ * **cli,core,docs:** implement local filesystem mode with enhanced initialization and error handling ([1848408](https://github.com/aevrHQ/airdraft/commit/1848408738ee3d2bfa0ef532e6dec7a3beef0fb1))
14
+ * **cli:** add CMS client template and optional blog scaffolding to initialization ([cf7bda8](https://github.com/aevrHQ/airdraft/commit/cf7bda8137777aa319acd8edf55fb2cd718a9cd1))
15
+ * **cli:** enhance project initialization templates with schema path support ([a3b20c9](https://github.com/aevrHQ/airdraft/commit/a3b20c9d0dbf0e23594079f1685be8d688e7779b))
16
+ * **client:** add convenience methods for listing and retrieving entries ([c48e3f6](https://github.com/aevrHQ/airdraft/commit/c48e3f6848772bf1ed860785e1e3f9eadffb5ddc))
17
+ * **content:** update content package with new field components and type changes ([e1bd5fa](https://github.com/aevrHQ/airdraft/commit/e1bd5fa8af9b2903024c39a0fa945e49f87754d3))
18
+ * enhance media handling in EntryEditor and SchemaEditor ([e5ea94f](https://github.com/aevrHQ/airdraft/commit/e5ea94f4aa621c0bce96abbeb530674217e14141))
19
+ * enhance media input components and add scoped media adapter for project isolation ([e599cf2](https://github.com/aevrHQ/airdraft/commit/e599cf2c488cf73164d1cb7b1ce479d6005cf923))
20
+ * implement auto-auth and auto-media plugins with environment variable support ([7db0ac6](https://github.com/aevrHQ/airdraft/commit/7db0ac6a326cb291ec138e24bf81448f1dfc4db6))
21
+ * implement terminal UI helpers for improved user interaction ([0e0dca4](https://github.com/aevrHQ/airdraft/commit/0e0dca4a4e06196abea22e99c9a350fdd202a948))
22
+ * **react-ui:** add CMSAdmin component and update related files for new admin functionality ([50f1459](https://github.com/aevrHQ/airdraft/commit/50f14598c268823615f61428ee1e0e399c610630))
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * improve error handling for missing schema file in buildProjectHandler ([4c3d318](https://github.com/aevrHQ/airdraft/commit/4c3d3184c9c454062fd2d9b33fb0593d5e91b71c))
28
+ * update cloud package version to 0.1.4 and enhance audit log persistence logic ([e1fb0e5](https://github.com/aevrHQ/airdraft/commit/e1fb0e5509c7f95c4e659495bcdbd1339da20cea))
29
+ * update package versions and enhance schema cache handling ([7f4f395](https://github.com/aevrHQ/airdraft/commit/7f4f39572168b4e75dd6f1d756ebd5ef2d7ddbe1))
30
+ * update schema URL from airdraft.dev to airdraft.space ([dbace6e](https://github.com/aevrHQ/airdraft/commit/dbace6e13334f915feace70661810d5dc919f69b))
31
+
32
+
33
+ ### Documentation
34
+
35
+ * add Releasing & Publishing section to README ([132193b](https://github.com/aevrHQ/airdraft/commit/132193bebff585ad3223ccb82176c30615f21443))
36
+
37
+
38
+ ### Code Refactoring
39
+
40
+ * code structure for improved readability and maintainability ([6777564](https://github.com/aevrHQ/airdraft/commit/6777564297bb73b703d6922246b86d73dfc4df9a))
41
+
42
+ # Changelog
43
+
3
44
  All notable changes to `@airdraft/auth` will be documented here.
4
45
 
5
46
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@airdraft/auth",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Airdraft authentication utilities — session, API key, embed token",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -11,7 +11,11 @@
11
11
  "types": "./dist/index.d.ts"
12
12
  }
13
13
  },
14
- "files": ["dist", "README.md", "CHANGELOG.md"],
14
+ "files": [
15
+ "dist",
16
+ "README.md",
17
+ "CHANGELOG.md"
18
+ ],
15
19
  "scripts": {
16
20
  "build": "tsc",
17
21
  "dev": "tsc --watch",
@@ -25,7 +29,9 @@
25
29
  "release:minor": "standard-version --release-as minor",
26
30
  "release:major": "standard-version --release-as major"
27
31
  },
28
- "publishConfig": { "access": "public" },
32
+ "publishConfig": {
33
+ "access": "public"
34
+ },
29
35
  "license": "MIT",
30
36
  "devDependencies": {
31
37
  "@types/node": "^20.0.0",
@@ -38,5 +44,7 @@
38
44
  "@airdraft/core": "*",
39
45
  "zod": "^3.23.0"
40
46
  },
41
- "engines": { "node": ">=18.0.0" }
47
+ "engines": {
48
+ "node": ">=18.0.0"
49
+ }
42
50
  }