@aexhq/sdk 0.25.2 → 0.26.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 (53) hide show
  1. package/README.md +1 -1
  2. package/dist/_contracts/connection-ticket.d.ts +2 -2
  3. package/dist/_contracts/connection-ticket.js +2 -2
  4. package/dist/_contracts/event-stream-client.d.ts +2 -2
  5. package/dist/_contracts/event-stream-client.js +2 -2
  6. package/dist/_contracts/index.d.ts +1 -0
  7. package/dist/_contracts/index.js +1 -0
  8. package/dist/_contracts/operations.d.ts +13 -1
  9. package/dist/_contracts/operations.js +19 -0
  10. package/dist/_contracts/proxy-protocol.js +1 -1
  11. package/dist/_contracts/runtime-manifest.d.ts +1 -1
  12. package/dist/_contracts/runtime-sizes.d.ts +5 -0
  13. package/dist/_contracts/runtime-sizes.js +3 -1
  14. package/dist/_contracts/runtime-types.d.ts +18 -0
  15. package/dist/_contracts/submission.d.ts +22 -0
  16. package/dist/_contracts/submission.js +38 -0
  17. package/dist/_contracts/webhook-verify.d.ts +34 -0
  18. package/dist/_contracts/webhook-verify.js +94 -0
  19. package/dist/agents-md.d.ts +1 -1
  20. package/dist/agents-md.js +1 -1
  21. package/dist/agents-md.js.map +1 -1
  22. package/dist/asset-upload.js +2 -2
  23. package/dist/asset-upload.js.map +1 -1
  24. package/dist/bundle.d.ts +1 -1
  25. package/dist/bundle.js +2 -2
  26. package/dist/bundle.js.map +1 -1
  27. package/dist/cli.mjs +185 -134
  28. package/dist/cli.mjs.sha256 +1 -1
  29. package/dist/client.d.ts +22 -1
  30. package/dist/client.js +18 -0
  31. package/dist/client.js.map +1 -1
  32. package/dist/fetch-archive.js +2 -2
  33. package/dist/fetch-archive.js.map +1 -1
  34. package/dist/index.d.ts +4 -2
  35. package/dist/index.js +3 -0
  36. package/dist/index.js.map +1 -1
  37. package/dist/node-fs.d.ts +2 -2
  38. package/dist/node-fs.js +2 -2
  39. package/dist/skill.d.ts +2 -2
  40. package/dist/skill.js +2 -2
  41. package/dist/version.d.ts +1 -1
  42. package/dist/version.js +1 -1
  43. package/docs/credentials.md +3 -3
  44. package/docs/defaults.md +70 -0
  45. package/docs/limits-and-quotas.md +108 -0
  46. package/docs/provider-runtime-capabilities.md +1 -1
  47. package/docs/public-surface.json +1 -1
  48. package/docs/quickstart.md +1 -1
  49. package/docs/release.md +69 -101
  50. package/docs/testing.md +10 -9
  51. package/docs/vision-skills.md +2 -2
  52. package/package.json +15 -14
  53. package/LICENSE +0 -201
@@ -3,7 +3,7 @@
3
3
  "productName": "Agent Executor",
4
4
  "oneLine": "aex is an agent execution platform for launching autonomous agents from a simple TypeScript SDK and CLI.",
5
5
  "description": "Submit typed runs, stream durable events, capture outputs, and compose agents with skills, files, MCP, proxy endpoints, and subagents across the managed runtime.",
6
- "installCommand": "npm install @aexhq/sdk",
6
+ "installCommand": "bun add @aexhq/sdk",
7
7
  "examples": {
8
8
  "typescriptLines": [
9
9
  "import { AgentExecutor, Models, Providers } from \"@aexhq/sdk\";",
@@ -7,7 +7,7 @@ title: Quickstart
7
7
  ## 1. Install
8
8
 
9
9
  ```bash
10
- npm install @aexhq/sdk
10
+ bun add @aexhq/sdk
11
11
  ```
12
12
 
13
13
  ## 2. Submit a run
package/docs/release.md CHANGED
@@ -4,79 +4,74 @@ title: Release
4
4
 
5
5
  # Release
6
6
 
7
- Releases are manually dispatched from `.github/workflows/release.yml` after the
8
- target version is already on `main`. The npm package version is the release
9
- source of truth. The workflow publishes to npm and runs post-publish install
10
- checks, but it does not create git tags or GitHub Releases, keeping the remote
11
- repository on a clean `main` branch unless tags are added deliberately later.
12
-
13
- ## How to ship a release (canary validate → promote)
14
-
15
- The default flow publishes a **canary** first, validates it against the real
16
- platform (aex-platform's local + prod cross-service suite installs
17
- `@aexhq/sdk@canary` and exercises it like a user), and only then promotes the
18
- **same bytes** to `latest`. Because npm versions are immutable, the version the
19
- platform tested is byte-for-byte the version users get — there is no second
20
- publish.
21
-
22
- 1. Bump the publishable package manifests to the next shared semver:
23
- `packages/contracts/package.json`, `packages/conformance/package.json`,
24
- `packages/cli/package.json`, and `packages/sdk/package.json`. Also update
25
- `packages/sdk/src/version.ts` to match.
26
- 2. Land the change on `main` with any companion code or docs.
27
- 3. Confirm CI is green.
28
- 4. Run the **Release** workflow from `main` with dist-tag **`canary`**. This
29
- publishes `@aexhq/sdk@<version>` under the `canary` tag — `latest` is
30
- untouched, so `npm install @aexhq/sdk` users are unaffected.
31
- 5. Run the platform release against the canary: in **aex-platform**, dispatch
32
- `deploy.yml` with `sdk_version=<version>` (threads `AEX_USER_TEST_VERSION`
33
- into the suite). The local plane gates prod, and both planes' user-tests run
34
- against `@aexhq/sdk@<version>`.
35
- 6. On a green platform release, run the **Promote** workflow
36
- (`promote.yml`) with `version=<version>`. It runs
37
- `npm dist-tag add @aexhq/{contracts,conformance,cli,sdk}@<version> latest`
38
- a pure re-tag, never a re-publish.
39
-
40
- Shortcut: choosing dist-tag `latest` (or `next`) at step 4 publishes straight to
41
- that tag and skips the canary/promote gate use it only for docs-only or
42
- out-of-band releases where the platform suite is not the gate.
43
-
44
- If any package at `<version>` already exists on npm, the release workflow fails
45
- before publishing (this is also what forbids a re-publish — promotion must be a
46
- re-tag). A failed release is fixed by bumping to a higher version.
47
-
48
- ## Release pipeline
49
-
50
- The workflow has two jobs:
51
-
52
- 1. **`publish`** runs on Ubuntu in the protected `npm-release` environment:
53
- - `pnpm install --frozen-lockfile`
54
- - npm version availability checks for `@aexhq/contracts`,
55
- `@aexhq/conformance`, `@aexhq/cli`, and `@aexhq/sdk` at
56
- `packages/sdk/package.json#version`
57
- - `pnpm lint`
58
- - `pnpm test`
59
- - `pnpm run docs:build`
60
- - `pnpm build`
61
- - `pnpm --filter @aexhq/sdk pack`
62
- - `pnpm run test:user:offline` against the packed tarball
63
- - a final npm version availability check
64
- - `pnpm publish --provenance --no-git-checks --access public` for
65
- `@aexhq/contracts`, `@aexhq/conformance`, `@aexhq/cli`, and `@aexhq/sdk`
66
- 2. **`post-publish-user-tests`** waits for npm registry visibility, then runs
67
- `pnpm run test:user:offline` against the published version on Ubuntu and
68
- Windows.
69
-
70
- The pre-publish user-test gate catches broken package shape, missing CLI bin,
71
- workspace dependency leaks, and TypeScript/ESM install regressions before npm
72
- publish. The post-publish matrix confirms the published registry artifact is
73
- installable from clean user projects on both Linux and Windows.
7
+ The repository is Bun-first. Build, test, docs, package validation, user tests,
8
+ and SDK packaging run through Bun. Registry publication uses npm on the
9
+ Bun-packed SDK tarball so npm provenance and dist-tag controls stay explicit.
10
+
11
+ ## Package gate
12
+
13
+ Before publishing, validate the package locally and in CI:
14
+
15
+ ```text
16
+ bun ci
17
+ bun run lint
18
+ bun run test
19
+ bun run test:user:offline
20
+ bun run docs:build
21
+ bun run pack:sdk
22
+ ```
23
+
24
+ `bun run pack:sdk` builds the SDK, runs a Bun pack dry-run, and runs the public
25
+ boundary gate. Offline user tests install the packed SDK into a clean Bun
26
+ project and exercise the SDK and CLI from that install tree.
27
+
28
+ ## Publish
29
+
30
+ The manual `.github/workflows/release.yml` workflow:
31
+
32
+ - Installs with `bun ci`.
33
+ - Runs lint, unit/security, offline user tests, docs build, and `pack:sdk`.
34
+ - Refuses to publish if `@aexhq/sdk@<package version>` already exists.
35
+ - Packs `packages/sdk` with `bun pm pack`.
36
+ - Runs the publish job in the `npm-release` GitHub Environment and requires its
37
+ `NPM_TOKEN` secret.
38
+ - Publishes the tarball with npm provenance to the selected dist-tag (`canary`
39
+ by default).
40
+ - Waits for npm visibility.
41
+ - Runs live user tests against the exact published version.
42
+
43
+ Publish canary first for release validation. Promote the same immutable version
44
+ only after the downstream platform release gate is green.
45
+
46
+ ## npm credentials
47
+
48
+ The current release path uses a GitHub environment secret:
49
+
50
+ - Environment: `npm-release`
51
+ - Secret name: `NPM_TOKEN`
52
+
53
+ The workflow intentionally fails before `npm publish` if that token is absent.
54
+ Do not remove the `environment: npm-release` binding unless the package has been
55
+ migrated to npm trusted publishing.
56
+
57
+ Trusted publishing is the target credential model, but it is a separate npm
58
+ package setting, not just a workflow permission. Before removing `NPM_TOKEN`,
59
+ configure the npm trusted publisher for `aexhq/aex`, workflow file
60
+ `release.yml`, and environment `npm-release`, then run the workflow with an npm
61
+ CLI version that supports OIDC trusted publishing.
62
+
63
+ ## Promote
64
+
65
+ The manual `.github/workflows/promote.yml` workflow assigns an npm dist-tag to
66
+ an already-published `@aexhq/sdk` version, usually `latest` after canary and
67
+ platform validation. It also runs in `npm-release`, requires `NPM_TOKEN`, and
68
+ does not rebuild or republish the package.
74
69
 
75
70
  ## What ships in the tarball
76
71
 
77
- The published tarball is **self-contained**. It declares **zero `@aexhq/*`
78
- runtime dependencies** and is installable from a clean `npm install @aexhq/sdk`
79
- with no workspace access:
72
+ The SDK tarball is self-contained. It declares zero `@aexhq/*` runtime
73
+ dependencies and is installable from a clean Bun project with no workspace
74
+ access:
80
75
 
81
76
  - `@aexhq/contracts` lives in `packages/sdk/package.json#devDependencies`
82
77
  only. At build time, [`packages/sdk/scripts/inline-contracts.mjs`](../scripts/inline-contracts.mjs)
@@ -89,37 +84,10 @@ with no workspace access:
89
84
  single `dist/cli.mjs`, which is the `bin: aex` entry in
90
85
  `packages/sdk/package.json`.
91
86
  - This invariant is mechanically enforced by
92
- `apps/user-tests/test/offline/install.test.ts` ("declares no @aexhq/*
93
- runtime dependencies") before publish.
94
-
95
- ## Repository setup
96
-
97
- Set `NPM_TOKEN` in the protected GitHub `npm-release` environment. The token must
98
- have publish rights for all four packages. The workflow still publishes with
99
- provenance.
100
-
101
- Trusted Publishing can replace the token after every package exists on npm and
102
- the trusted publisher is configured for each package:
103
-
104
- - **Organization or user**: `aexhq`
105
- - **Repository**: `aex`
106
- - **Workflow filename**: `release.yml`
107
- - **Environment name**: `npm-release`
108
-
109
- ## Local checklist
110
-
111
- Before dispatching a release, the same public-safe checks can be run locally:
112
-
113
- ```text
114
- pnpm lint
115
- pnpm test
116
- pnpm run test:user:offline
117
- pnpm run docs:build
118
- pnpm run pack:sdk
119
- ```
87
+ `apps/user-tests/test/offline/install.test.ts` before publish.
120
88
 
121
89
  ## Rollback
122
90
 
123
- There is no reliable "unpublish and reuse the version" path. npm version numbers
124
- are effectively immutable for release purposes, so a bad release is fixed by
125
- publishing a higher version.
91
+ Published version numbers are immutable. Bad releases are fixed by publishing a
92
+ higher version and moving dist-tags forward; source rollback alone does not
93
+ remove an npm artifact.
package/docs/testing.md CHANGED
@@ -12,17 +12,17 @@ reading or changing implementation.
12
12
  Workspace-wide commands:
13
13
 
14
14
  ```text
15
- pnpm lint # typecheck/build prerequisites + lint
16
- pnpm test # unit, all packages, deterministic
17
- pnpm test:user:offline # clean install of packed/published SDK, no live API
18
- pnpm test:user # live hosted API user tests
19
- pnpm test:user:heavy # explicit heavy live canary
20
- pnpm run docs:build # generated docs + Next build
21
- pnpm run pack:sdk # SDK publish dry-run + public boundary check
15
+ bun run lint # typecheck/build prerequisites + lint
16
+ bun run test # unit, all packages, deterministic
17
+ bun run test:user:offline # clean Bun install of packed/published SDK, no live API
18
+ bun run test:user # live hosted API user tests
19
+ bun run test:user:heavy # explicit heavy live canary
20
+ bun run docs:build # generated docs + Next build
21
+ bun run pack:sdk # SDK pack dry-run + public boundary check
22
22
  ```
23
23
 
24
24
  Unit tests are deterministic and may use fakes. Offline user tests install the
25
- packed or published SDK into clean temp projects and do not need provider
25
+ packed or published SDK into clean Bun temp projects and do not need provider
26
26
  credentials.
27
27
 
28
28
  When neither `AEX_USER_TEST_TARBALL` nor `AEX_USER_TEST_VERSION` is set, the
@@ -31,4 +31,5 @@ that artifact. CI or release validation can pin an explicit artifact with
31
31
  exactly one of `AEX_USER_TEST_TARBALL` or `AEX_USER_TEST_VERSION`.
32
32
 
33
33
  Live user tests run against a hosted aex API and fail loudly when required env
34
- is missing: `AEX_API_URL`, `AEX_API_TOKEN`, and `DEEPSEEK_API_KEY`.
34
+ is missing: `AEX_API_URL`, `AEX_API_TOKEN`, `ANTHROPIC_API_KEY`, and
35
+ `DEEPSEEK_API_KEY`.
@@ -94,7 +94,7 @@ request_body = {
94
94
  ```
95
95
 
96
96
  Write the body to a file and hand it to the mounted CLI with `--data @<file>`
97
- (the mount has no execute bit, so invoke through `node`; see `credentials.md`):
97
+ (the mount has no execute bit, so invoke through `bun`; see `credentials.md`):
98
98
 
99
99
  ```python
100
100
  import subprocess
@@ -102,7 +102,7 @@ body_path = "/workspace/.aex/_ark_request.json"
102
102
  open(body_path, "w").write(json.dumps(request_body))
103
103
 
104
104
  result = subprocess.run(
105
- ["node", "/mnt/session/uploads/aex/aex", "proxy", "doubao-ark",
105
+ ["bun", "/mnt/session/uploads/aex/aex", "proxy", "doubao-ark",
106
106
  "--method", "POST",
107
107
  "--path", "/api/v3/chat/completions",
108
108
  "--header", "content-type=application/json",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aexhq/sdk",
3
- "version": "0.25.2",
3
+ "version": "0.26.1",
4
4
  "description": "TypeScript SDK for running autonomous agent sessions across providers (Anthropic, OpenAI, DeepSeek, Gemini, Mistral) behind one interface.",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -25,23 +25,24 @@
25
25
  "docs",
26
26
  "examples"
27
27
  ],
28
- "devDependencies": {
29
- "@aexhq/contracts": "0.25.2"
30
- },
31
- "engines": {
32
- "node": ">=20"
33
- },
34
- "dependencies": {
35
- "fflate": "0.8.2"
36
- },
37
28
  "scripts": {
38
- "build": "node ./scripts/clean-dist.mjs && pnpm --filter @aexhq/contracts run build && pnpm --filter @aexhq/cli run build && tsc -p tsconfig.build.json && node ./scripts/bundle-cli.mjs && node ./scripts/inline-contracts.mjs",
29
+ "build": "bun ./scripts/clean-dist.mjs && bun run --cwd ../.. --filter @aexhq/contracts build && bun run --cwd ../.. --filter @aexhq/cli build && tsc -p tsconfig.build.json && bun ./scripts/bundle-cli.mjs && bun ./scripts/inline-contracts.mjs",
39
30
  "lint": "tsc --noEmit",
40
- "test": "pnpm test:unit",
31
+ "test": "bun run test:unit",
41
32
  "test:unit": "vitest run test/unit",
42
33
  "test:security": "vitest run test/security",
43
34
  "test:property": "vitest run --passWithNoTests property",
44
35
  "test:coverage": "vitest run --coverage test/unit",
45
- "publish:dry-run": "pnpm publish --dry-run --no-git-checks"
36
+ "prepack": "bun run build",
37
+ "pack:dry-run": "bun pm pack --dry-run --ignore-scripts"
38
+ },
39
+ "devDependencies": {
40
+ "@aexhq/contracts": "0.26.0"
41
+ },
42
+ "engines": {
43
+ "bun": ">=1.3.14"
44
+ },
45
+ "dependencies": {
46
+ "fflate": "0.8.2"
46
47
  }
47
- }
48
+ }
package/LICENSE DELETED
@@ -1,201 +0,0 @@
1
- Apache License
2
- Version 2.0, January 2004
3
- http://www.apache.org/licenses/
4
-
5
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
-
7
- 1. Definitions.
8
-
9
- "License" shall mean the terms and conditions for use, reproduction,
10
- and distribution as defined by Sections 1 through 9 of this document.
11
-
12
- "Licensor" shall mean the copyright owner or entity authorized by
13
- the copyright owner that is granting the License.
14
-
15
- "Legal Entity" shall mean the union of the acting entity and all
16
- other entities that control, are controlled by, or are under common
17
- control with that entity. For the purposes of this definition,
18
- "control" means (i) the power, direct or indirect, to cause the
19
- direction or management of such entity, whether by contract or
20
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
- outstanding shares, or (iii) beneficial ownership of such entity.
22
-
23
- "You" (or "Your") shall mean an individual or Legal Entity
24
- exercising permissions granted by this License.
25
-
26
- "Source" form shall mean the preferred form for making modifications,
27
- including but not limited to software source code, documentation
28
- source, and configuration files.
29
-
30
- "Object" form shall mean any form resulting from mechanical
31
- transformation or translation of a Source form, including but
32
- not limited to compiled object code, generated documentation,
33
- and conversions to other media types.
34
-
35
- "Work" shall mean the work of authorship, whether in Source or
36
- Object form, made available under the License, as indicated by a
37
- copyright notice that is included in or attached to the work
38
- (an example is provided in the Appendix below).
39
-
40
- "Derivative Works" shall mean any work, whether in Source or Object
41
- form, that is based on (or derived from) the Work and for which the
42
- editorial revisions, annotations, elaborations, or other modifications
43
- represent, as a whole, an original work of authorship. For the purposes
44
- of this License, Derivative Works shall not include works that remain
45
- separable from, or merely link (or bind by name) to the interfaces of,
46
- the Work and Derivative Works thereof.
47
-
48
- "Contribution" shall mean any work of authorship, including
49
- the original version of the Work and any modifications or additions
50
- to that Work or Derivative Works thereof, that is intentionally
51
- submitted to Licensor for inclusion in the Work by the copyright owner
52
- or by an individual or Legal Entity authorized to submit on behalf of
53
- the copyright owner. For the purposes of this definition, "submitted"
54
- means any form of electronic, verbal, or written communication sent
55
- to the Licensor or its representatives, including but not limited to
56
- communication on electronic mailing lists, source code control systems,
57
- and issue tracking systems that are managed by, or on behalf of, the
58
- Licensor for the purpose of discussing and improving the Work, but
59
- excluding communication that is conspicuously marked or otherwise
60
- designated in writing by the copyright owner as "Not a Contribution."
61
-
62
- "Contributor" shall mean Licensor and any individual or Legal Entity
63
- on behalf of whom a Contribution has been received by Licensor and
64
- subsequently incorporated within the Work.
65
-
66
- 2. Grant of Copyright License. Subject to the terms and conditions of
67
- this License, each Contributor hereby grants to You a perpetual,
68
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
- copyright license to reproduce, prepare Derivative Works of,
70
- publicly display, publicly perform, sublicense, and distribute the
71
- Work and such Derivative Works in Source or Object form.
72
-
73
- 3. Grant of Patent License. Subject to the terms and conditions of
74
- this License, each Contributor hereby grants to You a perpetual,
75
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
- (except as stated in this section) patent license to make, have made,
77
- use, offer to sell, sell, import, and otherwise transfer the Work,
78
- where such license applies only to those patent claims licensable
79
- by such Contributor that are necessarily infringed by their
80
- Contribution(s) alone or by combination of their Contribution(s)
81
- with the Work to which such Contribution(s) was submitted. If You
82
- institute patent litigation against any entity (including a
83
- cross-claim or counterclaim in a lawsuit) alleging that the Work
84
- or a Contribution incorporated within the Work constitutes direct
85
- or contributory patent infringement, then any patent licenses
86
- granted to You under this License for that Work shall terminate
87
- as of the date such litigation is filed.
88
-
89
- 4. Redistribution. You may reproduce and distribute copies of the
90
- Work or Derivative Works thereof in any medium, with or without
91
- modifications, and in Source or Object form, provided that You
92
- meet the following conditions:
93
-
94
- (a) You must give any other recipients of the Work or
95
- Derivative Works a copy of this License; and
96
-
97
- (b) You must cause any modified files to carry prominent notices
98
- stating that You changed the files; and
99
-
100
- (c) You must retain, in the Source form of any Derivative Works
101
- that You distribute, all copyright, patent, trademark, and
102
- attribution notices from the Source form of the Work,
103
- excluding those notices that do not pertain to any part of
104
- the Derivative Works; and
105
-
106
- (d) If the Work includes a "NOTICE" text file as part of its
107
- distribution, then any Derivative Works that You distribute must
108
- include a readable copy of the attribution notices contained
109
- within such NOTICE file, excluding those notices that do not
110
- pertain to any part of the Derivative Works, in at least one
111
- of the following places: within a NOTICE text file distributed
112
- as part of the Derivative Works; within the Source form or
113
- documentation, if provided along with the Derivative Works; or,
114
- within a display generated by the Derivative Works, if and
115
- wherever such third-party notices normally appear. The contents
116
- of the NOTICE file are for informational purposes only and
117
- do not modify the License. You may add Your own attribution
118
- notices within Derivative Works that You distribute, alongside
119
- or as an addendum to the NOTICE text from the Work, provided
120
- that such additional attribution notices cannot be construed
121
- as modifying the License.
122
-
123
- You may add Your own copyright statement to Your modifications and
124
- may provide additional or different license terms and conditions
125
- for use, reproduction, or distribution of Your modifications, or
126
- for any such Derivative Works as a whole, provided Your use,
127
- reproduction, and distribution of the Work otherwise complies with
128
- the conditions stated in this License.
129
-
130
- 5. Submission of Contributions. Unless You explicitly state otherwise,
131
- any Contribution intentionally submitted for inclusion in the Work
132
- by You to the Licensor shall be under the terms and conditions of
133
- this License, without any additional terms or conditions.
134
- Notwithstanding the above, nothing herein shall supersede or modify
135
- the terms of any separate license agreement you may have executed
136
- with Licensor regarding such Contributions.
137
-
138
- 6. Trademarks. This License does not grant permission to use the trade
139
- names, trademarks, service marks, or product names of the Licensor,
140
- except as required for describing the origin of the Work and
141
- reproducing the content of the NOTICE file.
142
-
143
- 7. Disclaimer of Warranty. Unless required by applicable law or
144
- agreed to in writing, Licensor provides the Work (and each
145
- Contributor provides its Contributions) on an "AS IS" BASIS,
146
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
- implied, including, without limitation, any warranties or conditions
148
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
- PARTICULAR PURPOSE. You are solely responsible for determining the
150
- appropriateness of using or redistributing the Work and assume any
151
- risks associated with Your exercise of permissions under this License.
152
-
153
- 8. Limitation of Liability. In no event and under no legal theory,
154
- whether in tort (including negligence), contract, or otherwise,
155
- unless required by applicable law (such as deliberate and grossly
156
- negligent acts) or agreed to in writing, shall any Contributor be
157
- liable to You for damages, including any direct, indirect, special,
158
- incidental, or consequential damages of any character arising as a
159
- result of this License or out of the use or inability to use the
160
- Work (including but not limited to damages for loss of goodwill,
161
- work stoppage, computer failure or malfunction, or any and all
162
- other commercial damages or losses), even if such Contributor
163
- has been advised of the possibility of such damages.
164
-
165
- 9. Accepting Warranty or Additional Liability. While redistributing
166
- the Work or Derivative Works thereof, You may choose to offer,
167
- and charge a fee for, acceptance of support, warranty, indemnity,
168
- or other liability obligations and/or rights consistent with this
169
- License. However, in accepting such obligations, You may act only
170
- on Your own behalf and on Your sole responsibility, not on behalf
171
- of any other Contributor, and only if You agree to indemnify,
172
- defend, and hold each Contributor harmless for any liability
173
- incurred by, or claims asserted against, such Contributor by reason
174
- of your accepting any such warranty or additional liability.
175
-
176
- END OF TERMS AND CONDITIONS
177
-
178
- APPENDIX: How to apply the Apache License to your work.
179
-
180
- To apply the Apache License to your work, attach the following
181
- boilerplate notice, with the fields enclosed by brackets "[]"
182
- replaced with your own identifying information. (Don't include
183
- the brackets!) The text should be enclosed in the appropriate
184
- comment syntax for the file format. We also recommend that a
185
- file or class name and description of purpose be included on the
186
- same "printed page" as the copyright notice for easier
187
- identification within third-party archives.
188
-
189
- Copyright 2026 aex contributors
190
-
191
- Licensed under the Apache License, Version 2.0 (the "License");
192
- you may not use this file except in compliance with the License.
193
- You may obtain a copy of the License at
194
-
195
- http://www.apache.org/licenses/LICENSE-2.0
196
-
197
- Unless required by applicable law or agreed to in writing, software
198
- distributed under the License is distributed on an "AS IS" BASIS,
199
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
200
- implied. See the License for the specific language governing
201
- permissions and limitations under the License.