From 3b05b0adfc29cb8934f986d93899119798e46a7f Mon Sep 17 00:00:00 2001 From: unnoq Date: Fri, 6 Mar 2026 16:39:27 +0700 Subject: [PATCH 1/3] chore: unnoq to dinwwwh --- .github/FUNDING.yml | 2 +- README.md | 4 ++-- apps/content/.vitepress/config.ts | 6 +++--- .../theme/components/AsideSponsors.vue | 4 ++-- .../theme/components/FullSponsors.vue | 4 ++-- .../.vitepress/theme/composables/sponsors.ts | 2 +- apps/content/blog/v1-announcement.md | 6 +++--- apps/content/public/_redirects | 2 +- packages/ai-sdk/README.md | 4 ++-- packages/arktype/README.md | 4 ++-- packages/client/README.md | 4 ++-- .../standard/rpc-json-serializer.test.ts | 12 ++++++------ packages/client/tests/shared.ts | 4 ++-- packages/contract/README.md | 4 ++-- packages/durable-iterator/README.md | 4 ++-- packages/hey-api/README.md | 4 ++-- packages/interop/README.md | 4 ++-- packages/json-schema/README.md | 4 ++-- packages/nest/README.md | 4 ++-- packages/openapi-client/README.md | 4 ++-- .../standard/openapi-json-serializer.test.ts | 16 ++++++++-------- packages/openapi/README.md | 4 ++-- .../adapters/standard/openapi-matcher.test.ts | 18 +++++++++--------- packages/otel/README.md | 4 ++-- packages/pino/README.md | 4 ++-- packages/publisher-durable-object/README.md | 4 ++-- packages/publisher/README.md | 4 ++-- packages/ratelimit/README.md | 4 ++-- packages/react-query/README.md | 4 ++-- packages/react-swr/README.md | 4 ++-- packages/react/README.md | 4 ++-- packages/server/README.md | 4 ++-- packages/shared/README.md | 4 ++-- packages/solid-query/README.md | 4 ++-- packages/standard-server-aws-lambda/README.md | 4 ++-- packages/standard-server-fastify/README.md | 4 ++-- packages/standard-server-fetch/README.md | 4 ++-- packages/standard-server-node/README.md | 4 ++-- packages/standard-server-peer/README.md | 4 ++-- packages/standard-server/README.md | 4 ++-- packages/svelte-query/README.md | 4 ++-- packages/tanstack-query/README.md | 4 ++-- packages/trpc/README.md | 4 ++-- packages/valibot/README.md | 4 ++-- packages/vue-colada/README.md | 4 ++-- packages/vue-query/README.md | 4 ++-- packages/zod/README.md | 4 ++-- playgrounds/astro/README.md | 4 ++-- playgrounds/astro/src/pages/api/[...rest].ts | 2 +- playgrounds/astro/src/pages/rpc/[...rest].ts | 2 +- playgrounds/browser-extension/README.md | 4 ++-- .../entrypoints/background/middlewares/auth.ts | 2 +- playgrounds/bun-websocket-otel/README.md | 4 ++-- .../bun-websocket-otel/src/middlewares/auth.ts | 2 +- playgrounds/cloudflare-worker/README.md | 4 ++-- .../worker/middlewares/auth.ts | 2 +- playgrounds/contract-first/README.md | 4 ++-- playgrounds/electron/README.md | 4 ++-- .../electron/src/main/middlewares/auth.ts | 2 +- playgrounds/nest/README.md | 4 ++-- playgrounds/next/README.md | 4 ++-- .../next/src/app/orpc-server-action.tsx | 2 +- playgrounds/next/src/app/page.tsx | 2 +- playgrounds/next/src/middlewares/auth.ts | 2 +- playgrounds/nuxt/README.md | 4 ++-- playgrounds/solid-start/README.md | 4 ++-- playgrounds/svelte-kit/README.md | 4 ++-- playgrounds/tanstack-start/README.md | 4 ++-- .../tanstack-start/src/middlewares/auth.ts | 2 +- 69 files changed, 144 insertions(+), 144 deletions(-) diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 008c75c77..2304f61bc 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1,6 +1,6 @@ # These are supported funding model platforms -github: [unnoq] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] +github: [dinwwwh] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] patreon: # Replace with a single Patreon username open_collective: # Replace with a single Open Collective username ko_fi: # Replace with a single Ko-fi username diff --git a/README.md b/README.md index 8c95bfd21..0080d4642 100644 --- a/README.md +++ b/README.md @@ -201,8 +201,8 @@ This is a quick overview of how to use oRPC. For more details, please refer to t ## Sponsors

- - + +

diff --git a/apps/content/.vitepress/config.ts b/apps/content/.vitepress/config.ts index 05a2fe088..c75ac0929 100644 --- a/apps/content/.vitepress/config.ts +++ b/apps/content/.vitepress/config.ts @@ -56,8 +56,8 @@ export default withMermaid(defineConfig({ socialLinks: [ { icon: 'github', link: 'https://github.com/middleapi/orpc' }, { icon: 'discord', link: 'https://discord.gg/TXEbwRBvQn' }, - { icon: 'x', link: 'https://x.com/unnoqcom' }, - { icon: 'bluesky', link: 'https://bsky.app/profile/unnoq.com' }, + { icon: 'x', link: 'https://x.com/middleapi' }, + { icon: 'bluesky', link: 'https://bsky.app/profile/middleapi.com' }, ], editLink: { pattern: 'https://github.com/middleapi/orpc/blob/main/apps/content/:path', @@ -76,7 +76,7 @@ export default withMermaid(defineConfig({ text: 'More', items: [ { text: 'Discussions', link: 'https://github.com/middleapi/orpc/discussions' }, - { text: 'Sponsor', link: 'https://github.com/sponsors/unnoq' }, + { text: 'Sponsor', link: 'https://github.com/sponsors/dinwwwh' }, { text: 'Releases', link: 'https://github.com/middleapi/orpc/releases' }, { text: 'LLM Context', link: '/llms.txt' }, { text: 'LLM Context (Full)', link: '/llms-full.txt' }, diff --git a/apps/content/.vitepress/theme/components/AsideSponsors.vue b/apps/content/.vitepress/theme/components/AsideSponsors.vue index 66350c7b0..d7e98eab7 100644 --- a/apps/content/.vitepress/theme/components/AsideSponsors.vue +++ b/apps/content/.vitepress/theme/components/AsideSponsors.vue @@ -14,14 +14,14 @@ const smallSponsors = computed(() => sponsors.value.filter(s => s.rideSidebarSiz