-
Notifications
You must be signed in to change notification settings - Fork 529
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/unkeyed/unkey into analytic…
…s-api
- Loading branch information
Showing
13 changed files
with
172 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
# @unkey/web | ||
|
||
## 0.1.40 | ||
|
||
### Patch Changes | ||
|
||
- @unkey/ratelimit@0.5.1 | ||
|
||
## 0.1.39 | ||
|
||
### Patch Changes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
# @unkey/api | ||
|
||
## 0.30.0 | ||
|
||
### Minor Changes | ||
|
||
- 0746b33: Add the types for error codes | ||
|
||
## 0.29.0 | ||
|
||
### Minor Changes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@unkey/api", | ||
"version": "0.29.0", | ||
"version": "0.30.0", | ||
"main": "./dist/index.js", | ||
"module": "./dist/index.mjs", | ||
"types": "./dist/index.d.ts", | ||
|
@@ -9,12 +9,19 @@ | |
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"keywords": ["unkey", "client", "api"], | ||
"keywords": [ | ||
"unkey", | ||
"client", | ||
"api" | ||
], | ||
"bugs": { | ||
"url": "https://github.com/unkeyed/unkey/issues" | ||
}, | ||
"homepage": "https://github.com/unkeyed/unkey#readme", | ||
"files": ["./dist/**", "README.md"], | ||
"files": [ | ||
"./dist/**", | ||
"README.md" | ||
], | ||
"author": "Andreas Thomas <[email protected]>", | ||
"scripts": { | ||
"generate": "openapi-typescript https://api.unkey.dev/openapi.json -o ./src/openapi.d.ts", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,26 @@ | ||
{ | ||
"name": "@unkey/hono", | ||
"version": "1.4.10", | ||
"version": "1.4.11", | ||
"main": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
"license": "MIT", | ||
"private": false, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"keywords": ["unkey", "client", "api", "hono"], | ||
"keywords": [ | ||
"unkey", | ||
"client", | ||
"api", | ||
"hono" | ||
], | ||
"bugs": { | ||
"url": "https://github.com/unkeyed/unkey/issues" | ||
}, | ||
"homepage": "https://github.com/unkeyed/unkey#readme", | ||
"files": ["./dist/**"], | ||
"files": [ | ||
"./dist/**" | ||
], | ||
"author": "Andreas Thomas <[email protected]>", | ||
"scripts": { | ||
"build": "tsup", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,26 @@ | ||
{ | ||
"name": "@unkey/nextjs", | ||
"version": "0.18.3", | ||
"version": "0.18.4", | ||
"main": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
"license": "MIT", | ||
"private": false, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"keywords": ["unkey", "client", "api"], | ||
"keywords": [ | ||
"unkey", | ||
"client", | ||
"api" | ||
], | ||
"bugs": { | ||
"url": "https://github.com/unkeyed/unkey/issues" | ||
}, | ||
"homepage": "https://github.com/unkeyed/unkey#readme", | ||
"files": ["./dist/**", "README.md"], | ||
"files": [ | ||
"./dist/**", | ||
"README.md" | ||
], | ||
"author": "Andreas Thomas <[email protected]>", | ||
"scripts": { | ||
"build": "tsup" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@unkey/ratelimit", | ||
"version": "0.5.0", | ||
"version": "0.5.1", | ||
"main": "./dist/index.js", | ||
"module": "./dist/index.mjs", | ||
"types": "./dist/index.d.ts", | ||
|
@@ -9,12 +9,20 @@ | |
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"keywords": ["unkey", "ratelimit", "global", "serverless"], | ||
"keywords": [ | ||
"unkey", | ||
"ratelimit", | ||
"global", | ||
"serverless" | ||
], | ||
"bugs": { | ||
"url": "https://github.com/unkeyed/unkey/issues" | ||
}, | ||
"homepage": "https://github.com/unkeyed/unkey#readme", | ||
"files": ["./dist/**", "README.md"], | ||
"files": [ | ||
"./dist/**", | ||
"README.md" | ||
], | ||
"author": "Andreas Thomas <[email protected]>", | ||
"scripts": { | ||
"build": "tsup" | ||
|