README.md in netsuite-0.8.7 vs README.md in netsuite-0.8.8

- old
+ new

@@ -14,11 +14,11 @@ - [Searching](#searching) - [Non-standard Operations](#non-standard-operations) <!-- END doctoc generated TOC please keep comment here to allow auto update --> -[![Circle CI](https://circleci.com/gh/NetSweet/netsuite/tree/master.svg?style=svg)](https://circleci.com/gh/NetSweet/netsuite/tree/master) +[![Ruby](https://github.com/NetSweet/netsuite/actions/workflows/main.yml/badge.svg)](https://github.com/NetSweet/netsuite/actions/workflows/main.yml) [![Slack Status](https://opensuite-slackin.herokuapp.com/badge.svg)](http://opensuite-slackin.herokuapp.com) [![Gem Version](https://badge.fury.io/rb/netsuite.svg)](http://badge.fury.io/rb/netsuite) # NetSuite SuiteTalk API Ruby Gem @@ -89,11 +89,11 @@ wsdl_domain 'tstdrv1576318.suitetalk.api.netsuite.com' # the endpoint indicated in the > 2018_2 wsdl is invalid # you must set the endpoint directly # https://github.com/NetSweet/netsuite/pull/473 - endpoint "#{wsdl_domain}/services/NetSuitePort_#{api_version}" + endpoint "https://#{wsdl_domain}/services/NetSuitePort_#{api_version}" end ``` The `wsdl_domain` configuration is most important. Note that if you use `wsdl` or other configuration options below, you'll want to look at the configuration source to understand more about how the different options interact with each other. Some of the configuration options will mutate the state of other options. @@ -171,11 +171,11 @@ api_version '2016_2' # the endpoint indicated in the > 2018_2 wsdl is invalid # you must set the endpoint directly # https://github.com/NetSweet/netsuite/pull/473 - endpoint "#{wsdl_domain}/services/NetSuitePort_#{api_version}" + endpoint "https://#{wsdl_domain}/services/NetSuitePort_#{api_version}" end ``` # Usage @@ -433,10 +433,12 @@ 'platformCommon:internalId/' => {} ], 'tranSales:itemJoin' => [ 'platformCommon:customFieldList' => [ 'platformCore:customField/' => { - '@internalId' => 'custitem_apcategoryforsales', + '@scriptId' => 'custitem_apcategoryforsales', + # Or, for API versions 2013.1 and older: + # '@internalId' => 'custitem_apcategoryforsales', '@xsi:type' => "platformCore:SearchColumnSelectCustomField" } ] ] },