From 08e2539d8c08e198f84cac16c146293be24b5dba Mon Sep 17 00:00:00 2001 From: mycho2003 Date: Fri, 27 Jun 2025 10:39:46 -0700 Subject: [PATCH 1/2] Change mentions of introduction.mdx to index.mdx --- quickstart.mdx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/quickstart.mdx b/quickstart.mdx index d9e1e62a0..dea8714e5 100644 --- a/quickstart.mdx +++ b/quickstart.mdx @@ -107,9 +107,9 @@ pnpm add -g mint After you set up your environment, you can start editing your documentation files. For example, update the title of the introduction page: -Open your repository created during onboarding, find the `introduction.mdx` file, and find the top of the file: +Open your repository created during onboarding, find the `index.mdx` file, and find the top of the file: -```mdx introduction.mdx +```mdx index.mdx --- title: "Introduction" description: "This is the introduction to the documentation" @@ -118,7 +118,7 @@ description: "This is the introduction to the documentation" Update the `title` field to `"Hello World"`. -```mdx introduction.mdx {2} +```mdx index.mdx {2} --- title: "Hello World" description: "This is the introduction to the documentation" @@ -174,7 +174,7 @@ The web editor workflow provides a what-you-see-is-what-you-get (WYSIWYG) interf In the web editor, you can navigate through your documentation files in the sidebar. Let's update the introduction page: -Find and select `introduction.mdx` in the file explorer. +Find and select `index.mdx` in the file explorer. Then, in the editor, update the title field to "Hello World". From ba8a3af175c7672f862b6a1795199d5b51dfb66e Mon Sep 17 00:00:00 2001 From: mycho2003 Date: Tue, 15 Jul 2025 13:08:54 -0700 Subject: [PATCH 2/2] Remove initial value and edit description of default --- components/fields.mdx | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/components/fields.mdx b/components/fields.mdx index 99d0a2c14..0136d0a0f 100644 --- a/components/fields.mdx +++ b/components/fields.mdx @@ -1,7 +1,7 @@ --- title: "Fields" description: "Set parameters for your API or SDK references" -icon: 'letter-text' +icon: "letter-text" --- There are two types of fields: Parameter Fields and Response Fields. @@ -47,7 +47,8 @@ A `ParamField` component is used to define the parameters for your APIs or SDKs. Supports `number`, `string`, `bool`, `object`. - Arrays can be defined using the `[]` suffix. For example `string[]`. +Arrays can be defined using the `[]` suffix. For example `string[]`. + @@ -59,11 +60,7 @@ A `ParamField` component is used to define the parameters for your APIs or SDKs. - Default value used by the server if the request does not provide a value - - - - Value that will be used to initialize the playground + Default value populated when the request value is empty