Skip to content

Commit e96bfcb

Browse files
committed
fix: GitHub URLs liqaa-cloud → hartemyaakoub
All SDK repos are actually hosted on hartemyaakoub/* not on the liqaa-cloud organization (which only has a .github repo). Fixed across: intro.md, all 4 SDK pages, identity/connect/developer pillar pages.
1 parent b95520e commit e96bfcb

8 files changed

Lines changed: 26 additions & 26 deletions

File tree

src/content/docs/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ Three steps, all free.
3636

3737
## Open source
3838

39-
Everything you'd want to inspect is on [github.com/hartemyaakoub](https://github.com/hartemyaakoub) and [github.com/liqaa-cloud](https://github.com/liqaa-cloud) — SDKs under MIT, reference apps under AGPL-3.0, OpenAPI spec under Apache-2.0.
39+
Everything you'd want to inspect is on [github.com/hartemyaakoub](https://github.com/hartemyaakoub) and [github.com/hartemyaakoub](https://github.com/hartemyaakoub) — SDKs under MIT, reference apps under AGPL-3.0, OpenAPI spec under Apache-2.0.

src/content/docs/pillars/connect.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,5 +146,5 @@ Signed with HMAC-SHA256 — verify via `X-TKAWEN-Signature`.
146146
## Related
147147

148148
- LIQAA Meet (OSS): [meet.liqaa.io](https://meet.liqaa.io)
149-
- Source: [github.com/liqaa-cloud](https://github.com/liqaa-cloud)
149+
- Source: [github.com/hartemyaakoub](https://github.com/hartemyaakoub)
150150
- Next: [03 · Pay](/pillars/pay/)

src/content/docs/pillars/developer.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,10 @@ Response:
8484

8585
| Language | Install | Repository |
8686
|----------|---------|------------|
87-
| **JavaScript / TypeScript** | `npm install @tkawen/sdk` | [github.com/liqaa-cloud](https://github.com/liqaa-cloud) |
88-
| **PHP / Laravel** | `composer require tkawen/sdk` | [github.com/liqaa-cloud](https://github.com/liqaa-cloud) |
89-
| **Python** | `pip install tkawen` | [github.com/liqaa-cloud](https://github.com/liqaa-cloud) |
90-
| **Go** | `go get github.com/liqaa-cloud/tkawen-go` | [github.com/liqaa-cloud](https://github.com/liqaa-cloud) |
87+
| **JavaScript / TypeScript** | `npm install @tkawen/sdk` | [github.com/hartemyaakoub](https://github.com/hartemyaakoub) |
88+
| **PHP / Laravel** | `composer require tkawen/sdk` | [github.com/hartemyaakoub](https://github.com/hartemyaakoub) |
89+
| **Python** | `pip install tkawen` | [github.com/hartemyaakoub](https://github.com/hartemyaakoub) |
90+
| **Go** | `go get github.com/hartemyaakoub/tkawen-go` | [github.com/hartemyaakoub](https://github.com/hartemyaakoub) |
9191

9292
All under MIT, identical method signatures across languages.
9393

@@ -155,11 +155,11 @@ function verify($payload, $signature, $secret) {
155155

156156
Every repository accepts issues:
157157

158-
- [github.com/liqaa-cloud](https://github.com/liqaa-cloud) — SDKs and specs
158+
- [github.com/hartemyaakoub](https://github.com/hartemyaakoub) — SDKs and specs
159159
- [github.com/hartemyaakoub](https://github.com/hartemyaakoub) — flagship projects
160160

161161
## Related
162162

163163
- Live status: [status.tkawen.com](https://status.tkawen.com)
164-
- Repositories: [github.com/liqaa-cloud](https://github.com/liqaa-cloud)
164+
- Repositories: [github.com/hartemyaakoub](https://github.com/hartemyaakoub)
165165
- Founder: [hartem.tkawen.com](https://hartem.tkawen.com)

src/content/docs/pillars/identity.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ result = tk.identity.verify(
108108
```
109109

110110
```go
111-
import "github.com/liqaa-cloud/tkawen-go"
111+
import "github.com/hartemyaakoub/tkawen-go"
112112
tk := tkawen.New(os.Getenv("TKAWEN_KEY"))
113113

114114
result, err := tk.Identity.Verify(ctx, &tkawen.VerifyRequest{
@@ -145,5 +145,5 @@ A number from 0 to 100 summarising:
145145
## Related
146146

147147
- Live status: [status.tkawen.com](https://status.tkawen.com)
148-
- Spec repo: [github.com/liqaa-cloud](https://github.com/liqaa-cloud)
148+
- Spec repo: [github.com/hartemyaakoub](https://github.com/hartemyaakoub)
149149
- Next: [02 · Connect](/pillars/connect/)

src/content/docs/sdks/go.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: SDK رسميّ لـ TKAWEN بـ Go 1.21+، idiomatic، context-firs
66
## التثبيت
77

88
```bash
9-
go get github.com/liqaa-cloud/tkawen-go
9+
go get github.com/hartemyaakoub/tkawen-go
1010
```
1111

1212
يتطلّب:
@@ -23,7 +23,7 @@ import (
2323
"log"
2424
"os"
2525

26-
"github.com/liqaa-cloud/tkawen-go"
26+
"github.com/hartemyaakoub/tkawen-go"
2727
)
2828

2929
func main() {
@@ -96,7 +96,7 @@ import (
9696
"io"
9797
"net/http"
9898

99-
"github.com/liqaa-cloud/tkawen-go"
99+
"github.com/hartemyaakoub/tkawen-go"
100100
)
101101

102102
var webhookSecret = os.Getenv("TKAWEN_WEBHOOK_SECRET")
@@ -209,7 +209,7 @@ if err := iter.Err(); err != nil {
209209

210210
```bash
211211
# تثبيت
212-
go install github.com/liqaa-cloud/tkawen-go/cmd/tkawen@latest
212+
go install github.com/hartemyaakoub/tkawen-go/cmd/tkawen@latest
213213

214214
# استخدام
215215
tkawen --help
@@ -228,7 +228,7 @@ tkawen --output=json keys list
228228
- `examples/grpc-bridge` — gRPC service يربط TKAWEN بـ internal services
229229

230230
```bash
231-
git clone https://github.com/liqaa-cloud/tkawen-go-examples
231+
git clone https://github.com/hartemyaakoub/tkawen-go-examples
232232
cd tkawen-go-examples/examples/gin-checkout
233233
go run .
234234
```
@@ -237,11 +237,11 @@ go run .
237237

238238
- **آخر إصدار:** v1.0.x
239239
- **Go minimum:** 1.21
240-
- **Changelog:** [github.com/liqaa-cloud/tkawen-go/releases](https://github.com/liqaa-cloud)
240+
- **Changelog:** [github.com/hartemyaakoub/tkawen-go/releases](https://github.com/hartemyaakoub)
241241

242242
## المساهمة
243243

244-
[github.com/liqaa-cloud/tkawen-go](https://github.com/liqaa-cloud) — MIT.
244+
[github.com/hartemyaakoub/tkawen-go](https://github.com/hartemyaakoub) — MIT.
245245

246246
## الدعم
247247

src/content/docs/sdks/javascript.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ repo `tkawen-js-examples` يحوي:
140140
- `examples/video-room-react` — UI لـ LIQAA Cloud
141141

142142
```bash
143-
git clone https://github.com/liqaa-cloud/tkawen-js-examples
143+
git clone https://github.com/hartemyaakoub/tkawen-js-examples
144144
cd tkawen-js-examples/examples/checkout-flow
145145
npm install && npm run dev
146146
```
@@ -149,12 +149,12 @@ npm install && npm run dev
149149

150150
- **آخر إصدار:** 1.0.x
151151
- **Stability:** stable (API frozen)
152-
- **Changelog:** [github.com/liqaa-cloud/tkawen-js/releases](https://github.com/liqaa-cloud)
152+
- **Changelog:** [github.com/hartemyaakoub/tkawen-js/releases](https://github.com/hartemyaakoub)
153153
- **Migration guides:** سيُضاف عند أيّ breaking change
154154

155155
## المساهمة
156156

157-
المستودع مفتوح: [github.com/liqaa-cloud/tkawen-js](https://github.com/liqaa-cloud)
157+
المستودع مفتوح: [github.com/hartemyaakoub/tkawen-js](https://github.com/hartemyaakoub)
158158
- Issues: نقبل bug reports + feature requests
159159
- PRs: نراجع خلال 48 ساعة (Builder/Enterprise يحصلون على أولويّة)
160160
- License: **MIT**

src/content/docs/sdks/php.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ public function panel(Panel $panel): Panel
208208
- `examples/yii-integration` — Yii Framework example
209209

210210
```bash
211-
git clone https://github.com/liqaa-cloud/tkawen-php-examples
211+
git clone https://github.com/hartemyaakoub/tkawen-php-examples
212212
cd tkawen-php-examples/examples/laravel-checkout
213213
composer install && cp .env.example .env && php artisan serve
214214
```
@@ -218,11 +218,11 @@ composer install && cp .env.example .env && php artisan serve
218218
- **آخر إصدار:** 1.0.x
219219
- **PHP minimum:** 8.2
220220
- **Laravel minimum:** 10
221-
- **Changelog:** [github.com/liqaa-cloud/tkawen-php/releases](https://github.com/liqaa-cloud)
221+
- **Changelog:** [github.com/hartemyaakoub/tkawen-php/releases](https://github.com/hartemyaakoub)
222222

223223
## المساهمة
224224

225-
[github.com/liqaa-cloud/tkawen-php](https://github.com/liqaa-cloud) — MIT license.
225+
[github.com/hartemyaakoub/tkawen-php](https://github.com/hartemyaakoub) — MIT license.
226226

227227
## الدعم
228228

src/content/docs/sdks/python.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ tkawen --json keys.list # للـ scripting
212212
- `examples/data-pipeline` — استخراج Pandas + plot Matplotlib
213213

214214
```bash
215-
git clone https://github.com/liqaa-cloud/tkawen-python-examples
215+
git clone https://github.com/hartemyaakoub/tkawen-python-examples
216216
cd tkawen-python-examples/examples/fastapi-checkout
217217
pip install -r requirements.txt
218218
uvicorn main:app --reload
@@ -222,11 +222,11 @@ uvicorn main:app --reload
222222

223223
- **آخر إصدار:** 1.0.x
224224
- **Python minimum:** 3.10
225-
- **Changelog:** [github.com/liqaa-cloud/tkawen-python/releases](https://github.com/liqaa-cloud)
225+
- **Changelog:** [github.com/hartemyaakoub/tkawen-python/releases](https://github.com/hartemyaakoub)
226226

227227
## المساهمة
228228

229-
[github.com/liqaa-cloud/tkawen-python](https://github.com/liqaa-cloud) — MIT.
229+
[github.com/hartemyaakoub/tkawen-python](https://github.com/hartemyaakoub) — MIT.
230230

231231
## الدعم
232232

0 commit comments

Comments
 (0)