Skip to content
Merged
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 cli/cmd/customer_create.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ func (r *runners) InitCustomersCreateCommand(parent *cobra.Command) *cobra.Comma
Long: `Create a new customer for the current application with specified attributes.

This command allows you to create a customer record with various properties such as name,
custom ID, channels, license type, and feature flags. You can set expiration dates,
enable or disable specific features, and assign the customer to one or more channels.
custom ID, channel, license type, and feature flags. You can set expiration dates,
enable or disable specific features, and assign the customer to a channel.

The --app flag must be set to specify the target application.`,
Example: `# Create a basic customer with a name and assigned to a channel
Expand Down
4 changes: 2 additions & 2 deletions cli/cmd/customer_update.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ func (r *runners) InitCustomerUpdateCommand(parent *cobra.Command) *cobra.Comman
Long: `Update an existing customer's information and settings.

This command allows you to modify various attributes of a customer, including their name,
custom ID, assigned channels, license type, and feature flags. You can update expiration dates,
enable or disable specific features, and change channel assignments.
custom ID, assigned channel, license type, and feature flags. You can update expiration dates,
enable or disable specific features, and change the channel assignment.

The --customer flag is required to specify which customer to update.`,
Example: `# Update a customer's name
Expand Down
Loading