Skip to content

Commit

Permalink
Fixed paths for hyperifyio heusalagroup/project-heusalagroup.fi#28
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaakko Heusala committed Apr 16, 2024
1 parent 99a384d commit b495d6e
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ See also our [`ProcessUtils`](#processutils) for best practices implementing com

We also provide a Spring Data inspired annotation mechanism for entities and `CrudRepository` implementation.

It's available from [@heusalagroup/fi.hg.repository](https://github.com/heusalagroup/fi.hg.repository).
It's available from [@hyperifyio/io.hyperify.repository](https://github.com/hyperifyio/io.hyperify.repository).

## ProcessUtils

Expand Down
2 changes: 1 addition & 1 deletion com/joker/dmapi/FiHgComJokerDomainManagementAPI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { JokerComApiProfileDTO } from "./types/JokerComApiProfileDTO";
/**
* Joker.com DMAPI client interface
*
* @see https://github.com/heusalagroup/fi.hg.node for NodeJS implementation
* @see https://github.com/hyperifyio/io.hyperify.node for NodeJS implementation
*/
export interface FiHgComJokerDomainManagementAPI {

Expand Down
8 changes: 4 additions & 4 deletions data/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ Code under this core library does not require any external dependencies.

See also:

* [`fi.hg.pg`](https://github.com/heusalagroup/fi.hg.pg) -- The PostgreSQL
* [`io.hyperify.pg`](https://github.com/hyperifyio/io.hyperify.pg) -- The PostgreSQL
persister
* [`fi.hg.mysql`](https://github.com/heusalagroup/fi.hg.mysql) -- The MySQL
* [`io.hyperify.mysql`](https://github.com/hyperifyio/io.hyperify.mysql) -- The MySQL
persister

### It doesn't have any runtime dependencies
Expand Down Expand Up @@ -50,15 +50,15 @@ npm install --save-dev lodash @types/lodash reflect-metadata @types/node
### For PostgreSQL support

```shell
git submodule add git@github.com:heusalagroup/fi.hg.pg.git src/io/hyperify/pg
git submodule add git@github.com:hyperifyio/io.hyperify.pg.git src/io/hyperify/pg
git config -f .gitmodules submodule.src/io/hyperify/pg.branch main
npm install --save pg @types/pg
```

### For MySQL support

```shell
git submodule add git@github.com:heusalagroup/fi.hg.mysql.git src/io/hyperify/mysql
git submodule add git@github.com:hyperifyio/io.hyperify.mysql.git src/io/hyperify/mysql
git config -f .gitmodules submodule.src/io/hyperify/mysql.branch main
npm install --save mysql @types/mysql
```
Expand Down
10 changes: 5 additions & 5 deletions discord/discord/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
**Join our [Discord](https://discord.gg/UBTrHxA78f) to discuss about our software!**

# @heusalagroup/fi.hg.discord
# @hyperifyio/io.hyperify.discord

Lightweight Discord API and Gateway Library for TypeScript and NodeJS.

Expand All @@ -10,7 +10,7 @@ It's still quite experimental and mostly intended for our internal use in our ga

* [NodeJS v14](https://nodejs.org)
* [Lodash](https://lodash.com)
* [WebSocket library `ws`](https://github.com/websockets/ws) -- It's only required for [the `DiscordGateway` implementation](https://github.com/heusalagroup/fi.hg.discord/blob/main/src/DiscordGateway.ts)
* [WebSocket library `ws`](https://github.com/websockets/ws) -- It's only required for [the `DiscordGateway` implementation](https://github.com/hyperifyio/io.hyperify.discord/blob/main/src/DiscordGateway.ts)

### We don't have traditional releases

Expand All @@ -20,7 +20,7 @@ This project evolves directly to our git repository in an agile software develop

```
mkdir -p src/fi/hg
git submodule add git@github.com:heusalagroup/fi.hg.discord.git src/io/hyperify/discord
git submodule add git@github.com:hyperifyio/io.hyperify.discord.git src/io/hyperify/discord
git config -f .gitmodules submodule.src/io/hyperify/discord.branch main
```

Expand All @@ -32,8 +32,8 @@ There isn't much, but look at the source code. *It should be quite readable.*

There's two main files to start from:

* [`DiscordService`](https://github.com/heusalagroup/fi.hg.discord/blob/main/src/DiscordService.ts) is a simple API for Discord's REST calls
* [`DiscordGateway`](https://github.com/heusalagroup/fi.hg.discord/blob/main/src/DiscordGateway.ts) is a [Discord Gateway](https://discord.com/developers/docs/topics/gateway) implementation
* [`DiscordService`](https://github.com/hyperifyio/io.hyperify.discord/blob/main/src/DiscordService.ts) is a simple API for Discord's REST calls
* [`DiscordGateway`](https://github.com/hyperifyio/io.hyperify.discord/blob/main/src/DiscordGateway.ts) is a [Discord Gateway](https://discord.com/developers/docs/topics/gateway) implementation

Since this project is experimental, we might change things later.

Expand Down
4 changes: 2 additions & 2 deletions matrix/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
**Join our [Discord](https://discord.gg/UBTrHxA78f) to discuss about our software!**

# @heusalagroup/fi.hg.matrix
# @hyperifyio/io.hyperify.matrix

Our lightweight Matrix.org library written in TypeScript.

Expand Down Expand Up @@ -33,7 +33,7 @@ mkdir -p src/fi/hg
git submodule add git@github.com:hyperifyio/io.hyperify.core.git src/io/hyperify/core
git config -f .gitmodules submodule.src/io/hyperify/core.branch main
git submodule add git@github.com:heusalagroup/fi.hg.matrix.git src/io/hyperify/matrix
git submodule add git@github.com:hyperifyio/io.hyperify.matrix.git src/io/hyperify/matrix
git config -f .gitmodules submodule.src/io/hyperify/matrix.branch main
```

Expand Down
2 changes: 1 addition & 1 deletion simpleRepository/SimpleMemoryRepository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { explainNot, explainOk } from "../types/explain";
* Intended to be used for development purposes.
*
* See also
* [MatrixCrudRepository](https://github.com/heusalagroup/fi.hg.matrix/blob/main/MatrixCrudRepository.ts)
* [MatrixCrudRepository](https://github.com/hyperifyio/io.hyperify.matrix/blob/main/MatrixCrudRepository.ts)
*/
export class SimpleMemoryRepository<T extends SimpleStoredRepositoryItem> implements SimpleRepository<T> {

Expand Down
4 changes: 2 additions & 2 deletions simpleRepository/types/SimpleRepositoryType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ export enum SimpleRepositoryType {
/**
* Matrix state event repository.
*
* @See [MatrixCrudRepository](https://github.com/heusalagroup/fi.hg.matrix/blob/main/MatrixCrudRepository.ts)
* @See [MatrixCrudRepository](https://github.com/hyperifyio/io.hyperify.matrix/blob/main/MatrixCrudRepository.ts)
*/
MATRIX = "MATRIX",

/**
* PostgreSQL and MySQL supports through SimpleRepositoryAdapter
*
* @See [SimpleRepositoryAdapter](https://github.com/heusalagroup/fi.hg.repository/blob/main/adapters/simple/SimpleRepositoryAdapter.ts)
* @See [SimpleRepositoryAdapter](https://github.com/hyperifyio/io.hyperify.repository/blob/main/adapters/simple/SimpleRepositoryAdapter.ts)
*/
REPOSITORY_ADAPTER = "REPOSITORY_ADAPTER",

Expand Down
2 changes: 1 addition & 1 deletion whois/WhoisService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { WhoisLookupResult } from "./types/WhoisLookupResult";
import { WhoisLookupOptions } from "./types/WhoisLookupOptions";

/**
* @see NodeWhoisService at https://github.com/heusalagroup/fi.hg.node
* @see NodeWhoisService at https://github.com/hyperifyio/io.hyperify.node
* @see example use at https://github.com/heusalagroup/whois.hg.fi/blob/main/src/controllers/FiHgWhoisBackendController.ts#L51
*/
export interface WhoisService {
Expand Down

0 comments on commit b495d6e

Please sign in to comment.