Skip to content

Commit fd4b238

Browse files
Version Bump
1 parent a14f04e commit fd4b238

File tree

8 files changed

+84
-37
lines changed

8 files changed

+84
-37
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: rdfp
22
Title: DoubleClick for Publishers API from R
3-
Version: 0.1.0.9000
4-
Date: 2018-03-27
3+
Version: 0.1.1
4+
Date: 2018-03-29
55
Description: An implementation of Google's DoubleClick for Publishers API in R.
66
This package is automatically compiled from the API WSDLs (Web Service Description
77
Language) files to dictate how the API is structured. Theoretically, all API

NEWS.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,24 @@
1-
## rdfp 0.1.0.9000
1+
## rdfp 0.1.1.9000
2+
3+
4+
### Features
5+
6+
* Nothing yet!
7+
8+
### Bug Fixes
9+
10+
* Nothing yet!
11+
12+
---
13+
14+
## rdfp 0.1.1 [release](https://github.com/StevenMMortimer/rdfp/releases/tag/v0.1.1)
15+
216

317
### Features
418

519
* Upgraded to API version `v201802`
6-
* Created more efficient parsers `parse_soap_response()`
20+
* Created more efficient parsers `parse_soap_response()`. Warning: This will cause
21+
some breaking changes because how certain results are returned may be different.
722

823
### Bug Fixes
924

docs/NEWS.html

Lines changed: 29 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/articles/index.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/articles/pulling-reports.html

Lines changed: 2 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/news/index.html

Lines changed: 31 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/reference/index.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vignettes/pulling-reports.Rmd

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,6 @@ named `dfp_full_report_wrapper` manages all aspects of reporting, so this level
115115
detail is not needed unless the wrapper service does not quite fit your needs.
116116

117117
```{r eval = FALSE}
118-
119118
# create a reportJob object
120119
# reportJobs consist of a reportQuery
121120
# Documentation for the reportQuery object can be found in R using
@@ -126,9 +125,7 @@ request_data <- list(reportJob=list(reportQuery=list(dimensions='MONTH_AND_YEAR'
126125
dimensions='AD_UNIT_ID',
127126
adUnitView='FLAT',
128127
columns='TOTAL_INVENTORY_LEVEL_IMPRESSIONS',
129-
startDate=list(year=2018, month=10, day=1),
130-
endDate=list(year=2018, month=10, day=31),
131-
dateRangeType='CUSTOM_DATE'
128+
dateRangeType='LAST_WEEK'
132129
)))
133130
134131
# the result is a list and most importantly the ID is included for checking its status
@@ -160,5 +157,4 @@ dfp_getReportDownloadURL_result <- dfp_getReportDownloadURL(request_data)
160157
report_dat <- dfp_report_url_to_dataframe(report_url=dfp_getReportDownloadURL_result,
161158
exportFormat='CSV_DUMP')
162159
head(report_dat)
163-
164160
```

0 commit comments

Comments
 (0)