Skip to content

Commit d6c40f9

Browse files
build
1 parent ea3cb7d commit d6c40f9

File tree

8 files changed

+22
-0
lines changed

8 files changed

+22
-0
lines changed

apps/portal/src/app/nebula/api-reference/chat/EndpointMetadata.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ export function EndpointMetadata() {
3030
method: "POST",
3131
origin: "https://nebula-api.thirdweb.com",
3232
path: "/chat",
33+
referenceUrl: "https://api.thirdweb.com/reference#tag/ai/ai/chat",
3334
request: {
35+
queryParameters: [],
3436
bodyParameters: [
3537
{
3638
description: "The message to be processed.",

apps/portal/src/app/nebula/api-reference/clear-session/EndpointMetadata.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@ export function EndpointMetadata() {
1515
method: "POST",
1616
origin: "https://nebula-api.thirdweb.com",
1717
path: "/session/{session_id}/clear",
18+
referenceUrl:
19+
"https://api.thirdweb.com/reference#tag/ai/ai/clear-session",
1820
request: {
21+
queryParameters: [],
1922
bodyParameters: [],
2023
headers: [nebulaSecretKeyHeaderParameter],
2124
pathParameters: [nebulaSessionIdPathParameter],

apps/portal/src/app/nebula/api-reference/create-session/EndpointMetadata.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@ export function EndpointMetadata() {
1515
method: "POST",
1616
origin: "https://nebula-api.thirdweb.com",
1717
path: "/session",
18+
referenceUrl:
19+
"https://api.thirdweb.com/reference#tag/ai/ai/create-session",
1820
request: {
21+
queryParameters: [],
1922
bodyParameters: [
2023
{
2124
description: "Set a custom title for the session.",

apps/portal/src/app/nebula/api-reference/delete-session/EndpointMetadata.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@ export function EndpointMetadata() {
2222
method: "DELETE",
2323
origin: "https://nebula-api.thirdweb.com",
2424
path: "/session/{session_id}",
25+
referenceUrl:
26+
"https://api.thirdweb.com/reference#tag/ai/ai/delete-session",
2527
request: {
28+
queryParameters: [],
2629
bodyParameters: [],
2730
headers: [nebulaSecretKeyHeaderParameter],
2831
pathParameters: [nebulaSessionIdPathParameter],

apps/portal/src/app/nebula/api-reference/execute/EndpointMetadata.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ export function EndpointMetadata() {
3636
method: "POST",
3737
origin: "https://nebula-api.thirdweb.com",
3838
path: "/execute",
39+
referenceUrl: "https://api.thirdweb.com/reference#tag/ai/ai/execute",
3940
request: {
41+
queryParameters: [],
4042
bodyParameters: [
4143
{
4244
description: "The message to be processed.",

apps/portal/src/app/nebula/api-reference/get-session/EndpointMetadata.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,13 @@ export function EndpointMetadata() {
1515
method: "GET",
1616
origin: "https://nebula-api.thirdweb.com",
1717
path: "/session/{session_id}",
18+
referenceUrl:
19+
"https://api.thirdweb.com/reference#tag/ai/ai/get-session",
1820
request: {
1921
bodyParameters: [],
2022
headers: [nebulaSecretKeyHeaderParameter],
2123
pathParameters: [nebulaSessionIdPathParameter],
24+
queryParameters: [],
2225
},
2326
responseExamples: {
2427
200: nebulaFullSessionResponse,

apps/portal/src/app/nebula/api-reference/list-session/EndpointMetadata.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,13 @@ export function EndpointMetadata() {
2424
method: "GET",
2525
origin: "https://nebula-api.thirdweb.com",
2626
path: "/session/list",
27+
referenceUrl:
28+
"https://api.thirdweb.com/reference#tag/ai/ai/list-session",
2729
request: {
2830
bodyParameters: [],
2931
headers: [nebulaSecretKeyHeaderParameter],
3032
pathParameters: [],
33+
queryParameters: [],
3134
},
3235
responseExamples: {
3336
200: response200Example,

apps/portal/src/app/nebula/api-reference/update-session/EndpointMetadata.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ export function EndpointMetadata() {
1616
method: "PUT",
1717
origin: "https://nebula-api.thirdweb.com",
1818
path: "/session/{session_id}",
19+
referenceUrl:
20+
"https://api.thirdweb.com/reference#tag/ai/ai/update-session",
1921
request: {
2022
bodyParameters: [
2123
{
@@ -28,6 +30,7 @@ export function EndpointMetadata() {
2830
],
2931
headers: [nebulaSecretKeyHeaderParameter],
3032
pathParameters: [nebulaSessionIdPathParameter],
33+
queryParameters: [],
3134
},
3235
responseExamples: {
3336
200: nebulaFullSessionResponse,

0 commit comments

Comments
 (0)