Skip to content

Commit

Permalink
📝 Ecommerce Vertical docs Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Rachid Flih authored and Rachid Flih committed Aug 7, 2024
1 parent 47f0e75 commit 9784c89
Show file tree
Hide file tree
Showing 16 changed files with 29 additions and 29 deletions.
File renamed without changes.
File renamed without changes.
3 changes: 0 additions & 3 deletions docs/ecommerce/fulfillments/list-fulfillments.mdx

This file was deleted.

3 changes: 3 additions & 0 deletions docs/ecommerce/fulfillments/list.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
openapi: get /ecommerce/fulfillments
---
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
28 changes: 14 additions & 14 deletions docs/mint.json
Original file line number Diff line number Diff line change
Expand Up @@ -482,33 +482,33 @@
"group": "Ecommerce Objects",
"pages": [
{
"group": "Product",
"group": "Products",
"pages": [
"ecommerce/products/list-product",
"ecommerce/products/retrieve-a-product",
"ecommerce/products/create-a-product"
"ecommerce/products/list",
"ecommerce/products/retrieve",
"ecommerce/products/create"
]
},
{
"group": "Order",
"group": "Orders",
"pages": [
"ecommerce/orders/list-orders",
"ecommerce/orders/create-a-order",
"ecommerce/orders/retrieve-a-order"
"ecommerce/orders/list",
"ecommerce/orders/create",
"ecommerce/orders/retrieve"
]
},
{
"group": "Fulfillment",
"group": "Fulfillments",
"pages": [
"ecommerce/fulfillments/list-fulfillments",
"ecommerce/fulfillments/retrieve-a-fulfillment"
"ecommerce/fulfillments/list",
"ecommerce/fulfillments/retrieve"
]
},
{
"group": "Customer",
"group": "Customers",
"pages": [
"ecommerce/customers/list-customers",
"ecommerce/customers/retrieve-a-customer"
"ecommerce/customers/list",
"ecommerce/customers/retrieve"
]
}
]
Expand Down
6 changes: 3 additions & 3 deletions packages/api/src/ecommerce/customer/customer.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export class CustomerController {

@ApiOperation({
operationId: 'listEcommerceCustomers',
summary: 'List a batch of Customers',
summary: 'List Customers',
})
@ApiHeader({
name: 'x-connection-token',
Expand Down Expand Up @@ -74,8 +74,8 @@ export class CustomerController {

@ApiOperation({
operationId: 'retrieveEcommerceCustomer',
summary: 'Retrieve a Customer',
description: 'Retrieve a customer from any connected Ats software',
summary: 'Retrieve Customers',
description: 'Retrieve customers from any connected Ats software',
})
@ApiParam({
name: 'id',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export class FulfillmentController {

@ApiOperation({
operationId: 'listEcommerceFulfillments',
summary: 'List a batch of Fulfillments',
summary: 'List Fulfillments',
})
@ApiHeader({
name: 'x-connection-token',
Expand Down Expand Up @@ -74,8 +74,8 @@ export class FulfillmentController {

@ApiOperation({
operationId: 'retrieveEcommerceFulfillment',
summary: 'Retrieve a Fulfillment',
description: 'Retrieve a fulfillment from any connected Ats software',
summary: 'Retrieve Fulfillments',
description: 'Retrieve fulfillments from any connected Ats software',
})
@ApiParam({
name: 'id',
Expand Down
6 changes: 3 additions & 3 deletions packages/api/src/ecommerce/order/order.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export class OrderController {

@ApiOperation({
operationId: 'listEcommerceOrders',
summary: 'List a batch of Orders',
summary: 'List Orders',
})
@ApiHeader({
name: 'x-connection-token',
Expand Down Expand Up @@ -81,8 +81,8 @@ export class OrderController {

@ApiOperation({
operationId: 'retrieveEcommerceOrder',
summary: 'Retrieve a Order',
description: 'Retrieve a order from any connected Ats software',
summary: 'Retrieve Orders',
description: 'Retrieve orders from any connected Ats software',
})
@ApiParam({
name: 'id',
Expand Down
6 changes: 3 additions & 3 deletions packages/api/src/ecommerce/product/product.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export class ProductController {

@ApiOperation({
operationId: 'listEcommerceProducts',
summary: 'List a batch of Products',
summary: 'List Products',
})
@ApiHeader({
name: 'x-connection-token',
Expand Down Expand Up @@ -81,8 +81,8 @@ export class ProductController {

@ApiOperation({
operationId: 'retrieveEcommerceProduct',
summary: 'Retrieve a Product',
description: 'Retrieve a product from any connected Ats software',
summary: 'Retrieve Products',
description: 'Retrieve products from any connected Ats software',
})
@ApiParam({
name: 'id',
Expand Down

0 comments on commit 9784c89

Please sign in to comment.