naver-searchad-api 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: eae7ee75655ccdaa85e860e629e6a23afbda6c4917c7cf5f116888bbd4d97830
4
- data.tar.gz: 9864318fb460b2eacffca426156d626e94e880619932a98a37540d3300e389a2
3
+ metadata.gz: dbbdb4eb119c7be44c31a6f42660d10e7918bdbf3eaec33c383c8e510aeeb971
4
+ data.tar.gz: be943907d5d92d569d639ada5b725573159aff42c1620a659a5f5e1b804dd12a
5
5
  SHA512:
6
- metadata.gz: 02b2bf193eeacb4586a1bc38ba173dc49254401addb7ceb71f5e47ca3fd7cea6351267c5d6ec0ac20d035f7162d0e19e3c96f3b7133d240b44a830564ff3f7fd
7
- data.tar.gz: d98c451eb49699980b6f5b1c9215f7cb6f22b2b11e7215886dc6f61f4b4cb8a592086fa1d44b0400ced1213a84cecfa34727357f05b516c38cbefb86401b1ea8
6
+ metadata.gz: 72624784a5d9a4e14af4430171687c2a7b8db6ce77edc4881ab07cb09c36d3ba402828e05bb133cba597815fb79bb4760986c026171d1ccdcb9e5993b13b94bc
7
+ data.tar.gz: 0620d07f41497fc6744e7fa5e458b55792692801b32f4b26abeaa56f4ac4b9493dd7d8a51ea9485aa910acf2d55543f177bb06e2a2a8d17985d7b45136152d98
@@ -21,18 +21,18 @@ module Naver
21
21
  end
22
22
 
23
23
  def get_stat_report(report_job_id, options: {}, &block)
24
- command = make_command(:get, '/stat-reports/{report_job_id}', options)
24
+ command = make_command(:get, 'stat-reports/{report_job_id}', options)
25
25
  command.params['report_job_id'] = report_job_id
26
26
  execute_command(command, &block)
27
27
  end
28
28
 
29
29
  def list_stat_reports(options: {}, &block)
30
- command = make_command(:get, '/stat-reports', options)
30
+ command = make_command(:get, 'stat-reports', options)
31
31
  execute_command(command, &block)
32
32
  end
33
33
 
34
34
  def create_stat_report(type, date, options: {}, &block)
35
- command = make_command(:post, '/stat-reports', options)
35
+ command = make_command(:post, 'stat-reports', options)
36
36
  command.request_object = {
37
37
  'reportTp' => type,
38
38
  'statDt' => date
@@ -41,12 +41,12 @@ module Naver
41
41
  end
42
42
 
43
43
  def delete_stat_reports(options: {}, &block)
44
- command = make_command(:delete, '/stat-reports', options)
44
+ command = make_command(:delete, 'stat-reports', options)
45
45
  execute_command(command, &block)
46
46
  end
47
47
 
48
48
  def delete_stat_report(report_job_id, options: {}, &block)
49
- command = make_command(:delete, '/stat-reports/{report_job_id}', options)
49
+ command = make_command(:delete, 'stat-reports/{report_job_id}', options)
50
50
  command.params['report_job_id'] = report_job_id
51
51
  execute_command(command, &block)
52
52
  end
@@ -1,7 +1,7 @@
1
1
  module Naver
2
2
  module Searchad
3
3
  module Api
4
- VERSION = '1.1.0'
4
+ VERSION = '1.1.1'
5
5
 
6
6
  OS_VERSION = begin
7
7
  if RUBY_PLATFORM =~ /mswin|win32|mingw|bccwin|cygwin/
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: naver-searchad-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Min Kim
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-11-28 00:00:00.000000000 Z
11
+ date: 2023-01-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httpclient
@@ -158,7 +158,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
158
158
  - !ruby/object:Gem::Version
159
159
  version: '0'
160
160
  requirements: []
161
- rubygems_version: 3.1.6
161
+ rubygems_version: 3.3.7
162
162
  signing_key:
163
163
  specification_version: 4
164
164
  summary: Naver Searchad API ruby client