lob 6.6.2 → 7.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -10,7 +10,12 @@
10
10
 
11
11
  [![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][npm-url] [![Build Status](https://travis-ci.org/lob/lob-node.svg?branch=master)](https://travis-ci.org/lob/lob-node) [![Dependency Status](https://david-dm.org/lob/lob-node.svg)](https://david-dm.org/lob/lob-node) [![Dev Dependency Status](https://david-dm.org/lob/lob-node/dev-status.svg)](https://david-dm.org/lob/lob-node) [![Coverage Status](https://coveralls.io/repos/lob/lob-node/badge.svg?branch=master)](https://coveralls.io/r/lob/lob-node?branch=master)
12
12
 
13
- Node.js wrapper for the [Lob.com](https://lob.com) API. See full Lob.com documentation [here](https://lob.com/docs/node). For best results, be sure that you're using [the latest version](https://lob.com/docs/node#version) of the Lob API and the latest version of the Node wrapper.
13
+ Node.js wrapper for the [Lob.com](https://lob.com) API. See full Lob.com documentation [here](https://lob.com/docs/node).
14
+ ******
15
+ Starting a new project, we recommend using our <a href="https://github.com/lob/lob-typescript-sdk"><strong>TypeScript SDK</strong></a>!
16
+
17
+ Move your existing project from lob-node to lob-typescript-sdk? <a href="https://github.com/lob/lob-typescript-sdk/blob/main/Migration.md">Checkout this migration guide.</a>
18
+ ******
14
19
 
15
20
  ## Table of Contents
16
21
 
@@ -109,7 +114,7 @@ We've provided various examples for you to try out [here](https://github.com/lob
109
114
 
110
115
  There are simple scripts to demonstrate how to create all the core Lob objects (checks, letters, postcards. etc.) as well as more complex examples that utilize other libraries and external files.
111
116
 
112
- #### Accessing Response Headers
117
+ ### Accessing Response Headers
113
118
 
114
119
  You can access response headers via a hidden `_response` property.
115
120
 
package/lib/index.js CHANGED
@@ -3,7 +3,7 @@
3
3
  const ClientVersion = require('../package.json').version;
4
4
  const Resources = require('./resources');
5
5
 
6
- const LOB_HOST = 'https://api.lob.com/v1/';
6
+ const LOB_HOST = process.env.LOB_HOST || 'https://api.lob.com/v1/';
7
7
  const LOB_USERAGENT = `Lob/v1 NodeBindings/${ClientVersion}`;
8
8
 
9
9
  const Lob = function (apiKey, options) {
@@ -0,0 +1,34 @@
1
+ 'use strict';
2
+
3
+ const ResourceBase = require('./resourceBase');
4
+
5
+ class Campaigns extends ResourceBase {
6
+
7
+ constructor (config) {
8
+ super('campaigns', config);
9
+ }
10
+
11
+ list (options, callback) {
12
+ if (typeof options === 'function') {
13
+ callback = options;
14
+ options = {};
15
+ }
16
+
17
+ return this._transmit('GET', null, options, null, callback);
18
+ }
19
+
20
+ retrieve (id, callback) {
21
+ return this._transmit('GET', id, null, null, callback);
22
+ }
23
+
24
+ delete (id, callback) {
25
+ return this._transmit('DELETE', id, null, null, callback);
26
+ }
27
+
28
+ create (params, callback) {
29
+ return this._transmit('POST', null, null, params, callback);
30
+ }
31
+
32
+ }
33
+
34
+ module.exports = Campaigns;
@@ -5,6 +5,7 @@ module.exports = {
5
5
  bankAccounts: require('./bankAccounts'),
6
6
  bulkIntlVerifications: require('./bulkIntlVerifications'),
7
7
  bulkUSVerifications: require('./bulkUSVerifications'),
8
+ campaigns: require('./campaigns'),
8
9
  cards: require('./cards'),
9
10
  cardOrders: require('./cardOrders'),
10
11
  checks: require('./checks'),
package/package.json CHANGED
@@ -10,7 +10,7 @@
10
10
  "Lob.com",
11
11
  "printing"
12
12
  ],
13
- "version": "6.6.2",
13
+ "version": "7.0.1",
14
14
  "homepage": "https://github.com/lob/lob-node",
15
15
  "author": "Lob <support@lob.com> (https://lob.com/)",
16
16
  "dependencies": {
@@ -23,10 +23,10 @@
23
23
  "cross-env": "^5.2.0",
24
24
  "csv-parse": "^4.4.6",
25
25
  "eslint": "^8.6.0",
26
- "eslint-config-lob": "^1.0.1",
26
+ "eslint-config-lob": "^5.2.0",
27
27
  "generate-changelog": "^1.0.0",
28
28
  "json-2-csv": "^3.15.1",
29
- "mocha": "^9.1.3",
29
+ "mocha": "^10.0.0",
30
30
  "moment": "^2.22.1",
31
31
  "nyc": "^15.1.0",
32
32
  "p-map": "^2.1.0",
@@ -39,7 +39,8 @@
39
39
  "bugs:": "https://github.com/lob/lob-node/issues",
40
40
  "main": "./lib/index",
41
41
  "engines": {
42
- "node": ">= 10.0.0"
42
+ "node": ">= 20.0.0",
43
+ "npm": ">= 11.5.1"
43
44
  },
44
45
  "scripts": {
45
46
  "test": "cross-env NODE_ENV=test nyc mocha test --recursive --timeout 30000",
package/CHANGELOG.md DELETED
@@ -1,297 +0,0 @@
1
- ### 6.6.1 (2022-04-11)
2
- ##### Maintenance
3
- * bump minimist from 1.2.0 to 1.2.6
4
- * bump moment from 2.29.1 to 2.29.2
5
-
6
- ### 6.6.1 (2022-04-05)
7
- ##### Maintenance
8
- * **autocomplete** add query param for address casing
9
- * Update dependency version
10
- * Updates to CI process
11
- * Updates to Repo branch naming
12
-
13
- ### 6.5.5 (2022-01-14)
14
- ##### Maintenance
15
- * Removed Bluebird dependency and replaced with p-map
16
- * Updated 4 out of date dev dependencies
17
- * Updated min required version of NodeJS to 10
18
- * Removed package-lock.json from gitignore - it is now included in the repo.
19
-
20
- ### 6.5.3 (2022-01-04)
21
-
22
- ##### Features
23
- * **templates** add support for HTML templates endpoint ([PR_258](https://github.com/lob/lob-node/pull/258))
24
-
25
- ### 6.5.2 (2021-10-18)
26
-
27
- ##### Bug Fix
28
- * **cards:** adds card update route to expose cards update endpoint in SDK. ([PR_256](https://github.com/lob/lob-node/pull/256)) ([6870842](https://github.com/lob/lob-node/pull/256/commits/68708423b03c40c277a183285920b1408d234e4b))
29
-
30
- ### 6.5.1 (2021-10-14)
31
-
32
- ##### Bug Fix
33
- * **card orders:** updates the card orders "quantity_ordered" field to "quantity" in the integration test & example to reflect the recent change in Lob API endpoint for creating card orders. ([PR_254](https://github.com/lob/lob-node/pull/254)) ([9d3a261](https://github.com/lob/lob-node/commit/9d3a261ea3e9dace1e5cd79f43c5cdb40568f6c2))
34
-
35
- ### 6.5.0 (2021-10-13)
36
-
37
- ##### Features
38
- * **cards:** add support for cards endpoint ([PR_252](https://github.com/lob/lob-node/pull/252)) ([e744da5](https://github.com/lob/lob-node/pull/252/commits/e744da5a96543ef4df8245a554e2cf325b79bdfd))
39
- * **card_orders:** add support for card orders endpoint ([PR_252](https://github.com/lob/lob-node/pull/252)) ([35bc050](https://github.com/lob/lob-node/pull/252/commits/35bc05046e2cd06029dec6e8799f82481cd2078a))
40
- * **examples:** add examples for creating a card and card order ([PR_252](https://github.com/lob/lob-node/pull/252)) ([1c41494](https://github.com/lob/lob-node/pull/252/commits/1c41494d6a46414f2f9bd5bcd26ed589cff39a06))
41
-
42
- ### 6.4.0 (2021-09-21)
43
-
44
- ##### New Features
45
-
46
- * **us_verifications:** Reverse Geocoding endpoint ([#250](https://github.com/lob/lob-node/pull/250)) ([ea1e49df](https://github.com/lob/lob-node/commit/ea1e49df8cace3938acd34811100e8df553a8180))
47
- * **examples:** added a bunch of examples which WERE in the old docs ([#249](https://github.com/lob/lob-node/pull/249)) ([bba10957](https://github.com/lob/lob-node/commit/bba109573d379c09f4e6445da263b163ee7184f6))
48
-
49
- ### 6.3.0 (2021-08-27)
50
-
51
- #### 6.2.1 (2021-07-28)
52
-
53
- ##### Chores
54
-
55
- * **deps:**
56
- * bump hosted-git-info from 2.1.4 to 2.8.9 ([#241](https://github.com/lob/lob-node/pull/241)) ([a10ed786](https://github.com/lob/lob-node/commit/a10ed786b04ecf4f4380656b2f808996fd7537bb))
57
- * bump lodash from 4.17.19 to 4.17.21 ([#239](https://github.com/lob/lob-node/pull/239)) ([b38f7e5e](https://github.com/lob/lob-node/commit/b38f7e5e818385d1435724d23de19513110a11e1))
58
- * bump handlebars from 4.5.3 to 4.7.7 ([#238](https://github.com/lob/lob-node/pull/238)) ([72198ab6](https://github.com/lob/lob-node/commit/72198ab65555c8b28c7199570b171aa497e043d7))
59
- * bump acorn from 6.2.0 to 6.4.2 ([#233](https://github.com/lob/lob-node/pull/233)) ([533d8309](https://github.com/lob/lob-node/commit/533d83096b50402a579ea8ef5da82915518454cc))
60
- * bump yargs-parser from 13.1.1 to 13.1.2 ([#230](https://github.com/lob/lob-node/pull/230)) ([96cd091c](https://github.com/lob/lob-node/commit/96cd091ce6bf5c93dd1dde6855c1734ce2067112))
61
- * bump lodash from 4.17.14 to 4.17.19 ([#228](https://github.com/lob/lob-node/pull/228)) ([48e444d1](https://github.com/lob/lob-node/commit/48e444d11a49815f685e11675e307821e4ee12f1))
62
- * **node14:** add node14 for travis ([#240](https://github.com/lob/lob-node/pull/240)) ([15d83747](https://github.com/lob/lob-node/commit/15d8374798a9f9c79dd6a5db9d566ac285b84b95))
63
-
64
- #### 6.2.0 (2021-05-03)
65
-
66
- ##### New Features
67
-
68
- * **self-mailers:** Add support for Self Mailers ([#236](https://github.com/lob/lob-node/pull/236))
69
-
70
- ##### Chores
71
-
72
- * **deps:** bump y18n from 4.0.0 to 4.0.1 ([#235](https://github.com/lob/lob-node/pull/235)) ([81cbe7b0](https://github.com/lob/lob-node/commit/81cbe7b09f9b86a02502f6c2de0c8b6471826410))
73
-
74
- ##### Bug Fixes
75
-
76
- * **README:** correct Bank Accounts documentation link ([#234](https://github.com/lob/lob-node/pull/234)) ([f7f7609d](https://github.com/lob/lob-node/commit/f7f7609d439f1a6187af2b4f7f7a8765f3d47ea5))
77
-
78
- #### 6.1.1 (2020-11-06)
79
-
80
- ##### Bug Fixes
81
-
82
- * **merge-variables:** convert merge variables to JSON ([#232](https://github.com/lob/lob-node/pull/232)) ([5352dea7](https://github.com/lob/lob-node/commit/5352dea7bbb9ddba12da82967a317edcfda0bfca))
83
-
84
- ### 6.1.0 (2020-04-15)
85
-
86
- ##### Chores
87
-
88
- * **deps:**
89
- * csv-parse@4.4.6, travis node v12, docs (#222) ([7ca4eb05](https://github.com/lob/lob-node/commit/7ca4eb05c8fb149bfdbf3c4fd3e9ed119e73e7d1))
90
- * bump eslint-utils from 1.4.0 to 1.4.2 (#217) ([212789c8](https://github.com/lob/lob-node/commit/212789c894189544e8710c0ec1619d6fcd76b3d4))
91
-
92
- ##### New Features
93
-
94
- * **resource:** add ability to specify custom HTTP agent (#224) ([bf925b1c](https://github.com/lob/lob-node/commit/bf925b1c3e54babdd9151de0d1b46ed97b4d61cb))
95
-
96
- ##### Bug Fixes
97
-
98
- * **intl-verifications:** fixed failing test (#219) ([f2b712ad](https://github.com/lob/lob-node/commit/f2b712ad93af4237a4dbb1ba565bc034a9856710))
99
-
100
- ##### Tests
101
-
102
- * **plc:** add tests for new versions (template syntax and cursor pagination) (#226) ([d5806217](https://github.com/lob/lob-node/commit/d580621732acec840bb28532ecb8eb9132e64b3b))
103
-
104
- #### 6.0.6 (2019-07-19)
105
-
106
- ##### Chores
107
-
108
- * **deps:**
109
- * upgrade vulnerable packages ([#216](https://github.com/lob/lob-node/pull/216)) ([a938fc23](https://github.com/lob/lob-node/commit/a938fc23caf38b87ea6791219d4883e862cdd1c9))
110
- * bump lodash from 4.17.11 to 4.17.14 ([#215](https://github.com/lob/lob-node/pull/215)) ([6d6b0436](https://github.com/lob/lob-node/commit/6d6b0436c8caa15d65bfe0534752842c08ee555d))
111
-
112
- #### 6.0.5 (2019-02-14)
113
-
114
- ##### Chores
115
-
116
- * **lib:** fixed npm scripts on windows, moved from istanbul to nyc ([#213](https://github.com/lob/lob-node/pull/213)) ([be91922d](https://github.com/lob/lob-node/commit/be91922d59e4fa9cc747c0e8ae2523b6f5d319c6))
117
-
118
- #### 6.0.4 (2019-01-30)
119
-
120
- ##### New Features
121
-
122
- * **postcards:** add ability to modify concurrency ([4a3bbf37](https://github.com/lob/lob-node/commit/4a3bbf373727c7c2bd9098b8425988a4adfd70d8))
123
-
124
- ##### Bug Fixes
125
-
126
- * **resource-base:** handle undefined multipart form value ([#212](https://github.com/lob/lob-node/pull/212)) ([711261dc](https://github.com/lob/lob-node/commit/711261dc23d9f09e8ae7050248068219775fb6eb))
127
-
128
- #### 6.0.3 (2019-1-7)
129
-
130
- ##### Chores
131
-
132
- * **assets:** update links ([5d7f66f0](https://github.com/lob/lob-node/commit/5d7f66f0487151a3b50b8d4581fe5b2cfa9474a9))
133
-
134
- ##### Tests
135
-
136
- * **api-key:**
137
- * remove lob api key from tests and examples ([93fee77a](https://github.com/lob/lob-node/commit/93fee77a156c53eb9454fc0be3a4d220e1943d08))
138
- * remove lob api key from tests and examples ([062022b3](https://github.com/lob/lob-node/commit/062022b3cc89b921db4a1dec863d687d0db9dabb))
139
-
140
- #### 6.0.2 (2018-12-3)
141
-
142
- ##### Bug Fixes
143
-
144
- * **resource-base:** default body to empty object ([70f9c804](https://github.com/lob/lob-node/commit/70f9c804e1dabd2360afcf307e2e98b4787d46d9))
145
- * **deps:**
146
- * upgrade rest of vulnerable deps ([3b84d7e0](https://github.com/lob/lob-node/commit/3b84d7e09b29b7cbd4718396f8fba7d74bc5b7ec))
147
- * upgrade mocha (and growl) version ([95bdf700](https://github.com/lob/lob-node/commit/95bdf700d99986d03cb85ad09d300df1557e8abf))
148
- * **addresses:** fix broken test (#202) ([e560d6bc](https://github.com/lob/lob-node/commit/e560d6bc207f8d5964470ce1b9b9883829f198e3))
149
-
150
- #### 6.0.1 (2018-8-7)
151
-
152
- ##### Bug Fixes
153
-
154
- * **headers:** don't save request specific headers in configs (#201) ([cfa0fb19](https://github.com/lob/lob-node/commit/cfa0fb191581aef2aa4a42c8ca554446700956d8))
155
-
156
- ## 6.0.0 (2018-07-02)
157
-
158
- ##### New Features
159
-
160
- * **area-mail:** remove areas and routes resources ([a17d234d](https://github.com/lob/lob-node/commit/a17d234da61f38c9a254642109a85aa6a5622810))
161
-
162
- ### 5.3.0 (2018-05-21)
163
-
164
- ##### New Features
165
-
166
- * **us-autocompletions:** add USAutocompletions ([b64b02db](https://github.com/lob/lob-node/commit/b64b02db3712d92a6934c37629c804debdfcb42c))
167
-
168
- ##### Bug Fixes
169
-
170
- * **readme:** replace dependency status badge and upgrade vulnerable deps ([#198](https://github.com/lob/lob-node/pull/198)) ([b758c76d](https://github.com/lob/lob-node/commit/b758c76d3cdd24d379c13ad5189dce4e28efe45e))
171
-
172
- ### 5.2.0 (2018-3-13)
173
-
174
- ##### New Features
175
-
176
- * **us-verifications:** allow passing queries in verification creation (#197) ([84b9a44a](https://github.com/lob/lob-node/commit/84b9a44a0044eccc33bc8e1a839c54f9ae5cb067))
177
-
178
- ### 5.1.0 (2018-02-22)
179
-
180
- ##### Refactors
181
-
182
- * **resources:** remove dynamic requires ([#196](https://github.com/lob/lob-node/pull/196)) ([4036cdda](https://github.com/lob/lob-node/commit/4036cdda417fc859dbe737eef48c78d97e38c1a8))
183
-
184
- ## 5.0.0 (2017-12-11)
185
-
186
- ##### Chores
187
-
188
- * **lib:**
189
- * use es6 classes ([38ee703e](https://github.com/lob/lob-node/commit/38ee703e2e03703d4029a922144db53d51320c01))
190
- * es6 ify resource and test files ([fbd106f3](https://github.com/lob/lob-node/commit/fbd106f3554dafefc6c0e99d24959eaf7970b6fb))
191
- * **deprecate:** Deprecate support for 0.10 and 0.12 ([#187](https://github.com/lob/lob-node/pull/187)) ([bd0130d3](https://github.com/lob/lob-node/commit/bd0130d31ff7df699d423043098385cdbec362a7))
192
-
193
- ##### Bug Fixes
194
-
195
- * **test:** fix US verification test ([a0f10925](https://github.com/lob/lob-node/commit/a0f10925bd4e244d69c53c1e9097f3c04f70f5e5))
196
- * **auto-verify:** update tests to manage auto-verify ([107eeae3](https://github.com/lob/lob-node/commit/107eeae3702290174438fd38ef0ab6d9193b3725))
197
-
198
- ##### Other Changes
199
-
200
- * **postcards:** Remove message field from postcard ([c298fe4c](https://github.com/lob/lob-node/commit/c298fe4c5eace7d746b0215b3f7e5958ae0d18c8))
201
-
202
- ##### Refactors
203
-
204
- * **object:** Use Object.prototype.call, instead of assuming objects inherit from Object.prototype ([#191](https://github.com/lob/lob-node/pull/191)) ([8648cb0c](https://github.com/lob/lob-node/commit/8648cb0cc192650352a061a8c110d09d7345ccf3))
205
-
206
- ##### Tests
207
-
208
- * **intl:** Update international verifications tests ([5f38b3d3](https://github.com/lob/lob-node/commit/5f38b3d3df4b0d44bedd5bbbf5969a5279590b57))
209
-
210
- #### 4.1.1 (2017-08-09)
211
-
212
- ##### Chores
213
-
214
- * **examples:**
215
- * update to use merge_variables ([cc6c2d3c](https://github.com/lob/lob-node/commit/cc6c2d3c96492f52e0c6a173380985fa691ee86b))
216
- * Fix examples to use new us_verifications endpoint ([b6096944](https://github.com/lob/lob-node/commit/b6096944843d1a9ee67632ee6a27688bb3da381a))
217
-
218
- ##### New Features
219
-
220
- * **idempotency-key:** Add optional headers argument to create() methods to support idempotency-key ([99ef7e92](https://github.com/lob/lob-node/commit/99ef7e92cc8e57608553abdd3b8acd38abe08cf3))
221
- * **us-zip-lookups:** Add US Zip Code Lookup ([d51e8c8b](https://github.com/lob/lob-node/commit/d51e8c8b8f6a9facb1df94d80b230a2387a9e05f))
222
- * **delete:** Add delete method to postcards, letters, and checks chore(ignore): ignore Sublime files ([aa340b57](https://github.com/lob/lob-node/commit/aa340b579cc87999dc7c0ed1cc571e30cefafbda))
223
-
224
- ##### Bug Fixes
225
-
226
- * **readme:** update documentation ([73afa906](https://github.com/lob/lob-node/commit/73afa906bd393097a3a4d18988e80f8bf6c4308b))
227
-
228
- #### 4.1.1 (2017-08-09)
229
-
230
- ##### Chores
231
-
232
- * **examples:**
233
- * update to use merge_variables ([cc6c2d3c](https://github.com/lob/lob-node/commit/cc6c2d3c96492f52e0c6a173380985fa691ee86b))
234
- * Fix examples to use new us_verifications endpoint ([b6096944](https://github.com/lob/lob-node/commit/b6096944843d1a9ee67632ee6a27688bb3da381a))
235
-
236
- ##### New Features
237
-
238
- * **idempotency-key:** Add optional headers argument to create() methods to support idempotency-key ([99ef7e92](https://github.com/lob/lob-node/commit/99ef7e92cc8e57608553abdd3b8acd38abe08cf3))
239
- * **us-zip-lookups:** Add US Zip Code Lookup ([d51e8c8b](https://github.com/lob/lob-node/commit/d51e8c8b8f6a9facb1df94d80b230a2387a9e05f))
240
- * **delete:** Add delete method to postcards, letters, and checks chore(ignore): ignore Sublime files ([aa340b57](https://github.com/lob/lob-node/commit/aa340b579cc87999dc7c0ed1cc571e30cefafbda))
241
-
242
- ##### Bug Fixes
243
-
244
- * **readme:** update documentation ([73afa906](https://github.com/lob/lob-node/commit/73afa906bd393097a3a4d18988e80f8bf6c4308b))
245
-
246
- ## 4.0.0 (2017-5-17)
247
-
248
- ##### Chores
249
-
250
- * **mock:** use mock.lob.com ([1fed1c75](https://github.com/lob/lob-node/commit/1fed1c753eeb4f6a0ec15ee4f3619c2758d7c08e))
251
- * **jobs:** removes jobs, objects, settings endpoints ([bbfd446e](https://github.com/lob/lob-node/commit/bbfd446e85f43f870d1c40ed76f6ec7d9ffc8281))
252
-
253
- ##### Documentation Changes
254
-
255
- * **contributing:** changed out-of-date link to valid ([96e21cff](https://github.com/lob/lob-node/commit/96e21cffa16efbe5c5cb3473368ca0362dfbb057))
256
-
257
- ##### New Features
258
-
259
- * **verifications:** add us and intl verification endpoints ENG-2769 ([13f5ed8c](https://github.com/lob/lob-node/commit/13f5ed8c3b1297707f077116d5770dea35c283fa))
260
- * **version:** support Node versions 0.12, 4, 5, and 6. ([7754b22f](https://github.com/lob/lob-node/commit/7754b22f020343b5adb93e4b9c2a5e8241023cfc))
261
-
262
- ##### Bug Fixes
263
-
264
- * **test:** fixes broken address test ([f22dcf8d](https://github.com/lob/lob-node/commit/f22dcf8d6041c58e5dc766dbf0196d8d62a22130))
265
- * **examples:** fix typo ([50bb5487](https://github.com/lob/lob-node/commit/50bb5487ea392d16dd5782b3f51fd398a911684a))
266
-
267
- ### 3.9.0 (2016-4-15)
268
-
269
- ##### New Features
270
-
271
- * **response:** allow access to response headers ([3c4d6514](https://github.com/lob/lob-node/commit/3c4d65149a133b196385849a1296d55b360cc202))
272
- * **api-version:** support 2016-03-21 ([a304c9cf](https://github.com/lob/lob-node/commit/a304c9cfe927138b8b37345c7ffd2c1fb9f0518f))
273
-
274
- ### 3.8.0 (2016-2-2)
275
-
276
- ##### Chores
277
-
278
- * **release:** add release scripts ([7cc243eb](https://github.com/lob/lob-node/commit/7cc243eb))
279
-
280
- ##### New Features
281
-
282
- * **version:** support api version 2016-01-19 ([6cb6cec0](https://github.com/lob/lob-node/commit/6cb6cec0))
283
- * **bank-accounts:** standardize verify function ([1d0b37c2](https://github.com/lob/lob-node/commit/1d0b37c2))
284
- * **deps:** remove gulp ([a2c164a7](https://github.com/lob/lob-node/commit/a2c164a7))
285
-
286
- ##### Bug Fixes
287
-
288
- * **errors:** always throw Error object ([41c88f97](https://github.com/lob/lob-node/commit/41c88f97))
289
- * **readme:** update testing instructions ([f193cb0a](https://github.com/lob/lob-node/commit/f193cb0a))
290
-
291
- ##### Tests
292
-
293
- * **resources:** standardize and remove unnecessary tests ([ad0e45ed](https://github.com/lob/lob-node/commit/ad0e45ed))
294
- * **setup:** use global expect, api key, Lob ([6e44ce0b](https://github.com/lob/lob-node/commit/6e44ce0b))
295
-
296
- ## [**2.6.2**](https://github.com/lob/lob-node/releases/tag/v2.6.2)
297
- - [**#88**] (https://github.com/lob/lob-node/pull/88) changed asset URLs to use lob-assets bucket