lob 5.1.0 → 6.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (471) hide show
  1. checksums.yaml +5 -5
  2. data/CODE_SNIPPETS.md +1871 -0
  3. data/Gemfile +6 -1
  4. data/Gemfile.lock +72 -0
  5. data/LICENSE +21 -0
  6. data/MIGRATION.md +174 -0
  7. data/README.md +70 -154
  8. data/Rakefile +7 -5
  9. data/__tests__/Api/Address.unit.rb +210 -0
  10. data/__tests__/Api/BankAccount.unit.rb +244 -0
  11. data/__tests__/Api/BillingGroup.unit.rb +170 -0
  12. data/__tests__/Api/Card.unit.rb +183 -0
  13. data/__tests__/Api/CardOrder.unit.rb +89 -0
  14. data/__tests__/Api/Check.unit.rb +185 -0
  15. data/__tests__/Api/IntlAutocompletion.unit.rb +43 -0
  16. data/__tests__/Api/IntlVerification.unit.rb +71 -0
  17. data/__tests__/Api/Letter.unit.rb +191 -0
  18. data/__tests__/Api/Postcard.unit.rb +189 -0
  19. data/__tests__/Api/Require.unit.rb +21 -0
  20. data/__tests__/Api/ReverseGeocodeLookup.unit.rb +43 -0
  21. data/__tests__/Api/SelfMailer.unit.rb +190 -0
  22. data/__tests__/Api/Template.unit.rb +165 -0
  23. data/__tests__/Api/TemplateVersion.unit.rb +165 -0
  24. data/__tests__/Api/UsAutocompletion.unit.rb +42 -0
  25. data/__tests__/Api/UsVerification.unit.rb +71 -0
  26. data/__tests__/Api/ZipLookup.unit.rb +42 -0
  27. data/__tests__/Integration/Address.spec.rb +200 -0
  28. data/__tests__/Integration/BankAccount.spec.rb +243 -0
  29. data/__tests__/Integration/BillingGroup.spec.rb +163 -0
  30. data/__tests__/Integration/Card.spec.rb +198 -0
  31. data/__tests__/Integration/CardOrder.spec.rb +122 -0
  32. data/__tests__/Integration/Check.spec.rb +361 -0
  33. data/__tests__/Integration/IntlAutocompletion.spec.rb +54 -0
  34. data/__tests__/Integration/IntlVerification.spec.rb +90 -0
  35. data/__tests__/Integration/Letter.spec.rb +286 -0
  36. data/__tests__/Integration/Postcard.spec.rb +214 -0
  37. data/__tests__/Integration/ReverseGeocodeLookup.spec.rb +30 -0
  38. data/__tests__/Integration/SelfMailer.spec.rb +270 -0
  39. data/__tests__/Integration/Template.spec.rb +221 -0
  40. data/__tests__/Integration/TemplateVersion.spec.rb +275 -0
  41. data/__tests__/Integration/UsAutocompletion.spec.rb +54 -0
  42. data/__tests__/Integration/UsVerification.spec.rb +102 -0
  43. data/__tests__/Integration/ZipLookup.spec.rb +29 -0
  44. data/__tests__/TestFixtures.rb +36 -0
  45. data/docs/Address.md +52 -0
  46. data/docs/AddressDeletion.md +22 -0
  47. data/docs/AddressDomestic.md +40 -0
  48. data/docs/AddressDomesticExpanded.md +40 -0
  49. data/docs/AddressEditable.md +40 -0
  50. data/docs/AddressList.md +28 -0
  51. data/docs/AddressesApi.md +303 -0
  52. data/docs/BankAccount.md +44 -0
  53. data/docs/BankAccountDeletion.md +22 -0
  54. data/docs/BankAccountList.md +28 -0
  55. data/docs/BankAccountVerify.md +18 -0
  56. data/docs/BankAccountWritable.md +28 -0
  57. data/docs/BankAccountsApi.md +376 -0
  58. data/docs/BankTypeEnum.md +15 -0
  59. data/docs/BillingGroup.md +28 -0
  60. data/docs/BillingGroupEditable.md +20 -0
  61. data/docs/BillingGroupList.md +26 -0
  62. data/docs/BillingGroupsApi.md +305 -0
  63. data/docs/Buckslip.md +60 -0
  64. data/docs/BuckslipDeletion.md +20 -0
  65. data/docs/BuckslipEditable.md +24 -0
  66. data/docs/BuckslipOrder.md +42 -0
  67. data/docs/BuckslipOrderEditable.md +18 -0
  68. data/docs/BuckslipOrdersApi.md +157 -0
  69. data/docs/BuckslipOrdersList.md +26 -0
  70. data/docs/BuckslipUpdatable.md +22 -0
  71. data/docs/BuckslipsApi.md +372 -0
  72. data/docs/BuckslipsList.md +28 -0
  73. data/docs/BulkError.md +18 -0
  74. data/docs/BulkErrorProperties.md +20 -0
  75. data/docs/Campaign.md +52 -0
  76. data/docs/CampaignCreative.md +42 -0
  77. data/docs/CampaignDeletion.md +20 -0
  78. data/docs/CampaignUpdatable.md +36 -0
  79. data/docs/CampaignWritable.md +36 -0
  80. data/docs/CampaignsApi.md +376 -0
  81. data/docs/CampaignsList.md +28 -0
  82. data/docs/Card.md +54 -0
  83. data/docs/CardDeletion.md +22 -0
  84. data/docs/CardEditable.md +24 -0
  85. data/docs/CardList.md +28 -0
  86. data/docs/CardOrder.md +42 -0
  87. data/docs/CardOrderEditable.md +18 -0
  88. data/docs/CardOrderList.md +26 -0
  89. data/docs/CardOrdersApi.md +157 -0
  90. data/docs/CardUpdatable.md +22 -0
  91. data/docs/CardsApi.md +372 -0
  92. data/docs/Check.md +68 -0
  93. data/docs/CheckDeletion.md +22 -0
  94. data/docs/CheckEditable.md +48 -0
  95. data/docs/CheckList.md +28 -0
  96. data/docs/ChecksApi.md +315 -0
  97. data/docs/CmpScheduleType.md +15 -0
  98. data/docs/CmpUseType.md +15 -0
  99. data/docs/CountryExtended.md +15 -0
  100. data/docs/CountryExtendedExpanded.md +15 -0
  101. data/docs/CreativePatch.md +22 -0
  102. data/docs/CreativeResponse.md +42 -0
  103. data/docs/CreativeWritable.md +34 -0
  104. data/docs/CreativesApi.md +226 -0
  105. data/docs/CustomEnvelopeReturned.md +22 -0
  106. data/docs/DefaultApi.md +75 -0
  107. data/docs/DeliverabilityAnalysis.md +46 -0
  108. data/docs/DpvFootnote.md +15 -0
  109. data/docs/EngineHtml.md +15 -0
  110. data/docs/EventType.md +24 -0
  111. data/docs/Events.md +28 -0
  112. data/docs/Export.md +32 -0
  113. data/docs/ExportModel.md +18 -0
  114. data/docs/GeocodeAddresses.md +20 -0
  115. data/docs/GeocodeComponents.md +20 -0
  116. data/docs/HTTPValidationError.md +18 -0
  117. data/docs/IdentityValidation.md +34 -0
  118. data/docs/IdentityValidationApi.md +78 -0
  119. data/docs/InlineObject.md +18 -0
  120. data/docs/IntlAutocompletions.md +20 -0
  121. data/docs/IntlAutocompletionsApi.md +82 -0
  122. data/docs/IntlAutocompletionsWritable.md +26 -0
  123. data/docs/IntlComponents.md +26 -0
  124. data/docs/IntlSuggestions.md +30 -0
  125. data/docs/IntlVerification.md +38 -0
  126. data/docs/IntlVerificationOrError.md +40 -0
  127. data/docs/IntlVerificationWritable.md +32 -0
  128. data/docs/IntlVerifications.md +20 -0
  129. data/docs/IntlVerificationsApi.md +153 -0
  130. data/docs/IntlVerificationsPayload.md +18 -0
  131. data/docs/Letter.md +72 -0
  132. data/docs/LetterCustomEnvelope.md +22 -0
  133. data/docs/LetterDeletion.md +22 -0
  134. data/docs/LetterDetailsReturned.md +36 -0
  135. data/docs/LetterDetailsWritable.md +32 -0
  136. data/docs/LetterEditable.md +52 -0
  137. data/docs/LetterList.md +28 -0
  138. data/docs/LettersApi.md +317 -0
  139. data/docs/LobConfidenceScore.md +20 -0
  140. data/docs/LobError.md +22 -0
  141. data/docs/Location.md +20 -0
  142. data/docs/LocationAnalysis.md +22 -0
  143. data/docs/MailType.md +15 -0
  144. data/docs/MultiLineAddress.md +32 -0
  145. data/docs/MultipleComponents.md +30 -0
  146. data/docs/MultipleComponentsIntl.md +30 -0
  147. data/docs/MultipleComponentsList.md +18 -0
  148. data/docs/PlaceholderModel.md +28 -0
  149. data/docs/Postcard.md +60 -0
  150. data/docs/PostcardDeletion.md +22 -0
  151. data/docs/PostcardDetailsReturned.md +26 -0
  152. data/docs/PostcardDetailsWritable.md +20 -0
  153. data/docs/PostcardEditable.md +40 -0
  154. data/docs/PostcardList.md +28 -0
  155. data/docs/PostcardSize.md +15 -0
  156. data/docs/PostcardsApi.md +317 -0
  157. data/docs/QrCode.md +30 -0
  158. data/docs/ReturnEnvelope.md +24 -0
  159. data/docs/ReverseGeocode.md +22 -0
  160. data/docs/ReverseGeocodeLookupsApi.md +82 -0
  161. data/docs/SelfMailer.md +48 -0
  162. data/docs/SelfMailerDeletion.md +22 -0
  163. data/docs/SelfMailerEditable.md +38 -0
  164. data/docs/SelfMailerList.md +28 -0
  165. data/docs/SelfMailerSize.md +15 -0
  166. data/docs/SelfMailersApi.md +317 -0
  167. data/docs/SortBy.md +20 -0
  168. data/docs/SortBy1.md +20 -0
  169. data/docs/SortBy2.md +20 -0
  170. data/docs/SortBy3.md +20 -0
  171. data/docs/SortByDateModified.md +20 -0
  172. data/docs/Suggestions.md +26 -0
  173. data/docs/Template.md +34 -0
  174. data/docs/TemplateDeletion.md +22 -0
  175. data/docs/TemplateList.md +28 -0
  176. data/docs/TemplateUpdate.md +20 -0
  177. data/docs/TemplateVersion.md +36 -0
  178. data/docs/TemplateVersionDeletion.md +22 -0
  179. data/docs/TemplateVersionList.md +28 -0
  180. data/docs/TemplateVersionUpdatable.md +20 -0
  181. data/docs/TemplateVersionWritable.md +22 -0
  182. data/docs/TemplateVersionsApi.md +384 -0
  183. data/docs/TemplateWritable.md +24 -0
  184. data/docs/TemplatesApi.md +376 -0
  185. data/docs/Thumbnail.md +22 -0
  186. data/docs/TrackingEventCertified.md +34 -0
  187. data/docs/TrackingEventDetails.md +24 -0
  188. data/docs/TrackingEventNormal.md +34 -0
  189. data/docs/Upload.md +44 -0
  190. data/docs/UploadCreateExport.md +20 -0
  191. data/docs/UploadFile.md +20 -0
  192. data/docs/UploadState.md +15 -0
  193. data/docs/UploadUpdatable.md +20 -0
  194. data/docs/UploadWritable.md +18 -0
  195. data/docs/UploadsApi.md +584 -0
  196. data/docs/UsAutocompletions.md +22 -0
  197. data/docs/UsAutocompletionsApi.md +78 -0
  198. data/docs/UsAutocompletionsWritable.md +26 -0
  199. data/docs/UsComponents.md +70 -0
  200. data/docs/UsVerification.md +38 -0
  201. data/docs/UsVerificationOrError.md +40 -0
  202. data/docs/UsVerifications.md +20 -0
  203. data/docs/UsVerificationsApi.md +157 -0
  204. data/docs/UsVerificationsWritable.md +32 -0
  205. data/docs/ValidationError.md +22 -0
  206. data/docs/Zip.md +26 -0
  207. data/docs/ZipCodeType.md +15 -0
  208. data/docs/ZipEditable.md +18 -0
  209. data/docs/ZipLookupCity.md +26 -0
  210. data/docs/ZipLookupsApi.md +78 -0
  211. data/git_push.sh +57 -0
  212. data/lib/lob.rb +1 -7
  213. data/lib/openapi_client/api/addresses_api.rb +318 -0
  214. data/lib/openapi_client/api/bank_accounts_api.rb +397 -0
  215. data/lib/openapi_client/api/billing_groups_api.rb +320 -0
  216. data/lib/openapi_client/api/buckslip_orders_api.rb +183 -0
  217. data/lib/openapi_client/api/buckslips_api.rb +385 -0
  218. data/lib/openapi_client/api/campaigns_api.rb +389 -0
  219. data/lib/openapi_client/api/card_orders_api.rb +183 -0
  220. data/lib/openapi_client/api/cards_api.rb +382 -0
  221. data/lib/openapi_client/api/checks_api.rb +337 -0
  222. data/lib/openapi_client/api/creatives_api.rb +244 -0
  223. data/lib/openapi_client/api/default_api.rb +79 -0
  224. data/lib/openapi_client/api/identity_validation_api.rb +90 -0
  225. data/lib/openapi_client/api/intl_autocompletions_api.rb +97 -0
  226. data/lib/openapi_client/api/intl_verifications_api.rb +165 -0
  227. data/lib/openapi_client/api/letters_api.rb +343 -0
  228. data/lib/openapi_client/api/postcards_api.rb +340 -0
  229. data/lib/openapi_client/api/reverse_geocode_lookups_api.rb +101 -0
  230. data/lib/openapi_client/api/self_mailers_api.rb +340 -0
  231. data/lib/openapi_client/api/template_versions_api.rb +440 -0
  232. data/lib/openapi_client/api/templates_api.rb +397 -0
  233. data/lib/openapi_client/api/uploads_api.rb +604 -0
  234. data/lib/openapi_client/api/us_autocompletions_api.rb +90 -0
  235. data/lib/openapi_client/api/us_verifications_api.rb +172 -0
  236. data/lib/openapi_client/api/zip_lookups_api.rb +90 -0
  237. data/lib/openapi_client/api_client.rb +392 -0
  238. data/lib/openapi_client/api_error.rb +57 -0
  239. data/lib/openapi_client/configuration.rb +279 -0
  240. data/lib/openapi_client/models/address.rb +616 -0
  241. data/lib/openapi_client/models/address_deletion.rb +303 -0
  242. data/lib/openapi_client/models/address_domestic.rb +522 -0
  243. data/lib/openapi_client/models/address_domestic_expanded.rb +521 -0
  244. data/lib/openapi_client/models/address_editable.rb +503 -0
  245. data/lib/openapi_client/models/address_list.rb +324 -0
  246. data/lib/openapi_client/models/bank_account.rb +576 -0
  247. data/lib/openapi_client/models/bank_account_deletion.rb +303 -0
  248. data/lib/openapi_client/models/bank_account_list.rb +324 -0
  249. data/lib/openapi_client/models/bank_account_verify.rb +264 -0
  250. data/lib/openapi_client/models/bank_account_writable.rb +387 -0
  251. data/lib/openapi_client/models/bank_type_enum.rb +37 -0
  252. data/lib/openapi_client/models/billing_group.rb +395 -0
  253. data/lib/openapi_client/models/billing_group_editable.rb +278 -0
  254. data/lib/openapi_client/models/billing_group_list.rb +314 -0
  255. data/lib/openapi_client/models/buckslip.rb +814 -0
  256. data/lib/openapi_client/models/buckslip_deletion.rb +257 -0
  257. data/lib/openapi_client/models/buckslip_editable.rb +316 -0
  258. data/lib/openapi_client/models/buckslip_order.rb +438 -0
  259. data/lib/openapi_client/models/buckslip_order_editable.rb +262 -0
  260. data/lib/openapi_client/models/buckslip_orders_list.rb +312 -0
  261. data/lib/openapi_client/models/buckslip_updatable.rb +289 -0
  262. data/lib/openapi_client/models/buckslips_list.rb +324 -0
  263. data/lib/openapi_client/models/bulk_error.rb +229 -0
  264. data/lib/openapi_client/models/bulk_error_properties.rb +274 -0
  265. data/lib/openapi_client/models/campaign.rb +549 -0
  266. data/lib/openapi_client/models/campaign_creative.rb +467 -0
  267. data/lib/openapi_client/models/campaign_deletion.rb +257 -0
  268. data/lib/openapi_client/models/campaign_updatable.rb +341 -0
  269. data/lib/openapi_client/models/campaign_writable.rb +373 -0
  270. data/lib/openapi_client/models/campaigns_list.rb +324 -0
  271. data/lib/openapi_client/models/card.rb +681 -0
  272. data/lib/openapi_client/models/card_deletion.rb +303 -0
  273. data/lib/openapi_client/models/card_editable.rb +318 -0
  274. data/lib/openapi_client/models/card_list.rb +324 -0
  275. data/lib/openapi_client/models/card_order.rb +438 -0
  276. data/lib/openapi_client/models/card_order_editable.rb +261 -0
  277. data/lib/openapi_client/models/card_order_list.rb +273 -0
  278. data/lib/openapi_client/models/card_updatable.rb +289 -0
  279. data/lib/openapi_client/models/check.rb +812 -0
  280. data/lib/openapi_client/models/check_deletion.rb +303 -0
  281. data/lib/openapi_client/models/check_editable.rb +537 -0
  282. data/lib/openapi_client/models/check_list.rb +324 -0
  283. data/lib/openapi_client/models/chk_use_type.rb +38 -0
  284. data/lib/openapi_client/models/cmp_schedule_type.rb +36 -0
  285. data/lib/openapi_client/models/cmp_use_type.rb +38 -0
  286. data/lib/openapi_client/models/country_extended.rb +254 -0
  287. data/lib/openapi_client/models/country_extended_expanded.rb +255 -0
  288. data/lib/openapi_client/models/creative_patch.rb +274 -0
  289. data/lib/openapi_client/models/creative_response.rb +444 -0
  290. data/lib/openapi_client/models/creative_writable.rb +400 -0
  291. data/lib/openapi_client/models/custom_envelope_returned.rb +319 -0
  292. data/lib/openapi_client/models/deliverability_analysis.rb +601 -0
  293. data/lib/openapi_client/models/dpv_footnote.rb +54 -0
  294. data/lib/openapi_client/models/engine_html.rb +37 -0
  295. data/lib/openapi_client/models/event_type.rb +325 -0
  296. data/lib/openapi_client/models/events.rb +365 -0
  297. data/lib/openapi_client/models/export.rb +422 -0
  298. data/lib/openapi_client/models/export_model.rb +262 -0
  299. data/lib/openapi_client/models/geocode_addresses.rb +237 -0
  300. data/lib/openapi_client/models/geocode_components.rb +291 -0
  301. data/lib/openapi_client/models/http_validation_error.rb +230 -0
  302. data/lib/openapi_client/models/identity_validation.rb +460 -0
  303. data/lib/openapi_client/models/inline_object.rb +229 -0
  304. data/lib/openapi_client/models/intl_autocompletions.rb +282 -0
  305. data/lib/openapi_client/models/intl_autocompletions_writable.rb +278 -0
  306. data/lib/openapi_client/models/intl_components.rb +314 -0
  307. data/lib/openapi_client/models/intl_suggestions.rb +372 -0
  308. data/lib/openapi_client/models/intl_verification.rb +463 -0
  309. data/lib/openapi_client/models/intl_verification_or_error.rb +466 -0
  310. data/lib/openapi_client/models/intl_verification_writable.rb +388 -0
  311. data/lib/openapi_client/models/intl_verifications.rb +250 -0
  312. data/lib/openapi_client/models/intl_verifications_payload.rb +263 -0
  313. data/lib/openapi_client/models/letter.rb +737 -0
  314. data/lib/openapi_client/models/letter_custom_envelope.rb +300 -0
  315. data/lib/openapi_client/models/letter_deletion.rb +303 -0
  316. data/lib/openapi_client/models/letter_details_returned.rb +393 -0
  317. data/lib/openapi_client/models/letter_details_writable.rb +390 -0
  318. data/lib/openapi_client/models/letter_editable.rb +532 -0
  319. data/lib/openapi_client/models/letter_list.rb +324 -0
  320. data/lib/openapi_client/models/lob_confidence_score.rb +299 -0
  321. data/lib/openapi_client/models/lob_error.rb +296 -0
  322. data/lib/openapi_client/models/location.rb +289 -0
  323. data/lib/openapi_client/models/location_analysis.rb +305 -0
  324. data/lib/openapi_client/models/ltr_use_type.rb +38 -0
  325. data/lib/openapi_client/models/mail_type.rb +37 -0
  326. data/lib/openapi_client/models/multi_line_address.rb +431 -0
  327. data/lib/openapi_client/models/multiple_components.rb +405 -0
  328. data/lib/openapi_client/models/multiple_components_intl.rb +377 -0
  329. data/lib/openapi_client/models/multiple_components_list.rb +263 -0
  330. data/lib/openapi_client/models/optional_address_column_mapping.rb +259 -0
  331. data/lib/openapi_client/models/placeholder_model.rb +273 -0
  332. data/lib/openapi_client/models/postcard.rb +656 -0
  333. data/lib/openapi_client/models/postcard_deletion.rb +303 -0
  334. data/lib/openapi_client/models/postcard_details_returned.rb +321 -0
  335. data/lib/openapi_client/models/postcard_details_writable.rb +242 -0
  336. data/lib/openapi_client/models/postcard_editable.rb +393 -0
  337. data/lib/openapi_client/models/postcard_list.rb +324 -0
  338. data/lib/openapi_client/models/postcard_size.rb +38 -0
  339. data/lib/openapi_client/models/psc_use_type.rb +38 -0
  340. data/lib/openapi_client/models/qr_code.rb +339 -0
  341. data/lib/openapi_client/models/required_address_column_mapping.rb +285 -0
  342. data/lib/openapi_client/models/return_envelope.rb +258 -0
  343. data/lib/openapi_client/models/reverse_geocode.rb +304 -0
  344. data/lib/openapi_client/models/self_mailer.rb +584 -0
  345. data/lib/openapi_client/models/self_mailer_deletion.rb +303 -0
  346. data/lib/openapi_client/models/self_mailer_editable.rb +384 -0
  347. data/lib/openapi_client/models/self_mailer_list.rb +324 -0
  348. data/lib/openapi_client/models/self_mailer_size.rb +38 -0
  349. data/lib/openapi_client/models/sfm_use_type.rb +38 -0
  350. data/lib/openapi_client/models/sort_by.rb +283 -0
  351. data/lib/openapi_client/models/sort_by1.rb +283 -0
  352. data/lib/openapi_client/models/sort_by2.rb +283 -0
  353. data/lib/openapi_client/models/sort_by3.rb +283 -0
  354. data/lib/openapi_client/models/sort_by_date_modified.rb +283 -0
  355. data/lib/openapi_client/models/suggestions.rb +343 -0
  356. data/lib/openapi_client/models/template.rb +406 -0
  357. data/lib/openapi_client/models/template_deletion.rb +303 -0
  358. data/lib/openapi_client/models/template_list.rb +324 -0
  359. data/lib/openapi_client/models/template_update.rb +272 -0
  360. data/lib/openapi_client/models/template_version.rb +423 -0
  361. data/lib/openapi_client/models/template_version_deletion.rb +303 -0
  362. data/lib/openapi_client/models/template_version_list.rb +324 -0
  363. data/lib/openapi_client/models/template_version_updatable.rb +257 -0
  364. data/lib/openapi_client/models/template_version_writable.rb +291 -0
  365. data/lib/openapi_client/models/template_writable.rb +309 -0
  366. data/lib/openapi_client/models/thumbnail.rb +300 -0
  367. data/lib/openapi_client/models/tracking_event_certified.rb +419 -0
  368. data/lib/openapi_client/models/tracking_event_details.rb +308 -0
  369. data/lib/openapi_client/models/tracking_event_normal.rb +409 -0
  370. data/lib/openapi_client/models/upload.rb +498 -0
  371. data/lib/openapi_client/models/upload_create_export.rb +283 -0
  372. data/lib/openapi_client/models/upload_file.rb +283 -0
  373. data/lib/openapi_client/models/upload_state.rb +42 -0
  374. data/lib/openapi_client/models/upload_updatable.rb +267 -0
  375. data/lib/openapi_client/models/upload_writable.rb +271 -0
  376. data/lib/openapi_client/models/uploads_metadata.rb +237 -0
  377. data/lib/openapi_client/models/us_autocompletions.rb +328 -0
  378. data/lib/openapi_client/models/us_autocompletions_writable.rb +274 -0
  379. data/lib/openapi_client/models/us_components.rb +788 -0
  380. data/lib/openapi_client/models/us_verification.rb +461 -0
  381. data/lib/openapi_client/models/us_verification_or_error.rb +459 -0
  382. data/lib/openapi_client/models/us_verifications.rb +250 -0
  383. data/lib/openapi_client/models/us_verifications_writable.rb +421 -0
  384. data/lib/openapi_client/models/validation_error.rb +263 -0
  385. data/lib/openapi_client/models/zip.rb +363 -0
  386. data/lib/openapi_client/models/zip_code_type.rb +40 -0
  387. data/lib/openapi_client/models/zip_editable.rb +246 -0
  388. data/lib/openapi_client/models/zip_lookup_city.rb +331 -0
  389. data/lib/openapi_client/version.rb +15 -0
  390. data/lib/openapi_client.rb +212 -0
  391. data/openapi_client.gemspec +37 -0
  392. data/spec/api/addresses_api_spec.rb +88 -0
  393. data/spec/api/bank_accounts_api_spec.rb +101 -0
  394. data/spec/api/billing_groups_api_spec.rb +89 -0
  395. data/spec/api/campaigns_api_spec.rb +100 -0
  396. data/spec/api/card_orders_api_spec.rb +62 -0
  397. data/spec/api/cards_api_spec.rb +99 -0
  398. data/spec/api/checks_api_spec.rb +93 -0
  399. data/spec/api/creatives_api_spec.rb +73 -0
  400. data/spec/api/default_api_spec.rb +46 -0
  401. data/spec/api/identity_validation_api_spec.rb +47 -0
  402. data/spec/api/intl_autocompletions_api_spec.rb +48 -0
  403. data/spec/api/intl_verifications_api_spec.rb +60 -0
  404. data/spec/api/letters_api_spec.rb +94 -0
  405. data/spec/api/postcards_api_spec.rb +94 -0
  406. data/spec/api/reverse_geocode_lookups_api_spec.rb +48 -0
  407. data/spec/api/self_mailers_api_spec.rb +94 -0
  408. data/spec/api/template_versions_api_spec.rb +105 -0
  409. data/spec/api/templates_api_spec.rb +101 -0
  410. data/spec/api/uploads_api_spec.rb +135 -0
  411. data/spec/api/us_autocompletions_api_spec.rb +47 -0
  412. data/spec/api/us_verifications_api_spec.rb +61 -0
  413. data/spec/api/zip_lookups_api_spec.rb +47 -0
  414. data/spec/api_client_spec.rb +226 -0
  415. data/spec/configuration_spec.rb +42 -0
  416. data/spec/spec_helper.rb +107 -13
  417. metadata +452 -140
  418. data/.gitignore +0 -18
  419. data/.travis.yml +0 -16
  420. data/CHANGELOG.md +0 -114
  421. data/CONTRIBUTING.md +0 -19
  422. data/LICENSE.txt +0 -22
  423. data/examples/README.md +0 -33
  424. data/examples/checks.rb +0 -48
  425. data/examples/csv_checks/create_checks.rb +0 -47
  426. data/examples/csv_checks/input.csv +0 -6
  427. data/examples/csv_letters/create_letters.rb +0 -40
  428. data/examples/csv_letters/input.csv +0 -6
  429. data/examples/csv_letters/letter_template.html +0 -33
  430. data/examples/csv_postcards/create_postcards.rb +0 -45
  431. data/examples/csv_postcards/input.csv +0 -7
  432. data/examples/csv_postcards/postcard_back.html +0 -38
  433. data/examples/csv_postcards/postcard_front.html +0 -25
  434. data/examples/csv_verify/input.csv +0 -7
  435. data/examples/csv_verify/verify.rb +0 -36
  436. data/examples/letters.rb +0 -72
  437. data/examples/postcards.rb +0 -86
  438. data/lib/lob/client.rb +0 -71
  439. data/lib/lob/errors/invalid_request_error.rb +0 -4
  440. data/lib/lob/errors/lob_error.rb +0 -20
  441. data/lib/lob/resources/address.rb +0 -14
  442. data/lib/lob/resources/bank_account.rb +0 -30
  443. data/lib/lob/resources/check.rb +0 -14
  444. data/lib/lob/resources/group.rb +0 -14
  445. data/lib/lob/resources/groups_member.rb +0 -66
  446. data/lib/lob/resources/intl_verifications.rb +0 -26
  447. data/lib/lob/resources/letter.rb +0 -14
  448. data/lib/lob/resources/postcard.rb +0 -14
  449. data/lib/lob/resources/resource_base.rb +0 -139
  450. data/lib/lob/resources/us_autocompletions.rb +0 -26
  451. data/lib/lob/resources/us_verifications.rb +0 -27
  452. data/lib/lob/resources/us_zip_lookups.rb +0 -26
  453. data/lib/lob/version.rb +0 -3
  454. data/lob.gemspec +0 -28
  455. data/spec/lob/errors/lob_error_spec.rb +0 -19
  456. data/spec/lob/resources/address_spec.rb +0 -55
  457. data/spec/lob/resources/bank_account_spec.rb +0 -60
  458. data/spec/lob/resources/check_spec.rb +0 -98
  459. data/spec/lob/resources/group_spec.rb +0 -50
  460. data/spec/lob/resources/intl_verifications_spec.rb +0 -28
  461. data/spec/lob/resources/letter_spec.rb +0 -94
  462. data/spec/lob/resources/member_spec.rb +0 -65
  463. data/spec/lob/resources/postcard_spec.rb +0 -135
  464. data/spec/lob/resources/resource_base_spec.rb +0 -75
  465. data/spec/lob/resources/us_autocompletions_spec.rb +0 -24
  466. data/spec/lob/resources/us_verifications_spec.rb +0 -31
  467. data/spec/lob/resources/us_zip_lookups_spec.rb +0 -23
  468. data/spec/lob_spec.rb +0 -48
  469. data/spec/samples/8.5x11.pdf +0 -0
  470. data/spec/samples/postcardback.pdf +2 -2287
  471. data/spec/samples/postcardfront.pdf +1 -1549
data/.travis.yml DELETED
@@ -1,16 +0,0 @@
1
- language: ruby
2
-
3
- rvm:
4
- - jruby-9.0.5.0
5
- - jruby-9.1.9.0
6
- - 2.1
7
- - 2.2
8
- - 2.3
9
- - 2.4
10
- - 2.5
11
- - 2.6
12
-
13
- env:
14
- JRUBY_OPTS=--2.0
15
-
16
- script: bundle exec rake test
data/CHANGELOG.md DELETED
@@ -1,114 +0,0 @@
1
- ## [**5.1.0**](https://github.com/lob/lob-ruby/releases/tag/v5.1.0)
2
- - [**176**](https://github.com/lob/lob-ruby/pull/176) Adds support for Group Members (beta feature)
3
- - [**175**](https://github.com/lob/lob-ruby/pull/175) Adds support for Groups (beta feature)
4
- - [**174**](https://github.com/lob/lob-ruby/pull/174) Add Ruby 2.5-6, remove API keys, other cleanup
5
- - [**173**](https://github.com/lob/lob-ruby/pull/173) Update example asset links
6
-
7
- ## 5.0.0
8
-
9
- Version 5.0.0 introduces a breaking change. It removes support for the area mail resources (`Areas` and `Routes`).
10
-
11
- * Removes `Lob.areas`.
12
- * Removes `Lob.routes`.
13
-
14
- ## [**4.3.0**](https://github.com/lob/lob-ruby/releases/tag/v4.3.0)
15
- - [**171**](https://github.com/lob/lob-ruby/pull/171) add USAutocompletions
16
- - [**170**](https://github.com/lob/lob-ruby/pull/170) Fix test name
17
-
18
- ## [**4.2.0**](https://github.com/lob/lob-ruby/releases/tag/v4.2.0)
19
- - [**169**](https://github.com/lob/lob-ruby/pull/169) Support 'case' param for us_verifications
20
- - [**168**](https://github.com/lob/lob-ruby/pull/168) tweak wording around handling numbers with leading zeros
21
- - [**167**](https://github.com/lob/lob-ruby/pull/167) remove duplicate test
22
- - [**166**](https://github.com/lob/lob-ruby/pull/166) Fix commented check amount in checks.rb example
23
-
24
- ## [**4.1.2**](https://github.com/lob/lob-ruby/releases/tag/v4.1.2)
25
- - [**#165**] (https://github.com/lob/lob-ruby/pull/165) Remove states and countries API resources. Also remove the ability to use postcard.message.
26
-
27
- ## [**4.1.1**](https://github.com/lob/lob-ruby/releases/tag/v4.1.1)
28
- - [**#160**] (https://github.com/lob/lob-ruby/pull/160) adds capability to pass in idempotency headers
29
-
30
- ## [**4.1.0**](https://github.com/lob/lob-ruby/releases/tag/v4.1.0)
31
- - [**#158**] (https://github.com/lob/lob-ruby/pull/158) add US Zip Lookups API endpoint to wrapper
32
-
33
- ## 4.0.0
34
-
35
- Version 4.0.0 introduces a breaking change. It requires a minimum API version of `2017-05-17`, which introduces new US and International Verification APIs.
36
-
37
- * Removes `Lob.addresses.verify()`. Please use `Lob.us_verifications.verify()` and `Lob.intl_verifications.verify() instead.
38
-
39
- ## 3.0.0
40
-
41
- Version 3.0.0 introduces several breaking changes. It requires a minimum API version of `2015-04-11`.
42
-
43
- * Ruby 1.9.3 is no longer supported. lob-ruby now supports Ruby versions at or above 2.0.0.
44
- * Jobs and Objects resources have been deprecated from the gem.
45
- * Resources have been moved from `Lob::V1` to the `Lob::Resources` namespace and have been refactored to contain the HTTP request/response logic..
46
- * Configuration for the Lob Client has been changed. `Lob()`, `Lob.load`, and `Lob.configure` have all been deprecated and replaced with a single method of configuration: `Lob::Client.new(api_key: "your-api-key")`.
47
-
48
- ## [**2.5.1**](https://github.com/lob/lob-ruby/releases/tag/v2.5.1)
49
- - [**#145**] (https://github.com/lob/lob-ruby/pull/145) More lenient rest-client version restriction
50
-
51
- ## [**2.5.0**](https://github.com/lob/lob-ruby/releases/tag/v2.5.0)
52
- - [**#140**] (https://github.com/lob/lob-ruby/pull/140) Adds access to response and headers
53
-
54
- ## [**2.4.0**](https://github.com/lob/lob-ruby/releases/tag/v2.4.0)
55
- - [**#136**] (https://github.com/lob/lob-ruby/pull/136) Adds find to routes
56
-
57
- ## [**2.3.0**](https://github.com/lob/lob-ruby/releases/tag/v2.3.0)
58
- - [**#130**] (https://github.com/lob/lob-ruby/pull/130) Removed services endpoint support
59
-
60
- ## [**2.2.0**](https://github.com/lob/lob-ruby/releases/tag/v2.2.0)
61
- - [**#129**] (https://github.com/lob/lob-ruby/pull/129) Adds support for API version 2015-11-06
62
-
63
- ## [**2.1.2**](https://github.com/lob/lob-ruby/releases/tag/v2.1.2)
64
- - [**#127**] (https://github.com/lob/lob-ruby/pull/127) Ensure JSON.parse is never passes nil
65
-
66
- ## [**2.1.1**](https://github.com/lob/lob-ruby/releases/tag/v2.1.1)
67
- - [**#124**] (https://github.com/lob/lob-ruby/pull/124) routes#find accepts single ZIP code
68
-
69
- ## [**2.1.0**](https://github.com/lob/lob-ruby/releases/tag/v2.1.0)
70
- - [**#119**] (https://github.com/lob/lob-ruby/pull/119) better error messages
71
-
72
- ## [**2.0.1**](https://github.com/lob/lob-ruby/releases/tag/v2.0.1)
73
- - [**#118**] (https://github.com/lob/lob-ruby/pull/118) removed prawn and fixed examples
74
-
75
- ## 2.0.0
76
-
77
- Version 2.0.0 introduces several breaking changes. It requires a minimum API version of `2015-04-11`.
78
-
79
- * The lob-ruby gem no longer converts `city`, `state`, etc. parameters into `address_city`, `address_state`, etc. This change was made to be more consistent with the API and other Lob wrappers, and to prevent confusion.
80
- * The wrapper now returns the raw JSON from the API in all `list` endpoints rather than just the `data` field in the response. This will allow access to additional fields like `count` and `offset`.
81
- * The `packagings` endpoint is not longer supporter in the API, and therefore has been taken out of lob-ruby.
82
-
83
- In addition to these breaking changes, the test suite was cleaned up by removing the unnecessary VCR gem and committing sample upload files to the repository rather than downloading them in rake task.
84
-
85
- ## [**1.13.0**](https://github.com/lob/lob-ruby/releases/tag/v1.13.0)
86
- - [**#112**] (https://github.com/lob/lob-ruby/pull/112) removes Rack dependency
87
-
88
- ## [**1.12.0**](https://github.com/lob/lob-ruby/releases/tag/v1.12.0)
89
- - [**#110**] (https://github.com/lob/lob-ruby/pull/110) fixes metadata filter
90
-
91
- ## [**1.10.0**](https://github.com/lob/lob-ruby/releases/tag/v1.10.0)
92
- - [**#100**] (https://github.com/lob/lob-ruby/pull/100) adds support for Simple Letter Service
93
-
94
- ## [**1.9.2**](https://github.com/lob/lob-ruby/releases/tag/v1.9.2)
95
- - [**#94**] (https://github.com/lob/lob-ruby/pull/94) added bank account verify support
96
-
97
- ## [**1.9.1**](https://github.com/lob/lob-ruby/releases/tag/v1.9.1)
98
- - [**#92**] (https://github.com/lob/lob-ruby/pull/92) don't fix prawn version
99
-
100
- ## [**1.9**](https://github.com/lob/lob-ruby/releases/tag/v1.9.0)
101
- - [**#88**] (https://github.com/lob/lob-ruby/pull/88) default prawn to 1.3.0 for ruby 1.9.3
102
- - [**#91**] (https://github.com/lob/lob-ruby/pull/91) reduce strictness of rest-client version
103
-
104
- ## [**1.8**](https://github.com/lob/lob-ruby/releases/tag/v1.8)
105
- - [**#69**] (https://github.com/lob/lob-ruby/pull/69) fixed spelling in documentation
106
- - [**#71**] (https://github.com/lob/lob-ruby/pull/71) fixed syntax in documentation
107
- - [**#73**] (https://github.com/lob/lob-ruby/pull/73) fixed failing tests
108
- - [**#74**] (https://github.com/lob/lob-ruby/pull/74) added support for setting api_version
109
- - [**#75**] (https://github.com/lob/lob-ruby/pull/75) added version module
110
- - [**#76**] (https://github.com/lob/lob-ruby/pull/76) better error handling
111
-
112
-
113
- ## [**1.7**](https://github.com/lob/lob-ruby/releases/tag/v1.7)
114
- - [**#64**] (https://github.com/lob/lob-ruby/pull/64) changed asset URLs to use lob-assets bucket
data/CONTRIBUTING.md DELETED
@@ -1,19 +0,0 @@
1
- # How to contribute
2
-
3
- We welcome contributions from the community and are pleased to have them. Please follow this guide when logging issues or making code changes.
4
-
5
- Make sure you have Ruby 2.0 installed. Copy and paste the following commands in your projects directory.
6
-
7
- git clone https://github.com/lob/lob-ruby.git
8
- cd lob-ruby
9
- bundle install
10
-
11
- ## Contributing Instructions
12
-
13
- 1. Fork it
14
- 2. Create your feature branch (`git checkout -b my-new-feature`)
15
- 3. Commit your changes (`git commit -am 'Add some feature'`)
16
- 4. Push to the branch (`git push origin my-new-feature`)
17
- 5. Make sure the tests pass
18
- 6. Open up coverage/index.html in your browser and add tests if required
19
- 7. Create new Pull Request
data/LICENSE.txt DELETED
@@ -1,22 +0,0 @@
1
- Copyright (c) 2013 Lob.com
2
-
3
- MIT License
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining
6
- a copy of this software and associated documentation files (the
7
- "Software"), to deal in the Software without restriction, including
8
- without limitation the rights to use, copy, modify, merge, publish,
9
- distribute, sublicense, and/or sell copies of the Software, and to
10
- permit persons to whom the Software is furnished to do so, subject to
11
- the following conditions:
12
-
13
- The above copyright notice and this permission notice shall be
14
- included in all copies or substantial portions of the Software.
15
-
16
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/examples/README.md DELETED
@@ -1,33 +0,0 @@
1
- # Ruby Examples
2
-
3
- Here we have put together a hand full of ruby examples to help get you started. Please read through the official [API Documentation](../README.md#api-documentation) to get a complete sense of what to expect from each endpoint. As always, feel free to [contact us](https://lob.com/support) directly if you have any questions on implementation.
4
-
5
- ## /csv_checks/
6
-
7
- An example showing how to dynamically create checks from a CSV using HTML, merge variables, and Lob's [Checks API](https://lob.com/services/checks).
8
-
9
- ## /csv_letters/
10
-
11
- An example showing how to dynamically create letters from a CSV using HTML, a custom font, merge variables, and Lob's [Letters API](https://lob.com/services/letters).
12
-
13
- ## /csv_postcards/
14
-
15
- An example showing how to dynamically create postcards from a CSV using HTML, a custom font, merge variables, and Lob's [Postcards API](https://lob.com/services/postcards).
16
-
17
- ## /csv_verify/
18
-
19
- An example showing how to validate and cleanse a CSV spreadsheet full of shipping addresses using Lob's [US Verification API](https://lob.com/services/verifications).
20
-
21
- Please note that if you are running this with a Test API Key, the verification API will always return [a dummy address](https://lob.com/docs#us_verifications_create).
22
-
23
- ## /checks.rb
24
-
25
- An example showing how to create a check using Lob's [Checks API](https://lob.com/services/checks).
26
-
27
- ## /letters.rb
28
-
29
- An example showing how to create a letter using Lob's [Letters API](https://lob.com/services/letters).
30
-
31
- ## /postcards.rb
32
-
33
- An example showing how to create a postcard using Lob's [Postcards API](https://lob.com/services/postcards).
data/examples/checks.rb DELETED
@@ -1,48 +0,0 @@
1
- $:.unshift File.expand_path("../lib", File.dirname(__FILE__))
2
- require 'lob'
3
-
4
- # initialize Lob object
5
- lob = Lob::Client.new(api_key: 'YOUR_API_KEY_HERE')
6
-
7
- # create an address
8
- to_address = lob.addresses.create(
9
- name: "John Doe",
10
- address_line1: "104 Printing Boulevard",
11
- address_city: "Boston",
12
- address_state: "MA",
13
- address_country: "US",
14
- address_zip: "12345"
15
- )
16
-
17
- # create a from address
18
- from_address = lob.addresses.create(
19
- name: "Jane Doe",
20
- address_line1: "123 Hello Ave",
21
- address_city: "Providence",
22
- address_state: "RI",
23
- address_country: "US",
24
- address_zip: "02912"
25
- )
26
-
27
- # create a bank account
28
- bank_account = lob.bank_accounts.create(
29
- routing_number: "322271627",
30
- account_number: "123456789",
31
- account_type: "company",
32
- signatory: "John Doe"
33
- )
34
-
35
- puts bank_account
36
- lob.bank_accounts.verify(bank_account['id'], amounts: [23, 12])
37
-
38
- # send a $100 check using an already created bank and address
39
- puts lob.checks.create(
40
- description: "Test Check",
41
- check_number: "10000",
42
- bank_account: bank_account["id"],
43
- to: to_address["id"],
44
- from: from_address["id"],
45
- amount: 100,
46
- memo: "This is my first Check",
47
- message: "This check is for laundry"
48
- )
@@ -1,47 +0,0 @@
1
- $:.unshift File.expand_path("../../lib", File.dirname(__FILE__))
2
- require 'lob'
3
- require 'csv'
4
-
5
- # Initialize Lob object
6
- lob = Lob::Client.new(api_key: 'YOUR_API_KEY_HERE')
7
-
8
- # Create a bank account
9
- bank_account = lob.bank_accounts.create(
10
- routing_number: "322271627",
11
- account_number: "123456789",
12
- account_type: "company",
13
- signatory: "John Doe"
14
- )
15
-
16
- puts bank_account
17
-
18
- # Verify bank account
19
- lob.bank_accounts.verify(bank_account['id'], amounts: [23, 12])
20
-
21
- # Parse the CSV and create the checks
22
- CSV.foreach(File.expand_path('../input.csv', __FILE__)) do |row|
23
- check = lob.checks.create(
24
- description: 'CSV Test',
25
- bank_account: bank_account["id"],
26
- to: {
27
- name: row[0],
28
- address_line1: row[1],
29
- address_line2: row[2],
30
- address_city: row[3],
31
- address_state: row[4],
32
- address_zip: row[5],
33
- address_country: row[6]
34
- },
35
- from: {
36
- name: 'Lob',
37
- address_line1: '123 Main Street',
38
- address_city: 'San Francisco',
39
- address_state: 'CA',
40
- address_zip: '94185',
41
- address_country: 'US'
42
- },
43
- amount: row[7],
44
- memo: "For travel reimbursement"
45
- )
46
- puts check['url']
47
- end
@@ -1,6 +0,0 @@
1
- Pallavi,353 King Street,Apt. 432,San Francisco,CA,94158,US,600.00
2
- Dom,456 Oak Street,Apt. 102,San Francisco,CA,94185,US,500.00
3
- Kyle,123 Test Street,Apt. 101,San Francisco,CA,94105,US,400.00
4
- Kienan,789 Elm Street,Apt. 101,San Francisco,CA,94107,US,300.00
5
- Sid,111 Washington Street,Apt. 101,San Francisco,CA,94112,US,200.00
6
- Will,888 Jefferson Street,Apt. 101,San Francisco,CA,94197,US,100.00
@@ -1,40 +0,0 @@
1
- $:.unshift File.expand_path("../../lib", File.dirname(__FILE__))
2
- require 'lob'
3
- require 'csv'
4
-
5
- # Initialize Lob object
6
- lob = Lob::Client.new(api_key: 'YOUR_API_KEY_HERE')
7
-
8
- # Load the HTML from letter_template.html
9
- letter_html = File.open(File.expand_path('../letter_template.html', __FILE__)).read
10
-
11
- # Parse the CSV and create the letters.
12
- CSV.foreach(File.expand_path('../input.csv', __FILE__)) do |row|
13
- letter = lob.letters.create(
14
- description: 'CSV Test',
15
- to: {
16
- name: row[0],
17
- address_line1: row[1],
18
- address_line2: row[2],
19
- address_city: row[3],
20
- address_state: row[4],
21
- address_zip: row[5],
22
- address_country: row[6]
23
- },
24
- from: {
25
- name: 'Lob',
26
- address_line1: '123 Main Street',
27
- address_city: 'San Francisco',
28
- address_state: 'CA',
29
- address_zip: '94185',
30
- address_country: 'US'
31
- },
32
- file: letter_html,
33
- merge_variables: {
34
- name: row[0],
35
- city: row[3]
36
- },
37
- color: false
38
- )
39
- puts letter['url']
40
- end
@@ -1,6 +0,0 @@
1
- Pallavi,353 King Street,Apt. 432,San Francisco,CA,94158,US
2
- Dom,456 Oak Street ,Apt. 102,San Francisco,CA,94185,US
3
- Kyle,123 Test Street,Apt. 101,San Francisco,CA,94105,US
4
- Kienan,789 Elm Street,Apt. 101,San Francisco,CA,94107,US
5
- Sid,111 Washington Street,Apt. 101,San Francisco,CA,94112,US
6
- Will,888 Jefferson Street,Apt. 101,San Francisco,CA,94197,US
@@ -1,33 +0,0 @@
1
- <html>
2
- <head>
3
- <style>
4
- *, *:before, *:after {
5
- -webkit-box-sizing: border-box;
6
- -moz-box-sizing: border-box;
7
- box-sizing: border-box;
8
- }
9
-
10
- @font-face {
11
- font-family: 'Loved by the King';
12
- font-style: normal;
13
- font-weight: 400;
14
- src: url('https://s3-us-west-2.amazonaws.com/public.lob.com/fonts/lovedByTheKing/LovedbytheKing.ttf') format('truetype');
15
- }
16
-
17
- .text {
18
- margin-left: 75px;
19
- padding-top: 250px;
20
- width: 400px;
21
- font-family: 'Loved by the King';
22
- font-size: 50px;
23
- font-weight: 700;
24
- color: black;
25
- }
26
- </style>
27
- </head>
28
-
29
- <body>
30
- <p class="text">Hello {{name}}!<br/><br/>Join us for this year's summer celebration in {{city}}!</p>
31
- </body>
32
-
33
- </html>
@@ -1,45 +0,0 @@
1
- $:.unshift File.expand_path("../../lib", File.dirname(__FILE__))
2
- require 'lob'
3
- require 'csv'
4
-
5
- # Initialize Lob object
6
- lob = Lob::Client.new(api_key: 'YOUR_API_KEY_HERE')
7
-
8
- # Load the HTML from postcard_front.html and postcard_back.html.
9
- front_html = File.open(File.expand_path('../postcard_front.html', __FILE__)).read
10
- back_html = File.open(File.expand_path('../postcard_back.html', __FILE__)).read
11
-
12
- # Parse the CSV and create the postcards.
13
- CSV.foreach(File.expand_path('../input.csv', __FILE__)) do |row|
14
- postcard = lob.postcards.create(
15
- description: 'CSV Test',
16
- to: {
17
- name: row[5],
18
- address_line1: row[6],
19
- address_line2: row[7],
20
- address_city: row[8],
21
- address_state: row[9],
22
- address_zip: row[10],
23
- address_country: row[11]
24
- },
25
- from: {
26
- name: 'Lob',
27
- address_line1: '123 Main Street',
28
- address_city: 'San Francisco',
29
- address_state: 'CA',
30
- address_zip: '94185',
31
- address_country: 'US'
32
- },
33
- size: "6x11",
34
- front: front_html,
35
- back: back_html,
36
- merge_variables: {
37
- background_image: row[1],
38
- background_color: row[2],
39
- name: row[0],
40
- car: row[3],
41
- mileage: row[4]
42
- }
43
- )
44
- puts postcard['url']
45
- end
@@ -1,7 +0,0 @@
1
- Peter,https://s3-us-west-2.amazonaws.com/public.lob.com/assets/example_companies/df-car2.jpg,LightBlue,Jeep Wrangler,65000,Peter,123 Main Street,Apt. 101,San Francisco,CA,94107,US
2
- Marcus,https://s3-us-west-2.amazonaws.com/public.lob.com/assets/example_companies/df-car.jpg,Bisque,Honda Pilot,65000,Marcus,456 Oak Street ,Apt. 102,San Francisco,CA,94185,US
3
- Leore,https://s3-us-west-2.amazonaws.com/public.lob.com/assets/example_companies/df-car2.jpg,PaleGreen,Jeep Wrangler,50000,Leore,123 Test Street,Apt. 101,San Francisco,CA,94105,US
4
- Harry,https://s3-us-west-2.amazonaws.com/public.lob.com/assets/example_companies/df-car.jpg,Thistle,Jeep Wrangler,50000,Harry,789 Elm Street,Apt. 101,San Francisco,CA,94107,US
5
- Elnaz,https://s3-us-west-2.amazonaws.com/public.lob.com/assets/example_companies/df-car2.jpg,PaleTurqoise,Jeep Wrangler,35000,Elnaz,111 Washington Street,Apt. 101,San Francisco,CA,94112,US
6
- Robin,https://s3-us-west-2.amazonaws.com/public.lob.com/assets/example_companies/df-car.jpg,Wheat,Jeep Wrangler,35000,Robin,888 Jefferson Street,Apt. 101,San Francisco,CA,94197,US
7
- Russell,https://s3-us-west-2.amazonaws.com/public.lob.com/assets/example_companies/df-car2.jpg,WhiteSmoke,Jeep Wrangler,15000,Russell,1212 Fourth Street,Apt. 101,San Francisco,CA,94166,US
@@ -1,38 +0,0 @@
1
- <html>
2
- <head>
3
- <title>Lob.com Sample 6x11 Postcard Back Template 1</title>
4
- <style>
5
- @font-face {
6
- font-family: 'Arimo';
7
- font-style: normal;
8
- font-weight: 400;
9
- src: url('https://s3-us-west-2.amazonaws.com/public.lob.com/fonts/arimo/Arimo-Regular.ttf') format('truetype');
10
- }
11
- body {
12
- width:11.25in;
13
- height:6.25in;
14
- margin:0;
15
- padding:0;
16
- background-size: 11.25in 6.25in;
17
- }
18
- #left-box {
19
- font-family: Arimo;
20
- font-size: .25in;
21
- background-color: {{background_color}};
22
- width: 5.85in;
23
- height: 5.85in;
24
- position: absolute;
25
- top: 0;
26
- left: 0;
27
- padding: .4in .6in 0 .4in;
28
- }
29
- </style>
30
- </head>
31
- <body>
32
- <div id="left-box">
33
- Hey {{name}},<br><br>
34
- Your {{car}} is due for its {{mileage}} mile service. Schedule an appointment today!<br><br>
35
- Make sure to bring this card to receive great savings!<br><br>
36
- </div>
37
- </body>
38
- </html>
@@ -1,25 +0,0 @@
1
- <html>
2
- <head>
3
- <title>Lob.com Sample 6x11 Postcard Front</title>
4
- <style>
5
- *, *:before, *:after {
6
- -webkit-box-sizing: border-box;
7
- -moz-box-sizing: border-box;
8
- box-sizing: border-box;
9
- }
10
- body {
11
- width: 11.25in;
12
- height: 6.25in;
13
- margin: 0;
14
- padding: 0;
15
- /* If using an image, the background image should have dimensions of 1875x1275 pixels. */
16
- background-image: url({{background_image}});
17
- background-size: 11.25in 6.25in;
18
- background-repeat: no-repeat;
19
- }
20
- </style>
21
- </head>
22
-
23
- <body>
24
- </body>
25
- </html>
@@ -1,7 +0,0 @@
1
- 185 Berry St,Unit 1510,,San Francisco,CA,
2
- 185 Berry St,Ste 1510,,SF,CA,
3
- 185 Berry St,,,SF,CA,
4
- 185 NW Berry St,,,SF,CA,
5
- 1600 Pennsylvania Ave,,,Washington,DC,20500
6
- 5904 Richmond Hwy Ste 340,,,Alexandria,VA,22303-1864
7
- 5905 Richmond Hwy Ste 340,,,Alexandria,VA,
@@ -1,36 +0,0 @@
1
- $:.unshift File.expand_path("../../lib", File.dirname(__FILE__))
2
-
3
- require 'csv'
4
- require 'lob'
5
-
6
- # Initialize Lob object
7
- lob = Lob::Client.new(api_key: 'YOUR_API_KEY_HERE')
8
-
9
- output = File.open(File.expand_path('../output.csv', __FILE__), 'w')
10
-
11
- output.puts ['primary_line', 'secondary_line', 'urbanization', 'last_line', 'deliverability'].join(',')
12
-
13
- # Parse the input file and verify the addresses
14
- File.open(File.expand_path('../input.csv', __FILE__)).each_line do |line|
15
- address_components = line.split(',')
16
-
17
- verified_address = lob.us_verifications.verify(
18
- primary_line: address_components[0],
19
- secondary_line: address_components[1],
20
- urbanization: address_components[2],
21
- city: address_components[3],
22
- state: address_components[4],
23
- zip_code: address_components[5]
24
- )
25
-
26
- output.puts [
27
- verified_address['primary_line'],
28
- verified_address['secondary_line'],
29
- verified_address['urbanization'],
30
- verified_address['last_line'],
31
- verified_address['deliverability']
32
- ].join(',')
33
-
34
- end
35
-
36
- output.close
data/examples/letters.rb DELETED
@@ -1,72 +0,0 @@
1
- $:.unshift File.expand_path("../lib", File.dirname(__FILE__))
2
- require 'lob'
3
-
4
- # initialize Lob object
5
- lob = Lob::Client.new(api_key: 'YOUR_API_KEY_HERE')
6
-
7
- html = %{
8
- <html>
9
- <head>
10
- <style>
11
- *, *:before, *:after {
12
- -webkit-box-sizing: border-box;
13
- -moz-box-sizing: border-box;
14
- box-sizing: border-box;
15
- }
16
-
17
- @font-face {
18
- font-family: 'Loved by the King';
19
- font-style: normal;
20
- font-weight: 400;
21
- src: url('https://s3-us-west-2.amazonaws.com/public.lob.com/fonts/lovedByTheKing/LovedbytheKing.ttf') format('truetype');
22
- }
23
-
24
- .text {
25
- margin-left: 75px;
26
- padding-top: 250px;
27
- width: 400px;
28
- font-family: 'Loved by the King';
29
- font-size: 50px;
30
- font-weight: 700;
31
- color: black;
32
- }
33
- </style>
34
- </head>
35
-
36
- <body>
37
- <p class="text">Hello {{name}}!<br/><br/>Join us for the {{event}}!</p>
38
- </body>
39
-
40
- </html>
41
- }
42
-
43
- # create a to address
44
- to_address = lob.addresses.create(
45
- name: "ToAddress",
46
- address_line1: "120 6th Ave",
47
- address_city: "Boston",
48
- address_state: "MA",
49
- address_country: "US",
50
- address_zip: 12345
51
- )
52
-
53
- # create a from address
54
- from_address = lob.addresses.create(
55
- name: "FromAddress",
56
- address_line1: "120 6th Ave",
57
- address_city: "Boston",
58
- address_state: "MA",
59
- address_country: "US",
60
- address_zip: 12345
61
- )
62
-
63
- # send the letter
64
- puts lob.letters.create(
65
- description: "Test letter",
66
- to: to_address["id"],
67
- from: from_address["id"],
68
- file: html,
69
- merge_variables: { name: 'Albert', event: 'HTML Letter Conference'},
70
- metadata: { campaign: 'HTML 1.0' },
71
- color: false
72
- )