Sha256: d1f853624678a91506fd0ab0cc1ddaf0ed8ab131bd0a94944240deb87a0214ce

Contents?: true

Size: 648 Bytes

Versions: 57

Compression:

Stored size: 648 Bytes

Contents

require "shopify_cli"

module ShopifyCLI
  module Commands
    class Populate
      class Customer < ShopifyCLI::AdminAPI::PopulateResourceCommand
        @input_type = :CustomerInput

        def defaults
          first_name, last_name = ShopifyCLI::Helpers::Haikunator.name
          {
            firstName: first_name,
            lastName: last_name,
          }
        end

        def message(data)
          ret = data["customerCreate"]["customer"]
          id = ShopifyCLI::API.gid_to_id(ret["id"])
          @ctx.message("core.populate.customer.added", ret["displayName"], @shop, admin_url, id)
        end
      end
    end
  end
end

Version data entries

57 entries across 57 versions & 1 rubygems

Version Path
shopify-cli-2.36.0 lib/shopify_cli/commands/populate/customer.rb
shopify-cli-2.35.0 lib/shopify_cli/commands/populate/customer.rb
shopify-cli-2.34.0 lib/shopify_cli/commands/populate/customer.rb
shopify-cli-2.33.1 lib/shopify_cli/commands/populate/customer.rb
shopify-cli-2.33.0 lib/shopify_cli/commands/populate/customer.rb
shopify-cli-2.32.1 lib/shopify_cli/commands/populate/customer.rb
shopify-cli-2.32.0 lib/shopify_cli/commands/populate/customer.rb
shopify-cli-2.31.0 lib/shopify_cli/commands/populate/customer.rb
shopify-cli-2.30.0 lib/shopify_cli/commands/populate/customer.rb
shopify-cli-2.29.0 lib/shopify_cli/commands/populate/customer.rb
shopify-cli-2.28.0 lib/shopify_cli/commands/populate/customer.rb
shopify-cli-2.27.0 lib/shopify_cli/commands/populate/customer.rb
shopify-cli-2.26.0 lib/shopify_cli/commands/populate/customer.rb
shopify-cli-2.25.0 lib/shopify_cli/commands/populate/customer.rb
shopify-cli-2.24.0 lib/shopify_cli/commands/populate/customer.rb
shopify-cli-2.23.0 lib/shopify_cli/commands/populate/customer.rb
shopify-cli-2.22.0 lib/shopify_cli/commands/populate/customer.rb
shopify-cli-2.21.0 lib/shopify_cli/commands/populate/customer.rb
shopify-cli-2.20.1 lib/shopify_cli/commands/populate/customer.rb
shopify-cli-2.20.0 lib/shopify_cli/commands/populate/customer.rb