Skip to content
This repository has been archived by the owner on May 2, 2023. It is now read-only.

Commit

Permalink
Merge pull request #8 from acumenbrands/allow_different_start_id
Browse files Browse the repository at this point in the history
Support different start ID when searching
  • Loading branch information
bradediger committed Nov 19, 2013
2 parents b7bc39b + 159170a commit 8403751
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/netsuite-rest-client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def search_records(record_type, search_filters, return_columns, options={})

payload = { 'operation' => 'SEARCH',
'record_type' => record_type,
'start_id' => 0,
'start_id' => options.fetch(:start_id, 0),
'search_filters' => search_filters,
'return_columns' => return_columns }

Expand Down
2 changes: 1 addition & 1 deletion netsuite-rest-client.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

Gem::Specification.new do |s|
s.name = "netsuite-rest-client"
s.version = "1.0.0"
s.version = "1.0.1"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Jim Kane"]
Expand Down

0 comments on commit 8403751

Please sign in to comment.