diff --git a/README.Rmd b/README.Rmd index 4c2c5573..3a69e771 100644 --- a/README.Rmd +++ b/README.Rmd @@ -48,7 +48,10 @@ Bulk 2.0, and Metadata APIs. Package features include: ## Installation ```{r, eval = FALSE} -# this package is currently not on CRAN, so it should be installed from GitHub +# install from CRAN +install.packages("salesforcer") + +# or get the latest version available on GitHub using the devtools package # install.packages("devtools") devtools::install_github("StevenMMortimer/salesforcer") ``` diff --git a/README.md b/README.md index adae6a83..0f11cd9c 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,10 @@ Installation ------------ ``` r -# this package is currently not on CRAN, so it should be installed from GitHub +# install from CRAN +install.packages("salesforcer") + +# or get the latest version available on GitHub using the devtools package # install.packages("devtools") devtools::install_github("StevenMMortimer/salesforcer") ``` @@ -93,8 +96,8 @@ created_records #> # A tibble: 2 x 2 #> id success #> -#> 1 0036A00000SnhbfQAB true -#> 2 0036A00000SnhbgQAB true +#> 1 0036A00000Sp4fWQAR true +#> 2 0036A00000Sp4fXQAR true ``` ### Query @@ -115,8 +118,8 @@ queried_records #> # A tibble: 2 x 4 #> Id Account FirstName LastName #> * -#> 1 0036A00000SnhbfQAB NA Test Contact-Create-1 -#> 2 0036A00000SnhbgQAB NA Test Contact-Create-2 +#> 1 0036A00000Sp4fWQAR NA Test Contact-Create-1 +#> 2 0036A00000Sp4fXQAR NA Test Contact-Create-2 ``` ### Update @@ -134,8 +137,8 @@ updated_records #> # A tibble: 2 x 2 #> id success #> -#> 1 0036A00000SnhbfQAB true -#> 2 0036A00000SnhbgQAB true +#> 1 0036A00000Sp4fWQAR true +#> 2 0036A00000Sp4fXQAR true ``` ### Bulk Operations diff --git a/docs/index.html b/docs/index.html index 8996226e..105d4a34 100644 --- a/docs/index.html +++ b/docs/index.html @@ -163,7 +163,10 @@

Installation

-
# this package is currently not on CRAN, so it should be installed from GitHub
+
# install from CRAN
+install.packages("salesforcer")
+
+# or get the latest version available on GitHub using the devtools package
 # install.packages("devtools")
 devtools::install_github("StevenMMortimer/salesforcer")

If you encounter a clear bug, please file a minimal reproducible example on GitHub.

@@ -213,8 +216,8 @@

#> # A tibble: 2 x 2 #> id success #> <chr> <chr> -#> 1 0036A00000Sp3kaQAB true -#> 2 0036A00000Sp3kbQAB true

+#> 1 0036A00000Sp4duQAB true +#> 2 0036A00000Sp4dvQAB true

@@ -233,8 +236,8 @@

#> # A tibble: 2 x 4 #> Id Account FirstName LastName #> * <chr> <lgl> <chr> <chr> -#> 1 0036A00000Sp3kaQAB NA Test Contact-Create-1 -#> 2 0036A00000Sp3kbQAB NA Test Contact-Create-2

+#> 1 0036A00000Sp4duQAB NA Test Contact-Create-1 +#> 2 0036A00000Sp4dvQAB NA Test Contact-Create-2

@@ -250,8 +253,8 @@

#> # A tibble: 2 x 2 #> id success #> <chr> <chr> -#> 1 0036A00000Sp3kaQAB true -#> 2 0036A00000Sp3kbQAB true

+#> 1 0036A00000Sp4duQAB true +#> 2 0036A00000Sp4dvQAB true

diff --git a/index.Rmd b/index.Rmd index cc6a1c38..376b4a52 100644 --- a/index.Rmd +++ b/index.Rmd @@ -49,7 +49,10 @@ Bulk 2.0, and Metadata APIs. Package features include: ## Installation ```{r, eval = FALSE} -# this package is currently not on CRAN, so it should be installed from GitHub +# install from CRAN +install.packages("salesforcer") + +# or get the latest version available on GitHub using the devtools package # install.packages("devtools") devtools::install_github("StevenMMortimer/salesforcer") ```