Skip to content
Prev Previous commit
Next Next commit
Added actions
  • Loading branch information
lcaresia committed Oct 15, 2025
commit 1cf71e48fbee0bb94ff30cf51a8bde01e18ecb68
5 changes: 5 additions & 0 deletions components/paddle/actions/create-customer/create-customer.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ export default {
name: "Create Customer",
description: "Create a new customer in Paddle. [See the documentation](https://developer.paddle.com/api-reference/customers/create-customer)",
version: "0.0.1",
annotations: {
openWorldHint: true,
destructiveHint: false,
readOnlyHint: false,
},
type: "action",
props: {
app,
Expand Down
5 changes: 5 additions & 0 deletions components/paddle/actions/get-customers/get-customers.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ export default {
name: "Get Customers",
description: "Get a list of customers registered in Paddle. [See the documentation](https://developer.paddle.com/api-reference/customers/list-customers)",
version: "0.0.1",
annotations: {
openWorldHint: true,
destructiveHint: false,
readOnlyHint: true,
},
type: "action",
props: {
app,
Expand Down
5 changes: 5 additions & 0 deletions components/paddle/actions/update-customer/update-customer.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ export default {
name: "Update Customer",
description: "Update the customer with the specified ID. [See the documentation](https://developer.paddle.com/api-reference/customers/update-customer)",
version: "0.0.1",
annotations: {
openWorldHint: true,
destructiveHint: true,
readOnlyHint: false,
},
type: "action",
props: {
app,
Expand Down
Loading