Skip to content

Commit 977f297

Browse files
committed
Debug meta issues again
1 parent 00bea68 commit 977f297

File tree

27 files changed

+38
-53
lines changed

27 files changed

+38
-53
lines changed

app/authzed/api/_meta.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1+
import type { MetaRecord } from 'nextra'
2+
13
export default {
24
"grpc-api": {
35
title: "gRPC API Reference",
46
href: "https://buf.build/authzed/api/docs/main:authzed.api.v1",
5-
newWindow: true,
67
},
78
"http-api": {
89
title: "HTTP API Reference",
910
},
1011
"cloud-api": {
1112
title: "Cloud API Reference",
1213
href: "https://www.postman.com/authzed/spicedb/collection/5fm402n/authzed-cloud-api",
13-
newWindow: true,
1414
},
15-
};
15+
} satisfies MetaRecord;

app/authzed/api/http-api/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Swagger } from "../../../components/swagger";
1+
import { Swagger } from "@/components/swagger";
22

33
# HTTP API Documentation
44

app/authzed/concepts/workload-isolation/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import YouTube from "react-youtube";
1+
import YouTube from "@/components/youtube-wrapper";
22

33
# Workload Isolation
44

app/authzed/guides/cloud/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Callout } from "nextra/components";
2-
import YouTube from "react-youtube";
2+
import YouTube from "@/components/youtube-wrapper";
33

44
# Getting Started with AuthZed Cloud
55

app/authzed/links/_meta.ts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,20 @@
1+
import type { MetaRecord } from 'nextra'
2+
13
export default {
24
schedule: {
35
title: "Schedule a Call",
46
href: "https://authzed.com/call?utm_source=docs",
5-
newWindow: true,
67
},
78
changelog: {
89
title: "Changelog",
910
href: "https://changelog.authzed.cloud?utm_source=docs",
10-
newWindow: true,
1111
},
1212
"security-policies": {
1313
title: "Security Policies",
1414
href: "https://security.authzed.com?utm_source=docs",
15-
newWindow: true,
1615
},
1716
status: {
1817
title: "Service Status Page",
1918
href: "https://status.authzed.com?utm_source=docs",
20-
newWindow: true,
2119
},
22-
};
20+
} satisfies MetaRecord;

app/spicedb/api/_meta.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1+
import type { MetaRecord } from 'nextra'
2+
13
export default {
24
"grpc-api": {
35
title: "gRPC API Reference",
46
href: "https://buf.build/authzed/api/docs/main:authzed.api.v1",
5-
newWindow: true,
67
},
78
"http-api": {
89
title: "HTTP API Reference",
910
},
1011
postman: {
1112
title: "Postman Collection",
1213
href: "https://www.postman.com/authzed/workspace/spicedb/overview",
13-
newWindow: true,
1414
},
15-
};
15+
} satisfies MetaRecord;

app/spicedb/api/http-api/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Swagger } from "../../../components/swagger";
1+
import { Swagger } from "@/components/swagger";
22

33
# HTTP API Documentation
44

app/spicedb/concepts/consistency/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import YouTube from "react-youtube";
1+
import YouTube from "@/components/youtube-wrapper";
22
import { Callout } from "nextra/components";
33

44
# Consistency

app/spicedb/concepts/schema/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Callout } from "nextra/components";
2-
import YouTube from "react-youtube";
2+
import YouTube from "@/components/youtube-wrapper";
33
import { InlinePlayground } from "@/components/playground";
44

55
# Schema Language Reference

app/spicedb/concepts/zanzibar/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import YouTube from "react-youtube";
1+
import YouTube from "@/components/youtube-wrapper";
22
import ObjectTypeDiagram from "@/public/images/object-type-regex.svg";
33
import ObjectIDDiagram from "@/public/images/object-id-regex.svg";
44
import { Callout } from "nextra/components";

0 commit comments

Comments
 (0)