Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions spectaql/schema_saas.json
Original file line number Diff line number Diff line change
Expand Up @@ -59307,7 +59307,7 @@
},
{
"name": "categoryTree",
"description": "Retrieves category tree nodes, optionally filtered by slugs and limited by depth.",
"description": "Retrieves category tree nodes, optionally filtered by family, slugs and limited by depth.",
"args": [
{
"name": "family",
Expand Down Expand Up @@ -59339,7 +59339,7 @@
},
{
"name": "depth",
"description": "The depth of the category tree to retrieve. For example, depth 1 will retrieve only root categories (categories with level 1), depth 2 will retrieve root categories and their primary children (level 1 & level 2 categories).",
"description": "The depth of the category tree to retrieve. When used without an initial slug, it will specify the maximum level allowed for a category. When used with a starting slug, it specifies depth from that slug, counting the slug itself as level 1.",
"type": {
"kind": "SCALAR",
"name": "Int",
Expand Down
121 changes: 120 additions & 1 deletion src/openapi/accs-schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2237,6 +2237,30 @@ definitions:
- error_message
- request_timestamp
type: object
commerce-backend-uix-data-selected-extension-data-interface:
description: Defines the selected extensions table data model
properties:
extension_name:
description: The extension name
type: string
extension_title:
description: The extension title
type: string
extension_url:
description: The extension url
type: string
extension_workspace:
description: The extension workspace
type: string
id:
description: Id field
type: string
required:
- extension_name
- extension_title
- extension_workspace
- extension_url
type: object
company-credit-data-credit-balance-options-interface:
description: Credit balance data transfer object interface.
properties:
Expand Down Expand Up @@ -10355,6 +10379,97 @@ paths:
tags:
- adminuisdk/appmanagement/validate
summary: adminuisdk/appmanagement/validate
"/V1/adminuisdk/extension":
post:
consumes:
- application/json
- application/xml
description: Saving the selected extensions to database.
operationId: PostV1AdminuisdkExtension
parameters:
- in: body
name: PostV1AdminuisdkExtensionBody
schema:
properties:
extension:
"$ref": "#/definitions/commerce-backend-uix-data-selected-extension-data-interface"
required:
- extension
type: object
xml:
name: request
produces:
- application/json
- application/xml
responses:
'400':
description: 400 Bad Request
schema:
"$ref": "#/definitions/error-response"
'401':
description: 401 Unauthorized
schema:
"$ref": "#/definitions/error-response"
'500':
description: Internal Server error
schema:
"$ref": "#/definitions/error-response"
default:
description: Unexpected error
schema:
"$ref": "#/definitions/error-response"
tags:
- adminuisdk/extension
summary: adminuisdk/extension
"/V1/adminuisdk/extension/{workspace_name}/{extension_name}":
delete:
consumes:
- application/json
- application/xml
description: Delete selected extension by extension name.
operationId: DeleteV1AdminuisdkExtensionWorkspace_nameExtension_name
parameters:
- in: path
name: workspace_name
required: true
type: string
- in: path
name: extension_name
required: true
type: string
- in: body
name: DeleteV1AdminuisdkExtensionWorkspace_nameExtension_nameBody
schema:
properties:
extensionName:
type: string
workspaceName:
type: string
required:
- workspaceName
- extensionName
type: object
xml:
name: request
produces:
- application/json
- application/xml
responses:
'401':
description: 401 Unauthorized
schema:
"$ref": "#/definitions/error-response"
'500':
description: Internal Server error
schema:
"$ref": "#/definitions/error-response"
default:
description: Unexpected error
schema:
"$ref": "#/definitions/error-response"
tags:
- adminuisdk/extension/{workspace_name}/{extension_name}
summary: adminuisdk/extension/{workspace_name}/{extension_name}
"/V1/adminuisdk/massaction/{request_id}":
get:
consumes:
Expand Down Expand Up @@ -29805,6 +29920,8 @@ swagger: '2.0'
tags:
- name: addresses/{addressId}
- name: adminuisdk/appmanagement/validate
- name: adminuisdk/extension
- name: adminuisdk/extension/{workspace_name}/{extension_name}
- name: adminuisdk/massaction/{request_id}
- name: adminuisdk/orderviewbutton/{request_id}
- name: adobe_io_events/check_configuration
Expand Down Expand Up @@ -30181,6 +30298,8 @@ x-tagGroups:
- name: adminuisdk
tags:
- adminuisdk/appmanagement/validate
- adminuisdk/extension
- adminuisdk/extension/{workspace_name}/{extension_name}
- adminuisdk/massaction/{request_id}
- adminuisdk/orderviewbutton/{request_id}
- name: adobe_io_events
Expand Down Expand Up @@ -30659,4 +30778,4 @@ x-tagGroups:
- webhooks/list
- webhooks/subscribe
- webhooks/supportedList
- webhooks/unsubscribe
- webhooks/unsubscribe
Loading
Loading