Skip to content

Commit 3408b42

Browse files
committed
Merge branch 'main' into max/ope-236
# Conflicts: # docs/src/content/docs/1.0/guides/make-onetime-payment.mdx # docs/src/content/docs/1.0/guides/make-recurring-payments.mdx # docs/src/content/docs/1.0/guides/outgoing-grant-future-payments.mdx # docs/src/content/docs/1.0/overview/getting-started.mdx # docs/src/content/docs/1.0/resources/get-involved.mdx # docs/src/content/docs/1.0/sdk/before-you-begin.mdx # pnpm-lock.yaml
2 parents c0fcf6f + 62f5f85 commit 3408b42

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+13
-4151
lines changed

.github/workflows/deploy-docs.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ jobs:
2121
steps:
2222
- name: Checkout your repository using git
2323
uses: actions/checkout@v3
24+
with:
25+
submodules: true
2426
- name: Install Node.js
2527
uses: actions/setup-node@v3
2628
with:

docs/astro.config.mjs

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import starlight from '@astrojs/starlight'
33
import starlightOpenAPI from 'starlight-openapi'
44
import starlightLinksValidator from 'starlight-links-validator'
55
import starlightFullViewMode from 'starlight-fullview-mode'
6-
import starlightVersions from 'starlight-versions'
76

87
// https://astro.build/config
98
export default defineConfig({
@@ -77,14 +76,10 @@ export default defineConfig({
7776
errorOnLocalLinks: false,
7877
errorOnFallbackPages: false,
7978
exclude: [
80-
'/apis/{auth-server,resource-server,wallet-address-server}/**/*',
81-
'/1.0/apis/{auth-server,resource-server,wallet-address-server}/**/*'
79+
'/apis/{auth-server,resource-server,wallet-address-server}/**/*'
8280
]
8381
}),
84-
starlightFullViewMode(),
85-
starlightVersions({
86-
versions: [{ slug: '1.0' }]
87-
})
82+
starlightFullViewMode()
8883
],
8984
sidebar: [
9085
{

docs/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@
1818
"shiki": "3.8.0",
1919
"starlight-fullview-mode": "^0.2.3",
2020
"starlight-links-validator": "^0.17.0",
21-
"starlight-openapi": "^0.19.1",
22-
"starlight-versions": "^0.5.4"
21+
"starlight-openapi": "^0.19.1"
2322
},
2423
"devDependencies": {
2524
"@prettier/plugin-php": "^0.24.0"

docs/src/components/Header.astro

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import Search from "@astrojs/starlight/components/Search.astro";
44
import ThemeSelect from "@astrojs/starlight/components/ThemeSelect.astro";
55
import LanguageSelect from '@astrojs/starlight/components/LanguageSelect.astro';
66
import SocialIcons from "@astrojs/starlight/components/SocialIcons.astro";
7-
import VersionSelect from 'starlight-versions/components/VersionSelect.astro';
87
import OpenPaymentsLogo from "../components/OpenPaymentsLogo.astro";
98
---
109
<div class="header sl-flex">
@@ -15,7 +14,6 @@ import OpenPaymentsLogo from "../components/OpenPaymentsLogo.astro";
1514
<Search />
1615
<SocialIcons />
1716
<div class="sl-hidden md:sl-flex">
18-
<VersionSelect />
1917
<ThemeSelect />
2018
</div>
2119
<LanguageSelect />

docs/src/content.config.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
import { defineCollection } from 'astro:content'
22
import { docsLoader } from '@astrojs/starlight/loaders'
33
import { docsSchema, i18nSchema } from '@astrojs/starlight/schema'
4-
import { docsVersionsLoader } from 'starlight-versions/loader'
54

65
export const collections = {
76
docs: defineCollection({ loader: docsLoader(), schema: docsSchema() }),
8-
i18n: defineCollection({ type: 'data', schema: i18nSchema() }),
9-
versions: defineCollection({ loader: docsVersionsLoader() })
7+
i18n: defineCollection({ type: 'data', schema: i18nSchema() })
108
}

docs/src/content/docs/1.0/concepts/auth.mdx

Lines changed: 0 additions & 53 deletions
This file was deleted.

docs/src/content/docs/1.0/concepts/op-flow.mdx

Lines changed: 0 additions & 209 deletions
This file was deleted.

docs/src/content/docs/1.0/concepts/payments.mdx

Lines changed: 0 additions & 31 deletions
This file was deleted.

0 commit comments

Comments
 (0)