Skip to content

Commit

Permalink
v conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
rdvo committed Jun 21, 2024
1 parent a8b4407 commit 34809a9
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "consoles-ai",
"version": "0.1.2",
"version": "0.0.63",
"description": "ConsolesAI SDK & CLI tool",
"main": "dist/cjs/index.js",
"module": "dist/index.js",
Expand Down
17 changes: 17 additions & 0 deletions src/types/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ declare module 'hono' {
* ```
*
* @type {string | undefined}
* @see https://consoles.ai/docs/sdk/context#country
*/
country?: string;

Expand All @@ -46,6 +47,7 @@ declare module 'hono' {
* ```
*
* @type {string | undefined}
* @see https://consoles.ai/docs/sdk/context#asn
*/
asn?: string;

Expand All @@ -61,6 +63,7 @@ declare module 'hono' {
* ```
*
* @type {string | undefined}
* @see https://consoles.ai/docs/sdk/context#organization
*/
organization?: string;

Expand All @@ -76,6 +79,7 @@ declare module 'hono' {
* ```
*
* @type {string | undefined}
* @see https://consoles.ai/docs/sdk/context#httpProtocol
*/
httpProtocol?: string;

Expand All @@ -91,6 +95,7 @@ declare module 'hono' {
* ```
*
* @type {string | undefined}
* @see https://consoles.ai/docs/sdk/context#tlsCipher
*/
tlsCipher?: string;

Expand All @@ -106,6 +111,7 @@ declare module 'hono' {
* ```
*
* @type {string | undefined}
* @see https://consoles.ai/docs/sdk/context#tlsVersion
*/
tlsVersion?: string;

Expand All @@ -121,6 +127,7 @@ declare module 'hono' {
* ```
*
* @type {string | undefined}
* @see https://consoles.ai/docs/sdk/context#city
*/
city?: string;

Expand All @@ -136,6 +143,7 @@ declare module 'hono' {
* ```
*
* @type {string | undefined}
* @see https://consoles.ai/docs/sdk/context#continent
*/
continent?: string;

Expand All @@ -151,6 +159,7 @@ declare module 'hono' {
* ```
*
* @type {number | undefined}
* @see https://consoles.ai/docs/sdk/context#latitude
*/
latitude?: number;

Expand All @@ -166,6 +175,7 @@ declare module 'hono' {
* ```
*
* @type {number | undefined}
* @see https://consoles.ai/docs/sdk/context#longitude
*/
longitude?: number;

Expand All @@ -181,6 +191,7 @@ declare module 'hono' {
* ```
*
* @type {string | undefined}
* @see https://consoles.ai/docs/sdk/context#postalCode
*/
postalCode?: string;

Expand All @@ -196,6 +207,7 @@ declare module 'hono' {
* ```
*
* @type {string | undefined}
* @see https://consoles.ai/docs/sdk/context#metroCode
*/
metroCode?: string;

Expand All @@ -211,6 +223,7 @@ declare module 'hono' {
* ```
*
* @type {string | undefined}
* @see https://consoles.ai/docs/sdk/context#timezone
*/
timezone?: string;

Expand All @@ -226,6 +239,7 @@ declare module 'hono' {
* ```
*
* @type {string | undefined}
* @see https://consoles.ai/docs/sdk/context#state
*/
state?: string;

Expand All @@ -241,6 +255,7 @@ declare module 'hono' {
* ```
*
* @type {string | undefined}
* @see https://consoles.ai/docs/sdk/context#datacenter
*/
datacenter?: string;

Expand All @@ -256,6 +271,7 @@ declare module 'hono' {
* ```
*
* @type {string | undefined}
* @see https://consoles.ai/docs/sdk/context#stateCode
*/
stateCode?: string;

Expand All @@ -271,6 +287,7 @@ declare module 'hono' {
* ```
*
* @type {string | undefined}
* @see https://consoles.ai/docs/sdk/context#ip
*/
ip?: string;
}
Expand Down

0 comments on commit 34809a9

Please sign in to comment.