mirror of
https://github.com/apache/superset.git
synced 2026-05-08 09:25:56 +00:00
fix(docs): regenerate 6.1.0 snapshots with depth-aware import rewriter
The previous import-path fixer only matched two-level relative paths (`../../src/` and `../../data/`), missing files at deeper nesting in the section tree. After the 6.1.0 cut for developer_docs, ~50 component MDX files at depth 3 still referenced `../../../src/components/StorybookWrapper` (should have been `../../../../src/...`), and the components Button page referenced `../../../superset-frontend/...` (should have been `../../../../superset-frontend/...`). The Docusaurus production build failed with module-not-found errors as a result. Replace the pattern-specific regex with a depth-aware walker that - counts the file's nesting depth within the snapshot, - bumps any relative import whose `../` count exceeds that depth (i.e. the import escapes the section root and so must compensate for the extra `version-X.X.X/` directory the snapshot lives under), - skips fenced code blocks so documented sample imports (e.g. Playwright page-object examples in developer_docs/testing/e2e-testing.md) are not rewritten. Re-cut all four sections under the new fixer. yarn build now passes locally.
This commit is contained in:
@@ -0,0 +1 @@
|
||||
{"schema":{"properties":{"cache_timeout":{"type":"string"},"certification_details":{"type":"string"},"certified_by":{"type":"string"},"changed_on_delta_humanized":{"type":"string"},"dashboards":{"items":{"properties":{"dashboard_title":{"type":"string"},"id":{"type":"integer"},"json_metadata":{"type":"string"}},"type":"object","title":"Dashboard"},"type":"array"},"datasource_id":{"type":"integer"},"datasource_name_text":{"readOnly":true},"datasource_type":{"type":"string"},"datasource_url":{"readOnly":true},"datasource_uuid":{"format":"uuid","type":"string"},"description":{"type":"string"},"id":{"description":"The id of the chart.","type":"integer"},"is_managed_externally":{"type":"boolean"},"owners":{"items":{"properties":{"first_name":{"type":"string"},"id":{"type":"integer"},"last_name":{"type":"string"}},"type":"object","title":"User"},"type":"array"},"params":{"type":"string"},"query_context":{"type":"string"},"slice_name":{"type":"string"},"tags":{"items":{"properties":{"id":{"type":"integer"},"name":{"type":"string"},"type":{"enum":[1,2,3,4]}},"type":"object","title":"Tag"},"type":"array"},"thumbnail_url":{"type":"string"},"url":{"type":"string"},"uuid":{"format":"uuid","type":"string"},"viz_type":{"type":"string"}},"type":"object","title":"ChartGetResponseSchema"},"schemaType":"response"}
|
||||
@@ -0,0 +1,31 @@
|
||||
---
|
||||
id: chartgetresponseschema
|
||||
title: "ChartGetResponseSchema"
|
||||
description: ""
|
||||
sidebar_label: "ChartGetResponseSchema"
|
||||
hide_title: true
|
||||
hide_table_of_contents: true
|
||||
schema: true
|
||||
sample: {"cache_timeout":"string","certification_details":"string","certified_by":"string","changed_on_delta_humanized":"string","dashboards":[{"dashboard_title":"string","id":0,"json_metadata":"string"}],"datasource_id":0,"datasource_type":"string","datasource_uuid":"3fa85f64-5717-4562-b3fc-2c963f66afa6","description":"string","id":0,"is_managed_externally":true,"owners":[{"first_name":"string","id":0,"last_name":"string"}],"params":"string","query_context":"string","slice_name":"string","tags":[{"id":0,"name":"string"}],"thumbnail_url":"string","url":"string","uuid":"3fa85f64-5717-4562-b3fc-2c963f66afa6","viz_type":"string"}
|
||||
custom_edit_url: null
|
||||
---
|
||||
|
||||
import Schema from "@theme/Schema";
|
||||
import Heading from "@theme/Heading";
|
||||
|
||||
<Heading
|
||||
as={"h1"}
|
||||
className={"openapi__heading"}
|
||||
children={"ChartGetResponseSchema"}
|
||||
>
|
||||
</Heading>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<Schema
|
||||
{...require("./chartgetresponseschema.Schema.json")}
|
||||
>
|
||||
|
||||
</Schema>
|
||||
@@ -0,0 +1 @@
|
||||
{"schema":{"properties":{"first_name":{"description":"The current user's first name","maxLength":64,"minLength":1,"type":"string"},"last_name":{"description":"The current user's last name","maxLength":64,"minLength":1,"type":"string"},"password":{"description":"The current user's password for authentication","type":"string"}},"type":"object","title":"CurrentUserPutSchema"},"schemaType":"response"}
|
||||
@@ -0,0 +1,31 @@
|
||||
---
|
||||
id: currentuserputschema
|
||||
title: "CurrentUserPutSchema"
|
||||
description: ""
|
||||
sidebar_label: "CurrentUserPutSchema"
|
||||
hide_title: true
|
||||
hide_table_of_contents: true
|
||||
schema: true
|
||||
sample: {"first_name":"string","last_name":"string","password":"string"}
|
||||
custom_edit_url: null
|
||||
---
|
||||
|
||||
import Schema from "@theme/Schema";
|
||||
import Heading from "@theme/Heading";
|
||||
|
||||
<Heading
|
||||
as={"h1"}
|
||||
className={"openapi__heading"}
|
||||
children={"CurrentUserPutSchema"}
|
||||
>
|
||||
</Heading>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<Schema
|
||||
{...require("./currentuserputschema.Schema.json")}
|
||||
>
|
||||
|
||||
</Schema>
|
||||
@@ -0,0 +1 @@
|
||||
{"schema":{"properties":{"dashboard_title":{"type":"string"},"id":{"type":"integer"},"json_metadata":{"type":"string"}},"type":"object","title":"Dashboard"},"schemaType":"response"}
|
||||
@@ -0,0 +1,31 @@
|
||||
---
|
||||
id: dashboard
|
||||
title: "Dashboard"
|
||||
description: ""
|
||||
sidebar_label: "Dashboard"
|
||||
hide_title: true
|
||||
hide_table_of_contents: true
|
||||
schema: true
|
||||
sample: {"dashboard_title":"string","id":0,"json_metadata":"string"}
|
||||
custom_edit_url: null
|
||||
---
|
||||
|
||||
import Schema from "@theme/Schema";
|
||||
import Heading from "@theme/Heading";
|
||||
|
||||
<Heading
|
||||
as={"h1"}
|
||||
className={"openapi__heading"}
|
||||
children={"Dashboard"}
|
||||
>
|
||||
</Heading>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<Schema
|
||||
{...require("./dashboard.Schema.json")}
|
||||
>
|
||||
|
||||
</Schema>
|
||||
@@ -0,0 +1 @@
|
||||
{"schema":{"type":"object","properties":{"deleted":{"type":"array","items":{"type":"string"},"description":"List of deleted chart customization IDs."},"modified":{"type":"array","items":{"type":"object"},"description":"List of modified chart customization configurations."},"reordered":{"type":"array","items":{"type":"string"},"description":"List of chart customization IDs in new order."}},"title":"DashboardChartCustomizationsConfigUpdateSchema"},"schemaType":"response"}
|
||||
@@ -0,0 +1,31 @@
|
||||
---
|
||||
id: dashboardchartcustomizationsconfigupdateschema
|
||||
title: "DashboardChartCustomizationsConfigUpdateSchema"
|
||||
description: ""
|
||||
sidebar_label: "DashboardChartCustomizationsConfigUpdateSchema"
|
||||
hide_title: true
|
||||
hide_table_of_contents: true
|
||||
schema: true
|
||||
sample: {"deleted":["string"],"modified":[{}],"reordered":["string"]}
|
||||
custom_edit_url: null
|
||||
---
|
||||
|
||||
import Schema from "@theme/Schema";
|
||||
import Heading from "@theme/Heading";
|
||||
|
||||
<Heading
|
||||
as={"h1"}
|
||||
className={"openapi__heading"}
|
||||
children={"DashboardChartCustomizationsConfigUpdateSchema"}
|
||||
>
|
||||
</Heading>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<Schema
|
||||
{...require("./dashboardchartcustomizationsconfigupdateschema.Schema.json")}
|
||||
>
|
||||
|
||||
</Schema>
|
||||
@@ -0,0 +1 @@
|
||||
{"schema":{"properties":{"symbol":{"maxLength":128,"minLength":1,"type":"string"},"symbolPosition":{"maxLength":128,"minLength":1,"type":"string"}},"type":"object","title":"DatasetMetricCurrencyPut"},"schemaType":"response"}
|
||||
@@ -0,0 +1,31 @@
|
||||
---
|
||||
id: datasetmetriccurrencyput
|
||||
title: "DatasetMetricCurrencyPut"
|
||||
description: ""
|
||||
sidebar_label: "DatasetMetricCurrencyPut"
|
||||
hide_title: true
|
||||
hide_table_of_contents: true
|
||||
schema: true
|
||||
sample: {"symbol":"string","symbolPosition":"string"}
|
||||
custom_edit_url: null
|
||||
---
|
||||
|
||||
import Schema from "@theme/Schema";
|
||||
import Heading from "@theme/Heading";
|
||||
|
||||
<Heading
|
||||
as={"h1"}
|
||||
className={"openapi__heading"}
|
||||
children={"DatasetMetricCurrencyPut"}
|
||||
>
|
||||
</Heading>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<Schema
|
||||
{...require("./datasetmetriccurrencyput.Schema.json")}
|
||||
>
|
||||
|
||||
</Schema>
|
||||
@@ -0,0 +1 @@
|
||||
{"schema":{"properties":{"id":{"type":"integer"},"name":{"maxLength":64,"type":"string"}},"required":["name"],"type":"object","title":"GroupApi.get_list.Role"},"schemaType":"response"}
|
||||
@@ -0,0 +1,31 @@
|
||||
---
|
||||
id: groupapi-get-list-role
|
||||
title: "GroupApi.get_list.Role"
|
||||
description: ""
|
||||
sidebar_label: "GroupApi.get_list.Role"
|
||||
hide_title: true
|
||||
hide_table_of_contents: true
|
||||
schema: true
|
||||
sample: {"id":0,"name":"string"}
|
||||
custom_edit_url: null
|
||||
---
|
||||
|
||||
import Schema from "@theme/Schema";
|
||||
import Heading from "@theme/Heading";
|
||||
|
||||
<Heading
|
||||
as={"h1"}
|
||||
className={"openapi__heading"}
|
||||
children={"GroupApi.get_list.Role"}
|
||||
>
|
||||
</Heading>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<Schema
|
||||
{...require("./groupapi-get-list-role.Schema.json")}
|
||||
>
|
||||
|
||||
</Schema>
|
||||
@@ -0,0 +1 @@
|
||||
{"schema":{"properties":{"id":{"type":"integer"},"username":{"maxLength":128,"type":"string"}},"required":["username"],"type":"object","title":"GroupApi.get_list.User"},"schemaType":"response"}
|
||||
@@ -0,0 +1,31 @@
|
||||
---
|
||||
id: groupapi-get-list-user
|
||||
title: "GroupApi.get_list.User"
|
||||
description: ""
|
||||
sidebar_label: "GroupApi.get_list.User"
|
||||
hide_title: true
|
||||
hide_table_of_contents: true
|
||||
schema: true
|
||||
sample: {"id":0,"username":"string"}
|
||||
custom_edit_url: null
|
||||
---
|
||||
|
||||
import Schema from "@theme/Schema";
|
||||
import Heading from "@theme/Heading";
|
||||
|
||||
<Heading
|
||||
as={"h1"}
|
||||
className={"openapi__heading"}
|
||||
children={"GroupApi.get_list.User"}
|
||||
>
|
||||
</Heading>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<Schema
|
||||
{...require("./groupapi-get-list-user.Schema.json")}
|
||||
>
|
||||
|
||||
</Schema>
|
||||
@@ -0,0 +1 @@
|
||||
{"schema":{"properties":{"description":{"maxLength":512,"nullable":true,"type":"string"},"id":{"type":"integer"},"label":{"maxLength":150,"nullable":true,"type":"string"},"name":{"maxLength":100,"type":"string"},"roles":{"properties":{"id":{"type":"integer"},"name":{"maxLength":64,"type":"string"}},"required":["name"],"type":"object","title":"GroupApi.get_list.Role"},"users":{"properties":{"id":{"type":"integer"},"username":{"maxLength":128,"type":"string"}},"required":["username"],"type":"object","title":"GroupApi.get_list.User"}},"required":["name"],"type":"object","title":"GroupApi.get_list"},"schemaType":"response"}
|
||||
@@ -0,0 +1,31 @@
|
||||
---
|
||||
id: groupapi-get-list
|
||||
title: "GroupApi.get_list"
|
||||
description: ""
|
||||
sidebar_label: "GroupApi.get_list"
|
||||
hide_title: true
|
||||
hide_table_of_contents: true
|
||||
schema: true
|
||||
sample: {"description":"string","id":0,"label":"string","name":"string","roles":{"id":0,"name":"string"},"users":{"id":0,"username":"string"}}
|
||||
custom_edit_url: null
|
||||
---
|
||||
|
||||
import Schema from "@theme/Schema";
|
||||
import Heading from "@theme/Heading";
|
||||
|
||||
<Heading
|
||||
as={"h1"}
|
||||
className={"openapi__heading"}
|
||||
children={"GroupApi.get_list"}
|
||||
>
|
||||
</Heading>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<Schema
|
||||
{...require("./groupapi-get-list.Schema.json")}
|
||||
>
|
||||
|
||||
</Schema>
|
||||
@@ -0,0 +1 @@
|
||||
{"schema":{"properties":{"id":{"type":"integer"},"name":{"maxLength":64,"type":"string"}},"required":["name"],"type":"object","title":"GroupApi.get.Role"},"schemaType":"response"}
|
||||
@@ -0,0 +1,31 @@
|
||||
---
|
||||
id: groupapi-get-role
|
||||
title: "GroupApi.get.Role"
|
||||
description: ""
|
||||
sidebar_label: "GroupApi.get.Role"
|
||||
hide_title: true
|
||||
hide_table_of_contents: true
|
||||
schema: true
|
||||
sample: {"id":0,"name":"string"}
|
||||
custom_edit_url: null
|
||||
---
|
||||
|
||||
import Schema from "@theme/Schema";
|
||||
import Heading from "@theme/Heading";
|
||||
|
||||
<Heading
|
||||
as={"h1"}
|
||||
className={"openapi__heading"}
|
||||
children={"GroupApi.get.Role"}
|
||||
>
|
||||
</Heading>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<Schema
|
||||
{...require("./groupapi-get-role.Schema.json")}
|
||||
>
|
||||
|
||||
</Schema>
|
||||
@@ -0,0 +1 @@
|
||||
{"schema":{"properties":{"id":{"type":"integer"},"username":{"maxLength":128,"type":"string"}},"required":["username"],"type":"object","title":"GroupApi.get.User"},"schemaType":"response"}
|
||||
@@ -0,0 +1,31 @@
|
||||
---
|
||||
id: groupapi-get-user
|
||||
title: "GroupApi.get.User"
|
||||
description: ""
|
||||
sidebar_label: "GroupApi.get.User"
|
||||
hide_title: true
|
||||
hide_table_of_contents: true
|
||||
schema: true
|
||||
sample: {"id":0,"username":"string"}
|
||||
custom_edit_url: null
|
||||
---
|
||||
|
||||
import Schema from "@theme/Schema";
|
||||
import Heading from "@theme/Heading";
|
||||
|
||||
<Heading
|
||||
as={"h1"}
|
||||
className={"openapi__heading"}
|
||||
children={"GroupApi.get.User"}
|
||||
>
|
||||
</Heading>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<Schema
|
||||
{...require("./groupapi-get-user.Schema.json")}
|
||||
>
|
||||
|
||||
</Schema>
|
||||
@@ -0,0 +1 @@
|
||||
{"schema":{"properties":{"description":{"maxLength":512,"nullable":true,"type":"string"},"id":{"type":"integer"},"label":{"maxLength":150,"nullable":true,"type":"string"},"name":{"maxLength":100,"type":"string"},"roles":{"properties":{"id":{"type":"integer"},"name":{"maxLength":64,"type":"string"}},"required":["name"],"type":"object","title":"GroupApi.get.Role"},"users":{"properties":{"id":{"type":"integer"},"username":{"maxLength":128,"type":"string"}},"required":["username"],"type":"object","title":"GroupApi.get.User"}},"required":["name"],"type":"object","title":"GroupApi.get"},"schemaType":"response"}
|
||||
@@ -0,0 +1,31 @@
|
||||
---
|
||||
id: groupapi-get
|
||||
title: "GroupApi.get"
|
||||
description: ""
|
||||
sidebar_label: "GroupApi.get"
|
||||
hide_title: true
|
||||
hide_table_of_contents: true
|
||||
schema: true
|
||||
sample: {"description":"string","id":0,"label":"string","name":"string","roles":{"id":0,"name":"string"},"users":{"id":0,"username":"string"}}
|
||||
custom_edit_url: null
|
||||
---
|
||||
|
||||
import Schema from "@theme/Schema";
|
||||
import Heading from "@theme/Heading";
|
||||
|
||||
<Heading
|
||||
as={"h1"}
|
||||
className={"openapi__heading"}
|
||||
children={"GroupApi.get"}
|
||||
>
|
||||
</Heading>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<Schema
|
||||
{...require("./groupapi-get.Schema.json")}
|
||||
>
|
||||
|
||||
</Schema>
|
||||
@@ -0,0 +1 @@
|
||||
{"schema":{"properties":{"description":{"description":"Group description","maxLength":512,"minLength":0,"nullable":true,"type":"string"},"label":{"description":"Group label","maxLength":150,"minLength":0,"nullable":true,"type":"string"},"name":{"description":"Group name","maxLength":100,"minLength":1,"type":"string"},"roles":{"description":"Group roles","items":{"type":"integer"},"type":"array"},"users":{"description":"Group users","items":{"type":"integer"},"type":"array"}},"required":["name"],"type":"object","title":"GroupApi.post"},"schemaType":"response"}
|
||||
@@ -0,0 +1,31 @@
|
||||
---
|
||||
id: groupapi-post
|
||||
title: "GroupApi.post"
|
||||
description: ""
|
||||
sidebar_label: "GroupApi.post"
|
||||
hide_title: true
|
||||
hide_table_of_contents: true
|
||||
schema: true
|
||||
sample: {"description":"string","label":"string","name":"string","roles":[0],"users":[0]}
|
||||
custom_edit_url: null
|
||||
---
|
||||
|
||||
import Schema from "@theme/Schema";
|
||||
import Heading from "@theme/Heading";
|
||||
|
||||
<Heading
|
||||
as={"h1"}
|
||||
className={"openapi__heading"}
|
||||
children={"GroupApi.post"}
|
||||
>
|
||||
</Heading>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<Schema
|
||||
{...require("./groupapi-post.Schema.json")}
|
||||
>
|
||||
|
||||
</Schema>
|
||||
@@ -0,0 +1 @@
|
||||
{"schema":{"properties":{"description":{"description":"Group description","maxLength":512,"minLength":0,"nullable":true,"type":"string"},"label":{"description":"Group label","maxLength":150,"minLength":0,"nullable":true,"type":"string"},"name":{"description":"Group name","maxLength":100,"minLength":1,"type":"string"},"roles":{"description":"Group roles","items":{"type":"integer"},"type":"array"},"users":{"description":"Group users","items":{"type":"integer"},"type":"array"}},"type":"object","title":"GroupApi.put"},"schemaType":"response"}
|
||||
@@ -0,0 +1,31 @@
|
||||
---
|
||||
id: groupapi-put
|
||||
title: "GroupApi.put"
|
||||
description: ""
|
||||
sidebar_label: "GroupApi.put"
|
||||
hide_title: true
|
||||
hide_table_of_contents: true
|
||||
schema: true
|
||||
sample: {"description":"string","label":"string","name":"string","roles":[0],"users":[0]}
|
||||
custom_edit_url: null
|
||||
---
|
||||
|
||||
import Schema from "@theme/Schema";
|
||||
import Heading from "@theme/Heading";
|
||||
|
||||
<Heading
|
||||
as={"h1"}
|
||||
className={"openapi__heading"}
|
||||
children={"GroupApi.put"}
|
||||
>
|
||||
</Heading>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<Schema
|
||||
{...require("./groupapi-put.Schema.json")}
|
||||
>
|
||||
|
||||
</Schema>
|
||||
@@ -0,0 +1 @@
|
||||
{"schema":{"properties":{"description":{"description":"Group description","maxLength":512,"minLength":0,"nullable":true,"type":"string"},"label":{"description":"Group label","maxLength":150,"minLength":0,"nullable":true,"type":"string"},"name":{"description":"Group name","maxLength":100,"minLength":1,"type":"string"},"roles":{"description":"Group roles","items":{"type":"integer"},"type":"array"},"users":{"description":"Group users","items":{"type":"integer"},"type":"array"}},"required":["name"],"type":"object","title":"GroupPostSchema"},"schemaType":"response"}
|
||||
@@ -0,0 +1,31 @@
|
||||
---
|
||||
id: grouppostschema
|
||||
title: "GroupPostSchema"
|
||||
description: ""
|
||||
sidebar_label: "GroupPostSchema"
|
||||
hide_title: true
|
||||
hide_table_of_contents: true
|
||||
schema: true
|
||||
sample: {"description":"string","label":"string","name":"string","roles":[0],"users":[0]}
|
||||
custom_edit_url: null
|
||||
---
|
||||
|
||||
import Schema from "@theme/Schema";
|
||||
import Heading from "@theme/Heading";
|
||||
|
||||
<Heading
|
||||
as={"h1"}
|
||||
className={"openapi__heading"}
|
||||
children={"GroupPostSchema"}
|
||||
>
|
||||
</Heading>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<Schema
|
||||
{...require("./grouppostschema.Schema.json")}
|
||||
>
|
||||
|
||||
</Schema>
|
||||
@@ -0,0 +1 @@
|
||||
{"schema":{"properties":{"description":{"description":"Group description","maxLength":512,"minLength":0,"nullable":true,"type":"string"},"label":{"description":"Group label","maxLength":150,"minLength":0,"nullable":true,"type":"string"},"name":{"description":"Group name","maxLength":100,"minLength":1,"type":"string"},"roles":{"description":"Group roles","items":{"type":"integer"},"type":"array"},"users":{"description":"Group users","items":{"type":"integer"},"type":"array"}},"type":"object","title":"GroupPutSchema"},"schemaType":"response"}
|
||||
@@ -0,0 +1,31 @@
|
||||
---
|
||||
id: groupputschema
|
||||
title: "GroupPutSchema"
|
||||
description: ""
|
||||
sidebar_label: "GroupPutSchema"
|
||||
hide_title: true
|
||||
hide_table_of_contents: true
|
||||
schema: true
|
||||
sample: {"description":"string","label":"string","name":"string","roles":[0],"users":[0]}
|
||||
custom_edit_url: null
|
||||
---
|
||||
|
||||
import Schema from "@theme/Schema";
|
||||
import Heading from "@theme/Heading";
|
||||
|
||||
<Heading
|
||||
as={"h1"}
|
||||
className={"openapi__heading"}
|
||||
children={"GroupPutSchema"}
|
||||
>
|
||||
</Heading>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<Schema
|
||||
{...require("./groupputschema.Schema.json")}
|
||||
>
|
||||
|
||||
</Schema>
|
||||
@@ -0,0 +1 @@
|
||||
{"schema":{"properties":{"group_ids":{"description":"List of group ids","items":{"type":"integer"},"type":"array"}},"required":["group_ids"],"type":"object","title":"RoleGroupPutSchema"},"schemaType":"response"}
|
||||
@@ -0,0 +1,31 @@
|
||||
---
|
||||
id: rolegroupputschema
|
||||
title: "RoleGroupPutSchema"
|
||||
description: ""
|
||||
sidebar_label: "RoleGroupPutSchema"
|
||||
hide_title: true
|
||||
hide_table_of_contents: true
|
||||
schema: true
|
||||
sample: {"group_ids":[0]}
|
||||
custom_edit_url: null
|
||||
---
|
||||
|
||||
import Schema from "@theme/Schema";
|
||||
import Heading from "@theme/Heading";
|
||||
|
||||
<Heading
|
||||
as={"h1"}
|
||||
className={"openapi__heading"}
|
||||
children={"RoleGroupPutSchema"}
|
||||
>
|
||||
</Heading>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<Schema
|
||||
{...require("./rolegroupputschema.Schema.json")}
|
||||
>
|
||||
|
||||
</Schema>
|
||||
@@ -0,0 +1 @@
|
||||
{"schema":{"properties":{"description":{"maxLength":512,"nullable":true,"type":"string"},"id":{"type":"integer"},"label":{"maxLength":150,"nullable":true,"type":"string"},"name":{"maxLength":100,"type":"string"}},"required":["name"],"type":"object","title":"SupersetUserApi.get.Group"},"schemaType":"response"}
|
||||
@@ -0,0 +1,31 @@
|
||||
---
|
||||
id: supersetuserapi-get-group
|
||||
title: "SupersetUserApi.get.Group"
|
||||
description: ""
|
||||
sidebar_label: "SupersetUserApi.get.Group"
|
||||
hide_title: true
|
||||
hide_table_of_contents: true
|
||||
schema: true
|
||||
sample: {"description":"string","id":0,"label":"string","name":"string"}
|
||||
custom_edit_url: null
|
||||
---
|
||||
|
||||
import Schema from "@theme/Schema";
|
||||
import Heading from "@theme/Heading";
|
||||
|
||||
<Heading
|
||||
as={"h1"}
|
||||
className={"openapi__heading"}
|
||||
children={"SupersetUserApi.get.Group"}
|
||||
>
|
||||
</Heading>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<Schema
|
||||
{...require("./supersetuserapi-get-group.Schema.json")}
|
||||
>
|
||||
|
||||
</Schema>
|
||||
@@ -0,0 +1 @@
|
||||
{"schema":{"properties":{"description":{"maxLength":512,"nullable":true,"type":"string"},"id":{"type":"integer"},"label":{"maxLength":150,"nullable":true,"type":"string"},"name":{"maxLength":100,"type":"string"}},"required":["name"],"type":"object","title":"SupersetUserApi.get_list.Group"},"schemaType":"response"}
|
||||
@@ -0,0 +1,31 @@
|
||||
---
|
||||
id: supersetuserapi-get-list-group
|
||||
title: "SupersetUserApi.get_list.Group"
|
||||
description: ""
|
||||
sidebar_label: "SupersetUserApi.get_list.Group"
|
||||
hide_title: true
|
||||
hide_table_of_contents: true
|
||||
schema: true
|
||||
sample: {"description":"string","id":0,"label":"string","name":"string"}
|
||||
custom_edit_url: null
|
||||
---
|
||||
|
||||
import Schema from "@theme/Schema";
|
||||
import Heading from "@theme/Heading";
|
||||
|
||||
<Heading
|
||||
as={"h1"}
|
||||
className={"openapi__heading"}
|
||||
children={"SupersetUserApi.get_list.Group"}
|
||||
>
|
||||
</Heading>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<Schema
|
||||
{...require("./supersetuserapi-get-list-group.Schema.json")}
|
||||
>
|
||||
|
||||
</Schema>
|
||||
@@ -0,0 +1 @@
|
||||
{"schema":{"properties":{"id":{"type":"integer"},"name":{"type":"string"},"type":{"enum":[1,2,3,4]}},"type":"object","title":"Tag1"},"schemaType":"response"}
|
||||
@@ -0,0 +1,31 @@
|
||||
---
|
||||
id: tag-1
|
||||
title: "Tag1"
|
||||
description: ""
|
||||
sidebar_label: "Tag1"
|
||||
hide_title: true
|
||||
hide_table_of_contents: true
|
||||
schema: true
|
||||
sample: {"id":0,"name":"string"}
|
||||
custom_edit_url: null
|
||||
---
|
||||
|
||||
import Schema from "@theme/Schema";
|
||||
import Heading from "@theme/Heading";
|
||||
|
||||
<Heading
|
||||
as={"h1"}
|
||||
className={"openapi__heading"}
|
||||
children={"Tag1"}
|
||||
>
|
||||
</Heading>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<Schema
|
||||
{...require("./tag-1.Schema.json")}
|
||||
>
|
||||
|
||||
</Schema>
|
||||
@@ -0,0 +1 @@
|
||||
{"schema":{"properties":{"id":{"type":"integer"},"json_data":{"type":"string"},"theme_name":{"type":"string"}},"type":"object","title":"Theme"},"schemaType":"response"}
|
||||
@@ -0,0 +1,31 @@
|
||||
---
|
||||
id: theme
|
||||
title: "Theme"
|
||||
description: ""
|
||||
sidebar_label: "Theme"
|
||||
hide_title: true
|
||||
hide_table_of_contents: true
|
||||
schema: true
|
||||
sample: {"id":0,"json_data":"string","theme_name":"string"}
|
||||
custom_edit_url: null
|
||||
---
|
||||
|
||||
import Schema from "@theme/Schema";
|
||||
import Heading from "@theme/Heading";
|
||||
|
||||
<Heading
|
||||
as={"h1"}
|
||||
className={"openapi__heading"}
|
||||
children={"Theme"}
|
||||
>
|
||||
</Heading>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<Schema
|
||||
{...require("./theme.Schema.json")}
|
||||
>
|
||||
|
||||
</Schema>
|
||||
@@ -0,0 +1 @@
|
||||
{"schema":{"properties":{"first_name":{"maxLength":64,"type":"string"},"id":{"type":"integer"},"last_name":{"maxLength":64,"type":"string"}},"required":["first_name","last_name"],"type":"object","title":"ThemeRestApi.get_list.User1"},"schemaType":"response"}
|
||||
@@ -0,0 +1,31 @@
|
||||
---
|
||||
id: themerestapi-get-list-user-1
|
||||
title: "ThemeRestApi.get_list.User1"
|
||||
description: ""
|
||||
sidebar_label: "ThemeRestApi.get_list.User1"
|
||||
hide_title: true
|
||||
hide_table_of_contents: true
|
||||
schema: true
|
||||
sample: {"first_name":"string","id":0,"last_name":"string"}
|
||||
custom_edit_url: null
|
||||
---
|
||||
|
||||
import Schema from "@theme/Schema";
|
||||
import Heading from "@theme/Heading";
|
||||
|
||||
<Heading
|
||||
as={"h1"}
|
||||
className={"openapi__heading"}
|
||||
children={"ThemeRestApi.get_list.User1"}
|
||||
>
|
||||
</Heading>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<Schema
|
||||
{...require("./themerestapi-get-list-user-1.Schema.json")}
|
||||
>
|
||||
|
||||
</Schema>
|
||||
@@ -0,0 +1 @@
|
||||
{"schema":{"properties":{"first_name":{"maxLength":64,"type":"string"},"id":{"type":"integer"},"last_name":{"maxLength":64,"type":"string"}},"required":["first_name","last_name"],"type":"object","title":"ThemeRestApi.get_list.User"},"schemaType":"response"}
|
||||
@@ -0,0 +1,31 @@
|
||||
---
|
||||
id: themerestapi-get-list-user
|
||||
title: "ThemeRestApi.get_list.User"
|
||||
description: ""
|
||||
sidebar_label: "ThemeRestApi.get_list.User"
|
||||
hide_title: true
|
||||
hide_table_of_contents: true
|
||||
schema: true
|
||||
sample: {"first_name":"string","id":0,"last_name":"string"}
|
||||
custom_edit_url: null
|
||||
---
|
||||
|
||||
import Schema from "@theme/Schema";
|
||||
import Heading from "@theme/Heading";
|
||||
|
||||
<Heading
|
||||
as={"h1"}
|
||||
className={"openapi__heading"}
|
||||
children={"ThemeRestApi.get_list.User"}
|
||||
>
|
||||
</Heading>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<Schema
|
||||
{...require("./themerestapi-get-list-user.Schema.json")}
|
||||
>
|
||||
|
||||
</Schema>
|
||||
@@ -0,0 +1 @@
|
||||
{"schema":{"properties":{"changed_by":{"properties":{"first_name":{"maxLength":64,"type":"string"},"id":{"type":"integer"},"last_name":{"maxLength":64,"type":"string"}},"required":["first_name","last_name"],"type":"object","title":"ThemeRestApi.get_list.User"},"changed_by_name":{"readOnly":true},"changed_on_delta_humanized":{"readOnly":true},"created_by":{"properties":{"first_name":{"maxLength":64,"type":"string"},"id":{"type":"integer"},"last_name":{"maxLength":64,"type":"string"}},"required":["first_name","last_name"],"type":"object","title":"ThemeRestApi.get_list.User1"},"created_on":{"format":"date-time","nullable":true,"type":"string"},"id":{"type":"integer"},"is_system":{"type":"boolean"},"is_system_dark":{"type":"boolean"},"is_system_default":{"type":"boolean"},"json_data":{"nullable":true,"type":"string"},"theme_name":{"maxLength":250,"nullable":true,"type":"string"},"uuid":{"format":"uuid","nullable":true,"type":"string"}},"type":"object","title":"ThemeRestApi.get_list"},"schemaType":"response"}
|
||||
@@ -0,0 +1,31 @@
|
||||
---
|
||||
id: themerestapi-get-list
|
||||
title: "ThemeRestApi.get_list"
|
||||
description: ""
|
||||
sidebar_label: "ThemeRestApi.get_list"
|
||||
hide_title: true
|
||||
hide_table_of_contents: true
|
||||
schema: true
|
||||
sample: {"changed_by":{"first_name":"string","id":0,"last_name":"string"},"created_by":{"first_name":"string","id":0,"last_name":"string"},"created_on":"2024-07-29T15:51:28.071Z","id":0,"is_system":true,"is_system_dark":true,"is_system_default":true,"json_data":"string","theme_name":"string","uuid":"3fa85f64-5717-4562-b3fc-2c963f66afa6"}
|
||||
custom_edit_url: null
|
||||
---
|
||||
|
||||
import Schema from "@theme/Schema";
|
||||
import Heading from "@theme/Heading";
|
||||
|
||||
<Heading
|
||||
as={"h1"}
|
||||
className={"openapi__heading"}
|
||||
children={"ThemeRestApi.get_list"}
|
||||
>
|
||||
</Heading>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<Schema
|
||||
{...require("./themerestapi-get-list.Schema.json")}
|
||||
>
|
||||
|
||||
</Schema>
|
||||
@@ -0,0 +1 @@
|
||||
{"schema":{"properties":{"first_name":{"maxLength":64,"type":"string"},"id":{"type":"integer"},"last_name":{"maxLength":64,"type":"string"}},"required":["first_name","last_name"],"type":"object","title":"ThemeRestApi.get.User1"},"schemaType":"response"}
|
||||
@@ -0,0 +1,31 @@
|
||||
---
|
||||
id: themerestapi-get-user-1
|
||||
title: "ThemeRestApi.get.User1"
|
||||
description: ""
|
||||
sidebar_label: "ThemeRestApi.get.User1"
|
||||
hide_title: true
|
||||
hide_table_of_contents: true
|
||||
schema: true
|
||||
sample: {"first_name":"string","id":0,"last_name":"string"}
|
||||
custom_edit_url: null
|
||||
---
|
||||
|
||||
import Schema from "@theme/Schema";
|
||||
import Heading from "@theme/Heading";
|
||||
|
||||
<Heading
|
||||
as={"h1"}
|
||||
className={"openapi__heading"}
|
||||
children={"ThemeRestApi.get.User1"}
|
||||
>
|
||||
</Heading>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<Schema
|
||||
{...require("./themerestapi-get-user-1.Schema.json")}
|
||||
>
|
||||
|
||||
</Schema>
|
||||
@@ -0,0 +1 @@
|
||||
{"schema":{"properties":{"first_name":{"maxLength":64,"type":"string"},"id":{"type":"integer"},"last_name":{"maxLength":64,"type":"string"}},"required":["first_name","last_name"],"type":"object","title":"ThemeRestApi.get.User"},"schemaType":"response"}
|
||||
@@ -0,0 +1,31 @@
|
||||
---
|
||||
id: themerestapi-get-user
|
||||
title: "ThemeRestApi.get.User"
|
||||
description: ""
|
||||
sidebar_label: "ThemeRestApi.get.User"
|
||||
hide_title: true
|
||||
hide_table_of_contents: true
|
||||
schema: true
|
||||
sample: {"first_name":"string","id":0,"last_name":"string"}
|
||||
custom_edit_url: null
|
||||
---
|
||||
|
||||
import Schema from "@theme/Schema";
|
||||
import Heading from "@theme/Heading";
|
||||
|
||||
<Heading
|
||||
as={"h1"}
|
||||
className={"openapi__heading"}
|
||||
children={"ThemeRestApi.get.User"}
|
||||
>
|
||||
</Heading>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<Schema
|
||||
{...require("./themerestapi-get-user.Schema.json")}
|
||||
>
|
||||
|
||||
</Schema>
|
||||
@@ -0,0 +1 @@
|
||||
{"schema":{"properties":{"changed_by":{"properties":{"first_name":{"maxLength":64,"type":"string"},"id":{"type":"integer"},"last_name":{"maxLength":64,"type":"string"}},"required":["first_name","last_name"],"type":"object","title":"ThemeRestApi.get.User"},"changed_on_delta_humanized":{"readOnly":true},"created_by":{"properties":{"first_name":{"maxLength":64,"type":"string"},"id":{"type":"integer"},"last_name":{"maxLength":64,"type":"string"}},"required":["first_name","last_name"],"type":"object","title":"ThemeRestApi.get.User1"},"id":{"type":"integer"},"is_system":{"type":"boolean"},"is_system_dark":{"type":"boolean"},"is_system_default":{"type":"boolean"},"json_data":{"nullable":true,"type":"string"},"theme_name":{"maxLength":250,"nullable":true,"type":"string"},"uuid":{"format":"uuid","nullable":true,"type":"string"}},"type":"object","title":"ThemeRestApi.get"},"schemaType":"response"}
|
||||
@@ -0,0 +1,31 @@
|
||||
---
|
||||
id: themerestapi-get
|
||||
title: "ThemeRestApi.get"
|
||||
description: ""
|
||||
sidebar_label: "ThemeRestApi.get"
|
||||
hide_title: true
|
||||
hide_table_of_contents: true
|
||||
schema: true
|
||||
sample: {"changed_by":{"first_name":"string","id":0,"last_name":"string"},"created_by":{"first_name":"string","id":0,"last_name":"string"},"id":0,"is_system":true,"is_system_dark":true,"is_system_default":true,"json_data":"string","theme_name":"string","uuid":"3fa85f64-5717-4562-b3fc-2c963f66afa6"}
|
||||
custom_edit_url: null
|
||||
---
|
||||
|
||||
import Schema from "@theme/Schema";
|
||||
import Heading from "@theme/Heading";
|
||||
|
||||
<Heading
|
||||
as={"h1"}
|
||||
className={"openapi__heading"}
|
||||
children={"ThemeRestApi.get"}
|
||||
>
|
||||
</Heading>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<Schema
|
||||
{...require("./themerestapi-get.Schema.json")}
|
||||
>
|
||||
|
||||
</Schema>
|
||||
@@ -0,0 +1 @@
|
||||
{"schema":{"properties":{"json_data":{"type":"string"},"theme_name":{"type":"string"}},"required":["json_data","theme_name"],"type":"object","title":"ThemeRestApi.post"},"schemaType":"response"}
|
||||
@@ -0,0 +1,31 @@
|
||||
---
|
||||
id: themerestapi-post
|
||||
title: "ThemeRestApi.post"
|
||||
description: ""
|
||||
sidebar_label: "ThemeRestApi.post"
|
||||
hide_title: true
|
||||
hide_table_of_contents: true
|
||||
schema: true
|
||||
sample: {"json_data":"string","theme_name":"string"}
|
||||
custom_edit_url: null
|
||||
---
|
||||
|
||||
import Schema from "@theme/Schema";
|
||||
import Heading from "@theme/Heading";
|
||||
|
||||
<Heading
|
||||
as={"h1"}
|
||||
className={"openapi__heading"}
|
||||
children={"ThemeRestApi.post"}
|
||||
>
|
||||
</Heading>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<Schema
|
||||
{...require("./themerestapi-post.Schema.json")}
|
||||
>
|
||||
|
||||
</Schema>
|
||||
@@ -0,0 +1 @@
|
||||
{"schema":{"properties":{"json_data":{"type":"string"},"theme_name":{"type":"string"}},"required":["json_data","theme_name"],"type":"object","title":"ThemeRestApi.put"},"schemaType":"response"}
|
||||
@@ -0,0 +1,31 @@
|
||||
---
|
||||
id: themerestapi-put
|
||||
title: "ThemeRestApi.put"
|
||||
description: ""
|
||||
sidebar_label: "ThemeRestApi.put"
|
||||
hide_title: true
|
||||
hide_table_of_contents: true
|
||||
schema: true
|
||||
sample: {"json_data":"string","theme_name":"string"}
|
||||
custom_edit_url: null
|
||||
---
|
||||
|
||||
import Schema from "@theme/Schema";
|
||||
import Heading from "@theme/Heading";
|
||||
|
||||
<Heading
|
||||
as={"h1"}
|
||||
className={"openapi__heading"}
|
||||
children={"ThemeRestApi.put"}
|
||||
>
|
||||
</Heading>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<Schema
|
||||
{...require("./themerestapi-put.Schema.json")}
|
||||
>
|
||||
|
||||
</Schema>
|
||||
@@ -0,0 +1 @@
|
||||
{"schema":{"properties":{"first_name":{"type":"string"},"last_name":{"type":"string"},"username":{"type":"string"}},"type":"object","title":"User3"},"schemaType":"response"}
|
||||
@@ -0,0 +1,31 @@
|
||||
---
|
||||
id: user-3
|
||||
title: "User3"
|
||||
description: ""
|
||||
sidebar_label: "User3"
|
||||
hide_title: true
|
||||
hide_table_of_contents: true
|
||||
schema: true
|
||||
sample: {"first_name":"string","last_name":"string","username":"string"}
|
||||
custom_edit_url: null
|
||||
---
|
||||
|
||||
import Schema from "@theme/Schema";
|
||||
import Heading from "@theme/Heading";
|
||||
|
||||
<Heading
|
||||
as={"h1"}
|
||||
className={"openapi__heading"}
|
||||
children={"User3"}
|
||||
>
|
||||
</Heading>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<Schema
|
||||
{...require("./user-3.Schema.json")}
|
||||
>
|
||||
|
||||
</Schema>
|
||||
@@ -0,0 +1 @@
|
||||
{"schema":{"properties":{"email":{"maxLength":320,"type":"string"},"first_name":{"maxLength":64,"type":"string"},"id":{"type":"integer"},"last_name":{"maxLength":64,"type":"string"},"registration_date":{"format":"date-time","nullable":true,"type":"string"},"registration_hash":{"maxLength":256,"nullable":true,"type":"string"},"username":{"maxLength":128,"type":"string"}},"required":["email","first_name","last_name","username"],"type":"object","title":"UserRegistrationsRestAPI.get_list"},"schemaType":"response"}
|
||||
@@ -0,0 +1,31 @@
|
||||
---
|
||||
id: userregistrationsrestapi-get-list
|
||||
title: "UserRegistrationsRestAPI.get_list"
|
||||
description: ""
|
||||
sidebar_label: "UserRegistrationsRestAPI.get_list"
|
||||
hide_title: true
|
||||
hide_table_of_contents: true
|
||||
schema: true
|
||||
sample: {"email":"string","first_name":"string","id":0,"last_name":"string","registration_date":"2024-07-29T15:51:28.071Z","registration_hash":"string","username":"string"}
|
||||
custom_edit_url: null
|
||||
---
|
||||
|
||||
import Schema from "@theme/Schema";
|
||||
import Heading from "@theme/Heading";
|
||||
|
||||
<Heading
|
||||
as={"h1"}
|
||||
className={"openapi__heading"}
|
||||
children={"UserRegistrationsRestAPI.get_list"}
|
||||
>
|
||||
</Heading>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<Schema
|
||||
{...require("./userregistrationsrestapi-get-list.Schema.json")}
|
||||
>
|
||||
|
||||
</Schema>
|
||||
@@ -0,0 +1 @@
|
||||
{"schema":{"properties":{"id":{"type":"integer"}},"type":"object","title":"UserRegistrationsRestAPI.get"},"schemaType":"response"}
|
||||
@@ -0,0 +1,31 @@
|
||||
---
|
||||
id: userregistrationsrestapi-get
|
||||
title: "UserRegistrationsRestAPI.get"
|
||||
description: ""
|
||||
sidebar_label: "UserRegistrationsRestAPI.get"
|
||||
hide_title: true
|
||||
hide_table_of_contents: true
|
||||
schema: true
|
||||
sample: {"id":0}
|
||||
custom_edit_url: null
|
||||
---
|
||||
|
||||
import Schema from "@theme/Schema";
|
||||
import Heading from "@theme/Heading";
|
||||
|
||||
<Heading
|
||||
as={"h1"}
|
||||
className={"openapi__heading"}
|
||||
children={"UserRegistrationsRestAPI.get"}
|
||||
>
|
||||
</Heading>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<Schema
|
||||
{...require("./userregistrationsrestapi-get.Schema.json")}
|
||||
>
|
||||
|
||||
</Schema>
|
||||
@@ -0,0 +1 @@
|
||||
{"schema":{"properties":{"id":{"type":"integer"}},"type":"object","title":"UserRegistrationsRestAPI.post"},"schemaType":"response"}
|
||||
@@ -0,0 +1,31 @@
|
||||
---
|
||||
id: userregistrationsrestapi-post
|
||||
title: "UserRegistrationsRestAPI.post"
|
||||
description: ""
|
||||
sidebar_label: "UserRegistrationsRestAPI.post"
|
||||
hide_title: true
|
||||
hide_table_of_contents: true
|
||||
schema: true
|
||||
sample: {"id":0}
|
||||
custom_edit_url: null
|
||||
---
|
||||
|
||||
import Schema from "@theme/Schema";
|
||||
import Heading from "@theme/Heading";
|
||||
|
||||
<Heading
|
||||
as={"h1"}
|
||||
className={"openapi__heading"}
|
||||
children={"UserRegistrationsRestAPI.post"}
|
||||
>
|
||||
</Heading>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<Schema
|
||||
{...require("./userregistrationsrestapi-post.Schema.json")}
|
||||
>
|
||||
|
||||
</Schema>
|
||||
@@ -0,0 +1 @@
|
||||
{"schema":{"properties":{"id":{"type":"integer"}},"type":"object","title":"UserRegistrationsRestAPI.put"},"schemaType":"response"}
|
||||
@@ -0,0 +1,31 @@
|
||||
---
|
||||
id: userregistrationsrestapi-put
|
||||
title: "UserRegistrationsRestAPI.put"
|
||||
description: ""
|
||||
sidebar_label: "UserRegistrationsRestAPI.put"
|
||||
hide_title: true
|
||||
hide_table_of_contents: true
|
||||
schema: true
|
||||
sample: {"id":0}
|
||||
custom_edit_url: null
|
||||
---
|
||||
|
||||
import Schema from "@theme/Schema";
|
||||
import Heading from "@theme/Heading";
|
||||
|
||||
<Heading
|
||||
as={"h1"}
|
||||
className={"openapi__heading"}
|
||||
children={"UserRegistrationsRestAPI.put"}
|
||||
>
|
||||
</Heading>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<Schema
|
||||
{...require("./userregistrationsrestapi-put.Schema.json")}
|
||||
>
|
||||
|
||||
</Schema>
|
||||
Reference in New Issue
Block a user