embulk-input-facebook_ads_insights 0.1.8 → 0.1.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/build.gradle +2 -2
- data/src/main/java/org/embulk/input/facebook_ads_insights/model/DatePreset.java +2 -1
- metadata +8 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e75615b6132e2b71944d55f536a292910f751152
|
4
|
+
data.tar.gz: 4f7b3a10f5b5e0ea05cf61530a25fbbb72a7d31c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b68579162e9d20d377231ca22ab6e046b39751442d68d91c06aa04141cdb9a5d8ca34712b59c1c64aeddd36d6e80caea26b3958c34d781a1884436350eaccacd
|
7
|
+
data.tar.gz: 2464a3b4d078e8b170400655523023716da68efdb0108947e5613b8a2a2dd626ea66ae89a51c4f5d08cc6e46d4b37c6875e0cc39b4d2d5aa144e4d623d3c01ef
|
data/README.md
CHANGED
@@ -42,7 +42,7 @@ Required Embulk version >= 0.9
|
|
42
42
|
| ActionAttributionWindowEnum | 1d_view, 7d_view, 28d_view, 1d_click, 7d_click, 28d_click, default |
|
43
43
|
| ActionBreakdownEnum | action_device, action_canvas_component_name, action_carousel_card_id, action_carousel_card_name, action_destination, action_reaction, action_target_id, action_type, action_video_sound, action_video_type |
|
44
44
|
| BreakdownEnum | ad_format_asset, age, body_asset, call_to_action_asset, country, description_asset, gender, image_asset, impression_device, link_url_asset, product_id, region, title_asset, video_asset, dma, frequency_value, hourly_stats_aggregated_by_advertiser_time_zone, hourly_stats_aggregated_by_audience_time_zone, place_page_id, publisher_platform, platform_position, device_platform |
|
45
|
-
| DatePresetEnum | today, yesterday, this_month, last_month, this_quarter, lifetime, last_3d, last_7d, last_14d, last_28d, last_30d, last_90d, last_week_mon_sun, last_week_sun_sat, last_quarter, last_year, this_week_mon_today, this_week_sun_today, this_year |
|
45
|
+
| DatePresetEnum | today, yesterday, this_month, last_month, this_quarter, lifetime, maximum, last_3d, last_7d, last_14d, last_28d, last_30d, last_90d, last_week_mon_sun, last_week_sun_sat, last_quarter, last_year, this_week_mon_today, this_week_sun_today, this_year |
|
46
46
|
| FilteringOperatorEnum | EQUAL, NOT_EQUAL, GREATER_THAN, GREATER_THAN_OR_EQUAL, LESS_THAN, LESS_THAN_OR_EQUAL, IN_RANGE, NOT_IN_RANGE, CONTAIN, NOT_CONTAIN, IN, NOT_IN, STARTS_WITH, ANY, ALL, AFTER, BEFORE, NONE} |
|
47
47
|
|
48
48
|
## Example
|
data/build.gradle
CHANGED
@@ -13,7 +13,7 @@ configurations {
|
|
13
13
|
provided
|
14
14
|
}
|
15
15
|
|
16
|
-
version = "0.1.
|
16
|
+
version = "0.1.9"
|
17
17
|
|
18
18
|
sourceCompatibility = 1.8
|
19
19
|
targetCompatibility = 1.8
|
@@ -21,7 +21,7 @@ targetCompatibility = 1.8
|
|
21
21
|
dependencies {
|
22
22
|
compile "org.embulk:embulk-core:0.9.17"
|
23
23
|
provided "org.embulk:embulk-core:0.9.17"
|
24
|
-
compile group: "com.facebook.business.sdk", name: "facebook-java-business-sdk", version: "
|
24
|
+
compile group: "com.facebook.business.sdk", name: "facebook-java-business-sdk", version: "10.0.0"
|
25
25
|
// compile "YOUR_JAR_DEPENDENCY_GROUP:YOUR_JAR_DEPENDENCY_MODULE:YOUR_JAR_DEPENDENCY_VERSION"
|
26
26
|
testCompile "junit:junit:4.+"
|
27
27
|
}
|
@@ -30,7 +30,8 @@ public class DatePreset
|
|
30
30
|
case "this_month": return new DatePreset(AdsInsights.EnumDatePreset.VALUE_THIS_MONTH);
|
31
31
|
case "last_month": return new DatePreset(AdsInsights.EnumDatePreset.VALUE_LAST_MONTH);
|
32
32
|
case "this_quarter": return new DatePreset(AdsInsights.EnumDatePreset.VALUE_THIS_QUARTER);
|
33
|
-
case "lifetime": return new DatePreset(AdsInsights.EnumDatePreset.
|
33
|
+
case "lifetime": return new DatePreset(AdsInsights.EnumDatePreset.VALUE_MAXIMUM);
|
34
|
+
case "maximum": return new DatePreset(AdsInsights.EnumDatePreset.VALUE_MAXIMUM);
|
34
35
|
case "last_3d": return new DatePreset(AdsInsights.EnumDatePreset.VALUE_LAST_3D);
|
35
36
|
case "last_7d": return new DatePreset(AdsInsights.EnumDatePreset.VALUE_LAST_7D);
|
36
37
|
case "last_14d": return new DatePreset(AdsInsights.EnumDatePreset.VALUE_LAST_14D);
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: embulk-input-facebook_ads_insights
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- naotaka nakane
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-03-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
@@ -50,12 +50,16 @@ files:
|
|
50
50
|
- README.md
|
51
51
|
- build.gradle
|
52
52
|
- classpath/annotations-13.0.jar
|
53
|
-
- classpath/
|
54
|
-
- classpath/
|
53
|
+
- classpath/byte-buddy-1.10.13.jar
|
54
|
+
- classpath/byte-buddy-agent-1.10.13.jar
|
55
|
+
- classpath/embulk-input-facebook_ads_insights-0.1.9.jar
|
56
|
+
- classpath/facebook-java-business-sdk-10.0.0.jar
|
55
57
|
- classpath/gson-2.5.jar
|
56
58
|
- classpath/guava-20.0.jar
|
57
59
|
- classpath/kotlin-stdlib-1.2.60.jar
|
58
60
|
- classpath/kotlin-stdlib-common-1.2.60.jar
|
61
|
+
- classpath/mockito-core-3.5.11.jar
|
62
|
+
- classpath/objenesis-3.1.jar
|
59
63
|
- classpath/okhttp-3.9.1.jar
|
60
64
|
- classpath/okio-2.1.0.jar
|
61
65
|
- config/checkstyle/checkstyle.xml
|