Skip to content

Commit

Permalink
Build package
Browse files Browse the repository at this point in the history
  • Loading branch information
zAlweNy26 authored and github-actions[bot] committed Oct 4, 2024
1 parent df6a9e9 commit fdfab3a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions dist/index.d.mts
Original file line number Diff line number Diff line change
Expand Up @@ -681,10 +681,10 @@ interface WebSocketSettings {
onFailed?: (error: SocketError) => void;
}
interface CatSettings {
/** The URL to which connect to the Cat
/** The hostname to which connect to the Cat
* @example 'localhost'
*/
baseUrl: string;
host: string;
/**
* The token or key to authenticate the Cat endpoints
* @default undefined
Expand Down
4 changes: 2 additions & 2 deletions dist/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -681,10 +681,10 @@ interface WebSocketSettings {
onFailed?: (error: SocketError) => void;
}
interface CatSettings {
/** The URL to which connect to the Cat
/** The hostname to which connect to the Cat
* @example 'localhost'
*/
baseUrl: string;
host: string;
/**
* The token or key to authenticate the Cat endpoints
* @default undefined
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1518,7 +1518,7 @@ var CatClient = class {
}
get url() {
return `http${this.config.secure ? "s" : ""}://
${this.config.baseUrl}
${this.config.host}
${this.config.port ? `:${this.config.port}` : ""}
`.replace(/\s/g, "");
}
Expand Down
2 changes: 1 addition & 1 deletion dist/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -1474,7 +1474,7 @@ var CatClient = class {
}
get url() {
return `http${this.config.secure ? "s" : ""}://
${this.config.baseUrl}
${this.config.host}
${this.config.port ? `:${this.config.port}` : ""}
`.replace(/\s/g, "");
}
Expand Down

0 comments on commit fdfab3a

Please sign in to comment.