Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[nightly] generate types against bigcommerce/docs@7fe0389 #544

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
8 changes: 4 additions & 4 deletions src/generated/category-trees_catalog.v3.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export interface paths {
* - 16,000 categories per store limit.
* - 1,000 categories per product limit.
* - 50 characters category name length.
* - 8 levels of category depth limit.
* - 8 levels of child categories depth limit.
* - 65,535 characters category description length limit.
*
* Creating a category requires:
Expand Down Expand Up @@ -63,7 +63,7 @@ export interface paths {
* This single endpoint updates and creates category trees. If a tree object contains an ID, it is processed as an update operation using that ID. If you do not provide an ID, a new tree is created. The category tree `name` field is required to create trees, but is not required on the update.
*
* **Usage Notes**
* * `channel_id` is required to create a category tree. You can assign one `channel_id` to one category tree.
* * Channel ID in the `channels` field is required to create a category tree. You can only assign a category tree to one channel.
*/
put: operations["upsertCategoryTrees"];
/**
Expand Down Expand Up @@ -590,7 +590,7 @@ export interface operations {
* - 16,000 categories per store limit.
* - 1,000 categories per product limit.
* - 50 characters category name length.
* - 8 levels of category depth limit.
* - 8 levels of child categories depth limit.
* - 65,535 characters category description length limit.
*
* Creating a category requires:
Expand Down Expand Up @@ -707,7 +707,7 @@ export interface operations {
* This single endpoint updates and creates category trees. If a tree object contains an ID, it is processed as an update operation using that ID. If you do not provide an ID, a new tree is created. The category tree `name` field is required to create trees, but is not required on the update.
*
* **Usage Notes**
* * `channel_id` is required to create a category tree. You can assign one `channel_id` to one category tree.
* * Channel ID in the `channels` field is required to create a category tree. You can only assign a category tree to one channel.
*/
upsertCategoryTrees: {
parameters: {
Expand Down
6 changes: 6 additions & 0 deletions src/generated/checkouts.v3.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1025,6 +1025,8 @@ export interface components {
order_confirmation_use_custom_checkout_script?: boolean;
custom_order_confirmation_script_url?: string;
custom_checkout_supports_uco_settings?: boolean;
custom_checkout_sri_hash?: string;
custom_order_confirmation_sri_hash?: string;
};
/** Checkouts settings request */
CheckoutsSettingsRequest: {
Expand All @@ -1036,6 +1038,10 @@ export interface components {
custom_order_confirmation_script_url?: string;
/** @description Boolean value that specifies whether this checkout supports Optimized One-Page Checkout settings. */
custom_checkout_supports_uco_settings?: boolean;
/** @description The Subresource Integrity (SRI) hash for the custom checkout script URL. */
custom_checkout_sri_hash?: string;
/** @description The Subresource Integrity (SRI) hash for the custom order confirmation script URL. */
custom_order_confirmation_sri_hash?: string;
};
/** Pickup Option */
PickupOption: {
Expand Down
4 changes: 2 additions & 2 deletions src/generated/orders.v2.oas2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1445,7 +1445,7 @@ export interface components {
*/
base_wrapping_cost?: string;
/**
* @description Shows where the order originated. The channel_id will default to 1.
* @description Shows where the order originated. The channel_id defaults to 1. The value must match the ID of a valid and enabled channel. If the ID refers to a non-existing or disconnected channel, the POST and PUT `/v2/orders` endpoints return a validation error.
* @example 1
*/
channel_id?: number;
Expand Down Expand Up @@ -2088,7 +2088,7 @@ export interface components {
base_wrapping_cost?: string;
billing_address?: components["schemas"]["billingAddress_Put"];
/**
* @description Shows where the order originated. The channel_id will default to 1.
* @description Shows where the order originated. The channel_id defaults to 1. The value must match the ID of a valid and enabled channel. If the ID refers to a non-existing or disconnected channel, the POST and PUT `/v2/orders` endpoints return a validation error.
* @example 1
*/
channel_id?: number;
Expand Down