chore(docs): Updated API Reference (automated) (#11167)

Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action

Co-authored-by: Oli Juhl <59018053+olivermrbl@users.noreply.github.com>
Co-authored-by: Shahed Nasser <27354907+shahednasser@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2025-01-27 11:45:04 +00:00
committed by GitHub
co-authored by Oli Juhl Shahed Nasser
parent 43aa993971
commit 3e81962503
45 changed files with 5201 additions and 216 deletions
@@ -0,0 +1,34 @@
/**
* @schema AdminBatchInventoryItemsLocationLevels
* type: object
* description: The inventory levels to manage.
* properties:
* create:
* type: array
* description: The inventory levels to create.
* items:
* $ref: "#/components/schemas/AdminBatchCreateInventoryItemsLocationLevels"
* update:
* type: array
* description: The inventory levels to update.
* items:
* $ref: "#/components/schemas/AdminBatchUpdateInventoryItemsLocationLevels"
* delete:
* type: array
* description: The IDs of the inventory levels to delete.
* items:
* type: string
* title: delete
* description: The ID of the inventory level to delete.
* force:
* type: boolean
* title: force
* description: Whether to delete specified inventory levels even if they have a non-zero stocked quantity.
* required:
* - create
* - update
* - delete
* x-schemaName: AdminBatchInventoryItemsLocationLevels
*
*/