@omnicross/subscriptions 0.2.1 → 0.3.0

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 (4) hide show
  1. package/LICENSE +21 -21
  2. package/NOTICE +16 -16
  3. package/README.md +15 -15
  4. package/package.json +3 -3
package/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2026 Sayo
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Sayo
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/NOTICE CHANGED
@@ -1,16 +1,16 @@
1
- @omnicross/subscriptions — THIRD-PARTY NOTICES
2
- ==============================================
3
-
4
- This package contains the subscription-as-provider block (auth strategies,
5
- account service, provider registry, dispatcher, and OpenCodeGo routing) and uses
6
- the following third-party dependency. Its license applies to that dependency.
7
-
8
- --------------------------------------------------------------------------------
9
- 1. js-tiktoken (MIT License)
10
- --------------------------------------------------------------------------------
11
-
12
- `src/opencodego/token-count.ts` lazily imports `js-tiktoken` (cl100k_base
13
- encoding) to estimate input-token counts for OpenCodeGo scenario routing.
14
-
15
- https://github.com/dqbd/tiktoken
16
- Licensed under the MIT License.
1
+ @omnicross/subscriptions — THIRD-PARTY NOTICES
2
+ ==============================================
3
+
4
+ This package contains the subscription-as-provider block (auth strategies,
5
+ account service, provider registry, dispatcher, and OpenCodeGo routing) and uses
6
+ the following third-party dependency. Its license applies to that dependency.
7
+
8
+ --------------------------------------------------------------------------------
9
+ 1. js-tiktoken (MIT License)
10
+ --------------------------------------------------------------------------------
11
+
12
+ `src/opencodego/token-count.ts` lazily imports `js-tiktoken` (cl100k_base
13
+ encoding) to estimate input-token counts for OpenCodeGo scenario routing.
14
+
15
+ https://github.com/dqbd/tiktoken
16
+ Licensed under the MIT License.
package/README.md CHANGED
@@ -1,15 +1,15 @@
1
- # @omnicross/subscriptions
2
-
3
- omnicross subscription-as-provider support — pass-through / OAuth-bearer / static-bearer auth strategies, the Claude / Codex / Gemini OAuth flows, and the OpenCodeGo scenario dispatcher + fallback chain.
4
-
5
- Part of the [omnicross](https://github.com/Dumoedss/omnicross) monorepo — see the root README for the full overview.
6
-
7
- ```bash
8
- npm install @omnicross/subscriptions
9
- ```
10
-
11
- ## License
12
-
13
- [MIT](LICENSE)
14
-
15
- This package adapts third-party work under its own license — see the `NOTICE` file.
1
+ # @omnicross/subscriptions
2
+
3
+ omnicross subscription-as-provider support — pass-through / OAuth-bearer / static-bearer auth strategies, the Claude / Codex / Gemini OAuth flows, and the OpenCodeGo scenario dispatcher + fallback chain.
4
+
5
+ Part of the [omnicross](https://github.com/Dumoedss/omnicross) monorepo — see the root README for the full overview.
6
+
7
+ ```bash
8
+ npm install @omnicross/subscriptions
9
+ ```
10
+
11
+ ## License
12
+
13
+ [MIT](LICENSE)
14
+
15
+ This package adapts third-party work under its own license — see the `NOTICE` file.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@omnicross/subscriptions",
3
- "version": "0.2.1",
3
+ "version": "0.3.0",
4
4
  "description": "Omnicross subscription-as-provider auth strategies, OAuth flows, and the OpenCodeGo scenario dispatcher.",
5
5
  "license": "MIT",
6
6
  "author": "Sayo (https://github.com/Dumoedss)",
@@ -52,8 +52,8 @@
52
52
  "typecheck": "tsc -p tsconfig.typecheck.json --noEmit"
53
53
  },
54
54
  "dependencies": {
55
- "@omnicross/contracts": "^0.2.1",
56
- "@omnicross/core": "^0.2.1",
55
+ "@omnicross/contracts": "^0.3.0",
56
+ "@omnicross/core": "^0.3.0",
57
57
  "js-tiktoken": "^1.0.21",
58
58
  "sharp": "^0.35.4"
59
59
  }