subtain-apimatic-sdk 4.1.1 → 9.1.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.
Files changed (711) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +28 -0
  3. data/README.md +377 -0
  4. data/lib/advanced_billing/api_helper.rb +10 -0
  5. data/lib/advanced_billing/client.rb +243 -0
  6. data/lib/advanced_billing/configuration.rb +158 -0
  7. data/lib/advanced_billing/controllers/advance_invoice_controller.rb +126 -0
  8. data/lib/advanced_billing/controllers/api_exports_controller.rb +268 -0
  9. data/lib/advanced_billing/controllers/base_controller.rb +71 -0
  10. data/lib/advanced_billing/controllers/billing_portal_controller.rb +165 -0
  11. data/lib/advanced_billing/controllers/components_controller.rb +747 -0
  12. data/lib/advanced_billing/controllers/coupons_controller.rb +691 -0
  13. data/lib/advanced_billing/controllers/custom_fields_controller.rb +465 -0
  14. data/lib/advanced_billing/controllers/customers_controller.rb +255 -0
  15. data/lib/advanced_billing/controllers/events_based_billing_segments_controller.rb +334 -0
  16. data/lib/advanced_billing/controllers/events_controller.rb +229 -0
  17. data/lib/advanced_billing/controllers/insights_controller.rb +168 -0
  18. data/lib/advanced_billing/controllers/invoices_controller.rb +953 -0
  19. data/lib/advanced_billing/controllers/offers_controller.rb +132 -0
  20. data/lib/advanced_billing/controllers/payment_profiles_controller.rb +732 -0
  21. data/lib/advanced_billing/controllers/product_families_controller.rb +187 -0
  22. data/lib/advanced_billing/controllers/product_price_points_controller.rb +422 -0
  23. data/lib/advanced_billing/controllers/products_controller.rb +220 -0
  24. data/lib/advanced_billing/controllers/proforma_invoices_controller.rb +381 -0
  25. data/lib/advanced_billing/controllers/reason_codes_controller.rb +158 -0
  26. data/lib/advanced_billing/controllers/referral_codes_controller.rb +42 -0
  27. data/lib/advanced_billing/controllers/sales_commissions_controller.rb +192 -0
  28. data/lib/advanced_billing/controllers/sites_controller.rb +96 -0
  29. data/lib/advanced_billing/controllers/subscription_components_controller.rb +992 -0
  30. data/lib/advanced_billing/controllers/subscription_group_invoice_account_controller.rb +163 -0
  31. data/lib/advanced_billing/controllers/subscription_group_status_controller.rb +157 -0
  32. data/lib/advanced_billing/controllers/subscription_groups_controller.rb +300 -0
  33. data/lib/advanced_billing/controllers/subscription_invoice_account_controller.rb +226 -0
  34. data/lib/advanced_billing/controllers/subscription_notes_controller.rb +159 -0
  35. data/lib/advanced_billing/controllers/subscription_products_controller.rb +166 -0
  36. data/lib/advanced_billing/controllers/subscription_status_controller.rb +473 -0
  37. data/lib/advanced_billing/controllers/subscriptions_controller.rb +1357 -0
  38. data/lib/advanced_billing/controllers/webhooks_controller.rb +210 -0
  39. data/lib/advanced_billing/exceptions/api_exception.rb +10 -0
  40. data/lib/advanced_billing/exceptions/component_allocation_error_exception.rb +41 -0
  41. data/lib/advanced_billing/exceptions/component_price_point_error_exception.rb +41 -0
  42. data/lib/advanced_billing/exceptions/customer_error_response_exception.rb +34 -0
  43. data/lib/advanced_billing/exceptions/error_list_response_exception.rb +32 -0
  44. data/lib/advanced_billing/exceptions/error_map_response_exception.rb +32 -0
  45. data/lib/advanced_billing/exceptions/event_based_billing_list_segments_errors_exception.rb +32 -0
  46. data/lib/advanced_billing/exceptions/event_based_billing_segment_errors_exception.rb +35 -0
  47. data/lib/advanced_billing/exceptions/event_based_billing_segment_exception.rb +32 -0
  48. data/lib/advanced_billing/exceptions/nested_error_response_exception.rb +32 -0
  49. data/lib/advanced_billing/exceptions/proforma_bad_request_error_response_exception.rb +32 -0
  50. data/lib/advanced_billing/exceptions/refund_prepayment_aggregated_errors_response_exception.rb +33 -0
  51. data/lib/advanced_billing/exceptions/refund_prepayment_base_errors_response_exception.rb +32 -0
  52. data/lib/advanced_billing/exceptions/single_error_response_exception.rb +32 -0
  53. data/lib/advanced_billing/exceptions/single_string_error_response_exception.rb +32 -0
  54. data/lib/advanced_billing/exceptions/subscription_add_coupon_error_exception.rb +42 -0
  55. data/lib/advanced_billing/exceptions/subscription_component_allocation_error_exception.rb +41 -0
  56. data/lib/advanced_billing/exceptions/subscription_group_signup_error_response_exception.rb +32 -0
  57. data/lib/advanced_billing/exceptions/subscription_group_update_error_response_exception.rb +32 -0
  58. data/lib/advanced_billing/exceptions/subscription_remove_coupon_errors_exception.rb +32 -0
  59. data/lib/advanced_billing/exceptions/subscriptions_mrr_error_response_exception.rb +32 -0
  60. data/lib/advanced_billing/exceptions/too_many_management_link_requests_error_exception.rb +32 -0
  61. data/lib/advanced_billing/http/auth/basic_auth.rb +50 -0
  62. data/lib/advanced_billing/http/http_call_back.rb +10 -0
  63. data/lib/advanced_billing/http/http_method_enum.rb +10 -0
  64. data/lib/advanced_billing/http/http_request.rb +10 -0
  65. data/lib/advanced_billing/http/http_response.rb +10 -0
  66. data/lib/advanced_billing/models/account_balance.rb +51 -0
  67. data/lib/advanced_billing/models/account_balances.rb +81 -0
  68. data/lib/advanced_billing/models/ach_agreement.rb +96 -0
  69. data/lib/advanced_billing/models/activate_subscription_request.rb +57 -0
  70. data/lib/advanced_billing/models/add_coupons_request.rb +50 -0
  71. data/lib/advanced_billing/models/add_subscription_to_a_group.rb +62 -0
  72. data/lib/advanced_billing/models/agreement_acceptance.rb +125 -0
  73. data/lib/advanced_billing/models/allocate_components.rb +130 -0
  74. data/lib/advanced_billing/models/allocation.rb +231 -0
  75. data/lib/advanced_billing/models/allocation_expiration_date.rb +50 -0
  76. data/lib/advanced_billing/models/allocation_payment.rb +89 -0
  77. data/lib/advanced_billing/models/allocation_preview.rb +190 -0
  78. data/lib/advanced_billing/models/allocation_preview_item.rb +187 -0
  79. data/lib/advanced_billing/models/allocation_preview_line_item.rb +130 -0
  80. data/lib/advanced_billing/models/allocation_preview_response.rb +49 -0
  81. data/lib/advanced_billing/models/allocation_response.rb +50 -0
  82. data/lib/advanced_billing/models/allocation_settings.rb +74 -0
  83. data/lib/advanced_billing/models/applied_credit_note.rb +69 -0
  84. data/lib/advanced_billing/models/apply_credit_note_event_data.rb +174 -0
  85. data/lib/advanced_billing/models/apply_debit_note_event_data.rb +94 -0
  86. data/lib/advanced_billing/models/apply_payment_event_data.rb +130 -0
  87. data/lib/advanced_billing/models/attribute_error.rb +48 -0
  88. data/lib/advanced_billing/models/auto_invite.rb +23 -0
  89. data/lib/advanced_billing/models/auto_resume.rb +51 -0
  90. data/lib/advanced_billing/models/bank_account.rb +270 -0
  91. data/lib/advanced_billing/models/bank_account_attributes.rb +183 -0
  92. data/lib/advanced_billing/models/bank_account_payment_profile.rb +285 -0
  93. data/lib/advanced_billing/models/bank_account_response.rb +48 -0
  94. data/lib/advanced_billing/models/bank_account_type.rb +23 -0
  95. data/lib/advanced_billing/models/bank_account_vault.rb +32 -0
  96. data/lib/advanced_billing/models/bank_account_verification.rb +61 -0
  97. data/lib/advanced_billing/models/bank_account_verification_request.rb +50 -0
  98. data/lib/advanced_billing/models/base_model.rb +62 -0
  99. data/lib/advanced_billing/models/base_refund_error.rb +50 -0
  100. data/lib/advanced_billing/models/base_string_error.rb +50 -0
  101. data/lib/advanced_billing/models/basic_date_field.rb +23 -0
  102. data/lib/advanced_billing/models/batch_job.rb +91 -0
  103. data/lib/advanced_billing/models/batch_job_response.rb +48 -0
  104. data/lib/advanced_billing/models/billing_address.rb +113 -0
  105. data/lib/advanced_billing/models/billing_manifest.rb +142 -0
  106. data/lib/advanced_billing/models/billing_manifest_item.rb +182 -0
  107. data/lib/advanced_billing/models/breakouts.rb +82 -0
  108. data/lib/advanced_billing/models/bulk_component_s_price_point_assignment.rb +59 -0
  109. data/lib/advanced_billing/models/bulk_create_product_price_points_request.rb +57 -0
  110. data/lib/advanced_billing/models/bulk_create_product_price_points_response.rb +59 -0
  111. data/lib/advanced_billing/models/bulk_create_segments.rb +59 -0
  112. data/lib/advanced_billing/models/bulk_update_segments.rb +59 -0
  113. data/lib/advanced_billing/models/bulk_update_segments_item.rb +80 -0
  114. data/lib/advanced_billing/models/calendar_billing.rb +78 -0
  115. data/lib/advanced_billing/models/cancel_grouped_subscriptions_request.rb +51 -0
  116. data/lib/advanced_billing/models/cancellation_method.rb +30 -0
  117. data/lib/advanced_billing/models/cancellation_options.rb +62 -0
  118. data/lib/advanced_billing/models/cancellation_request.rb +48 -0
  119. data/lib/advanced_billing/models/card_type.rb +56 -0
  120. data/lib/advanced_billing/models/card_type1.rb +116 -0
  121. data/lib/advanced_billing/models/change_invoice_collection_method_event_data.rb +71 -0
  122. data/lib/advanced_billing/models/chargify_ebb.rb +113 -0
  123. data/lib/advanced_billing/models/cleanup_scope.rb +26 -0
  124. data/lib/advanced_billing/models/component.rb +405 -0
  125. data/lib/advanced_billing/models/component_allocation_change.rb +142 -0
  126. data/lib/advanced_billing/models/component_allocation_error_item.rb +77 -0
  127. data/lib/advanced_billing/models/component_cost_data.rb +135 -0
  128. data/lib/advanced_billing/models/component_cost_data_rate_tier.rb +101 -0
  129. data/lib/advanced_billing/models/component_custom_price.rb +81 -0
  130. data/lib/advanced_billing/models/component_kind.rb +32 -0
  131. data/lib/advanced_billing/models/component_kind_path.rb +32 -0
  132. data/lib/advanced_billing/models/component_price.rb +123 -0
  133. data/lib/advanced_billing/models/component_price_point.rb +192 -0
  134. data/lib/advanced_billing/models/component_price_point_error_item.rb +68 -0
  135. data/lib/advanced_billing/models/component_price_point_item.rb +98 -0
  136. data/lib/advanced_billing/models/component_price_point_price.rb +123 -0
  137. data/lib/advanced_billing/models/component_price_point_response.rb +48 -0
  138. data/lib/advanced_billing/models/component_price_points_response.rb +59 -0
  139. data/lib/advanced_billing/models/component_response.rb +48 -0
  140. data/lib/advanced_billing/models/component_s_price_point_assignment.rb +71 -0
  141. data/lib/advanced_billing/models/compounding_strategy.rb +23 -0
  142. data/lib/advanced_billing/models/consolidated_invoice.rb +59 -0
  143. data/lib/advanced_billing/models/count_response.rb +50 -0
  144. data/lib/advanced_billing/models/coupon.rb +367 -0
  145. data/lib/advanced_billing/models/coupon_currency.rb +77 -0
  146. data/lib/advanced_billing/models/coupon_currency_request.rb +57 -0
  147. data/lib/advanced_billing/models/coupon_response.rb +50 -0
  148. data/lib/advanced_billing/models/coupon_restriction.rb +99 -0
  149. data/lib/advanced_billing/models/coupon_subcodes.rb +50 -0
  150. data/lib/advanced_billing/models/coupon_subcodes_response.rb +70 -0
  151. data/lib/advanced_billing/models/coupon_usage.rb +114 -0
  152. data/lib/advanced_billing/models/create_allocation.rb +162 -0
  153. data/lib/advanced_billing/models/create_allocation_request.rb +48 -0
  154. data/lib/advanced_billing/models/create_component_price_point.rb +125 -0
  155. data/lib/advanced_billing/models/create_component_price_point_request.rb +64 -0
  156. data/lib/advanced_billing/models/create_component_price_points_request.rb +64 -0
  157. data/lib/advanced_billing/models/create_currency_price.rb +68 -0
  158. data/lib/advanced_billing/models/create_currency_prices_request.rb +57 -0
  159. data/lib/advanced_billing/models/create_customer.rb +209 -0
  160. data/lib/advanced_billing/models/create_customer_request.rb +48 -0
  161. data/lib/advanced_billing/models/create_ebb_component.rb +65 -0
  162. data/lib/advanced_billing/models/create_invoice.rb +163 -0
  163. data/lib/advanced_billing/models/create_invoice_address.rb +124 -0
  164. data/lib/advanced_billing/models/create_invoice_coupon.rb +115 -0
  165. data/lib/advanced_billing/models/create_invoice_item.rb +185 -0
  166. data/lib/advanced_billing/models/create_invoice_payment.rb +90 -0
  167. data/lib/advanced_billing/models/create_invoice_payment_application.rb +79 -0
  168. data/lib/advanced_billing/models/create_invoice_payment_request.rb +58 -0
  169. data/lib/advanced_billing/models/create_invoice_request.rb +48 -0
  170. data/lib/advanced_billing/models/create_metadata.rb +59 -0
  171. data/lib/advanced_billing/models/create_metadata_request.rb +57 -0
  172. data/lib/advanced_billing/models/create_metafield.rb +103 -0
  173. data/lib/advanced_billing/models/create_metafields_request.rb +64 -0
  174. data/lib/advanced_billing/models/create_metered_component.rb +65 -0
  175. data/lib/advanced_billing/models/create_multi_invoice_payment.rb +134 -0
  176. data/lib/advanced_billing/models/create_multi_invoice_payment_request.rb +48 -0
  177. data/lib/advanced_billing/models/create_offer.rb +116 -0
  178. data/lib/advanced_billing/models/create_offer_component.rb +60 -0
  179. data/lib/advanced_billing/models/create_offer_request.rb +48 -0
  180. data/lib/advanced_billing/models/create_on_off_component.rb +65 -0
  181. data/lib/advanced_billing/models/create_or_update_coupon.rb +85 -0
  182. data/lib/advanced_billing/models/create_or_update_flat_amount_coupon.rb +214 -0
  183. data/lib/advanced_billing/models/create_or_update_percentage_coupon.rb +215 -0
  184. data/lib/advanced_billing/models/create_or_update_product.rb +133 -0
  185. data/lib/advanced_billing/models/create_or_update_product_request.rb +48 -0
  186. data/lib/advanced_billing/models/create_or_update_segment_price.rb +87 -0
  187. data/lib/advanced_billing/models/create_payment.rb +75 -0
  188. data/lib/advanced_billing/models/create_payment_profile.rb +416 -0
  189. data/lib/advanced_billing/models/create_payment_profile_request.rb +49 -0
  190. data/lib/advanced_billing/models/create_payment_profile_response.rb +49 -0
  191. data/lib/advanced_billing/models/create_prepaid_component.rb +65 -0
  192. data/lib/advanced_billing/models/create_prepaid_usage_component_price_point.rb +194 -0
  193. data/lib/advanced_billing/models/create_prepayment.rb +90 -0
  194. data/lib/advanced_billing/models/create_prepayment_request.rb +48 -0
  195. data/lib/advanced_billing/models/create_prepayment_response.rb +48 -0
  196. data/lib/advanced_billing/models/create_product_currency_price.rb +64 -0
  197. data/lib/advanced_billing/models/create_product_currency_prices_request.rb +57 -0
  198. data/lib/advanced_billing/models/create_product_family.rb +61 -0
  199. data/lib/advanced_billing/models/create_product_family_request.rb +49 -0
  200. data/lib/advanced_billing/models/create_product_price_point.rb +182 -0
  201. data/lib/advanced_billing/models/create_product_price_point_request.rb +48 -0
  202. data/lib/advanced_billing/models/create_quantity_based_component.rb +66 -0
  203. data/lib/advanced_billing/models/create_reason_code.rb +66 -0
  204. data/lib/advanced_billing/models/create_reason_code_request.rb +48 -0
  205. data/lib/advanced_billing/models/create_segment.rb +143 -0
  206. data/lib/advanced_billing/models/create_segment_request.rb +48 -0
  207. data/lib/advanced_billing/models/create_subscription.rb +694 -0
  208. data/lib/advanced_billing/models/create_subscription_component.rb +122 -0
  209. data/lib/advanced_billing/models/create_subscription_group.rb +74 -0
  210. data/lib/advanced_billing/models/create_subscription_group_request.rb +49 -0
  211. data/lib/advanced_billing/models/create_subscription_request.rb +48 -0
  212. data/lib/advanced_billing/models/create_usage.rb +72 -0
  213. data/lib/advanced_billing/models/create_usage_request.rb +48 -0
  214. data/lib/advanced_billing/models/created_payment_profile.rb +327 -0
  215. data/lib/advanced_billing/models/created_prepayment.rb +114 -0
  216. data/lib/advanced_billing/models/credit_account_balance_changed.rb +120 -0
  217. data/lib/advanced_billing/models/credit_card_attributes.rb +81 -0
  218. data/lib/advanced_billing/models/credit_card_payment_profile.rb +277 -0
  219. data/lib/advanced_billing/models/credit_note.rb +403 -0
  220. data/lib/advanced_billing/models/credit_note1.rb +405 -0
  221. data/lib/advanced_billing/models/credit_note_application.rb +99 -0
  222. data/lib/advanced_billing/models/credit_note_line_item.rb +246 -0
  223. data/lib/advanced_billing/models/credit_scheme.rb +26 -0
  224. data/lib/advanced_billing/models/credit_scheme_request.rb +48 -0
  225. data/lib/advanced_billing/models/credit_type.rb +27 -0
  226. data/lib/advanced_billing/models/credit_type1.rb +28 -0
  227. data/lib/advanced_billing/models/currency_price.rb +99 -0
  228. data/lib/advanced_billing/models/currency_price_role.rb +26 -0
  229. data/lib/advanced_billing/models/current_vault.rb +99 -0
  230. data/lib/advanced_billing/models/custom_field_value_change.rb +144 -0
  231. data/lib/advanced_billing/models/custom_price_used_for_subscription_create_update.rb +197 -0
  232. data/lib/advanced_billing/models/customer.rb +352 -0
  233. data/lib/advanced_billing/models/customer1.rb +120 -0
  234. data/lib/advanced_billing/models/customer_attributes.rb +241 -0
  235. data/lib/advanced_billing/models/customer_billing_address_change.rb +59 -0
  236. data/lib/advanced_billing/models/customer_change.rb +81 -0
  237. data/lib/advanced_billing/models/customer_changes_preview_response.rb +48 -0
  238. data/lib/advanced_billing/models/customer_custom_fields_change.rb +77 -0
  239. data/lib/advanced_billing/models/customer_error.rb +60 -0
  240. data/lib/advanced_billing/models/customer_payer_change.rb +59 -0
  241. data/lib/advanced_billing/models/customer_response.rb +48 -0
  242. data/lib/advanced_billing/models/customer_shipping_address_change.rb +59 -0
  243. data/lib/advanced_billing/models/deduct_service_credit.rb +80 -0
  244. data/lib/advanced_billing/models/deduct_service_credit_request.rb +48 -0
  245. data/lib/advanced_billing/models/delayed_cancellation_response.rb +50 -0
  246. data/lib/advanced_billing/models/delete_subscription_group_response.rb +59 -0
  247. data/lib/advanced_billing/models/direction.rb +23 -0
  248. data/lib/advanced_billing/models/discount_type.rb +23 -0
  249. data/lib/advanced_billing/models/dunner_data.rb +131 -0
  250. data/lib/advanced_billing/models/dunning_step_data.rb +149 -0
  251. data/lib/advanced_billing/models/dunning_step_reached.rb +96 -0
  252. data/lib/advanced_billing/models/ebb_component.rb +271 -0
  253. data/lib/advanced_billing/models/ebb_event.rb +50 -0
  254. data/lib/advanced_billing/models/enable_webhooks_request.rb +49 -0
  255. data/lib/advanced_billing/models/enable_webhooks_response.rb +51 -0
  256. data/lib/advanced_billing/models/endpoint.rb +88 -0
  257. data/lib/advanced_billing/models/endpoint_response.rb +50 -0
  258. data/lib/advanced_billing/models/errors.rb +59 -0
  259. data/lib/advanced_billing/models/event.rb +145 -0
  260. data/lib/advanced_billing/models/event_based_billing_segment_error.rb +51 -0
  261. data/lib/advanced_billing/models/event_response.rb +48 -0
  262. data/lib/advanced_billing/models/event_type.rb +121 -0
  263. data/lib/advanced_billing/models/extended_interval_unit.rb +26 -0
  264. data/lib/advanced_billing/models/failed_payment_action.rb +37 -0
  265. data/lib/advanced_billing/models/first_charge_type.rb +26 -0
  266. data/lib/advanced_billing/models/full_subscription_group_response.rb +165 -0
  267. data/lib/advanced_billing/models/get_one_time_token_payment_profile.rb +249 -0
  268. data/lib/advanced_billing/models/get_one_time_token_request.rb +49 -0
  269. data/lib/advanced_billing/models/group_billing.rb +85 -0
  270. data/lib/advanced_billing/models/group_settings.rb +76 -0
  271. data/lib/advanced_billing/models/group_target.rb +75 -0
  272. data/lib/advanced_billing/models/group_target_type.rb +32 -0
  273. data/lib/advanced_billing/models/holder_type.rb +23 -0
  274. data/lib/advanced_billing/models/include_not_null.rb +20 -0
  275. data/lib/advanced_billing/models/include_option.rb +23 -0
  276. data/lib/advanced_billing/models/interval_unit.rb +23 -0
  277. data/lib/advanced_billing/models/invoice.rb +712 -0
  278. data/lib/advanced_billing/models/invoice_address.rb +113 -0
  279. data/lib/advanced_billing/models/invoice_balance_item.rb +79 -0
  280. data/lib/advanced_billing/models/invoice_consolidation_level.rb +34 -0
  281. data/lib/advanced_billing/models/invoice_credit.rb +121 -0
  282. data/lib/advanced_billing/models/invoice_custom_field.rb +88 -0
  283. data/lib/advanced_billing/models/invoice_customer.rb +121 -0
  284. data/lib/advanced_billing/models/invoice_date_field.rb +32 -0
  285. data/lib/advanced_billing/models/invoice_discount.rb +177 -0
  286. data/lib/advanced_billing/models/invoice_discount_breakout.rb +80 -0
  287. data/lib/advanced_billing/models/invoice_display_settings.rb +75 -0
  288. data/lib/advanced_billing/models/invoice_event.rb +102 -0
  289. data/lib/advanced_billing/models/invoice_event1.rb +374 -0
  290. data/lib/advanced_billing/models/invoice_event_type.rb +50 -0
  291. data/lib/advanced_billing/models/invoice_issued.rb +252 -0
  292. data/lib/advanced_billing/models/invoice_line_item.rb +321 -0
  293. data/lib/advanced_billing/models/invoice_line_item_component_cost_data.rb +69 -0
  294. data/lib/advanced_billing/models/invoice_line_item_event_data.rb +262 -0
  295. data/lib/advanced_billing/models/invoice_line_item_pricing_detail.rb +69 -0
  296. data/lib/advanced_billing/models/invoice_payer.rb +109 -0
  297. data/lib/advanced_billing/models/invoice_payment.rb +155 -0
  298. data/lib/advanced_billing/models/invoice_payment_application.rb +73 -0
  299. data/lib/advanced_billing/models/invoice_payment_method.rb +129 -0
  300. data/lib/advanced_billing/models/invoice_payment_method_type.rb +35 -0
  301. data/lib/advanced_billing/models/invoice_payment_type.rb +29 -0
  302. data/lib/advanced_billing/models/invoice_previous_balance.rb +78 -0
  303. data/lib/advanced_billing/models/invoice_refund.rb +113 -0
  304. data/lib/advanced_billing/models/invoice_response.rb +48 -0
  305. data/lib/advanced_billing/models/invoice_seller.rb +90 -0
  306. data/lib/advanced_billing/models/invoice_sort_field.rb +41 -0
  307. data/lib/advanced_billing/models/invoice_tax.rb +176 -0
  308. data/lib/advanced_billing/models/invoice_tax_breakout.rb +79 -0
  309. data/lib/advanced_billing/models/invoice_tax_component_breakout.rb +89 -0
  310. data/lib/advanced_billing/models/issue_advance_invoice_request.rb +50 -0
  311. data/lib/advanced_billing/models/issue_invoice_event_data.rb +115 -0
  312. data/lib/advanced_billing/models/issue_invoice_request.rb +63 -0
  313. data/lib/advanced_billing/models/issue_service_credit.rb +80 -0
  314. data/lib/advanced_billing/models/issue_service_credit_request.rb +49 -0
  315. data/lib/advanced_billing/models/item_category.rb +33 -0
  316. data/lib/advanced_billing/models/item_price_point_changed.rb +134 -0
  317. data/lib/advanced_billing/models/item_price_point_data.rb +78 -0
  318. data/lib/advanced_billing/models/list_components_price_points_include.rb +20 -0
  319. data/lib/advanced_billing/models/list_components_price_points_response.rb +57 -0
  320. data/lib/advanced_billing/models/list_credit_notes_response.rb +57 -0
  321. data/lib/advanced_billing/models/list_events_date_field.rb +20 -0
  322. data/lib/advanced_billing/models/list_invoice_events_response.rb +87 -0
  323. data/lib/advanced_billing/models/list_invoices_response.rb +57 -0
  324. data/lib/advanced_billing/models/list_metafields_response.rb +96 -0
  325. data/lib/advanced_billing/models/list_mrr_response.rb +48 -0
  326. data/lib/advanced_billing/models/list_mrr_response_result.rb +116 -0
  327. data/lib/advanced_billing/models/list_offers_response.rb +59 -0
  328. data/lib/advanced_billing/models/list_payment_profile_item.rb +274 -0
  329. data/lib/advanced_billing/models/list_payment_profiles_response.rb +51 -0
  330. data/lib/advanced_billing/models/list_product_price_points_response.rb +57 -0
  331. data/lib/advanced_billing/models/list_products_include.rb +20 -0
  332. data/lib/advanced_billing/models/list_products_price_points_include.rb +20 -0
  333. data/lib/advanced_billing/models/list_public_keys_meta.rb +78 -0
  334. data/lib/advanced_billing/models/list_public_keys_response.rb +68 -0
  335. data/lib/advanced_billing/models/list_sale_rep_item.rb +90 -0
  336. data/lib/advanced_billing/models/list_segments_response.rb +59 -0
  337. data/lib/advanced_billing/models/list_subcription_group_prepayment_item.rb +137 -0
  338. data/lib/advanced_billing/models/list_subscription_components_include.rb +20 -0
  339. data/lib/advanced_billing/models/list_subscription_components_response.rb +57 -0
  340. data/lib/advanced_billing/models/list_subscription_components_sort.rb +23 -0
  341. data/lib/advanced_billing/models/list_subscription_group_prepayment.rb +49 -0
  342. data/lib/advanced_billing/models/list_subscription_group_prepayment_date_field.rb +23 -0
  343. data/lib/advanced_billing/models/list_subscription_group_prepayment_response.rb +57 -0
  344. data/lib/advanced_billing/models/list_subscription_groups_item.rb +141 -0
  345. data/lib/advanced_billing/models/list_subscription_groups_meta.rb +59 -0
  346. data/lib/advanced_billing/models/list_subscription_groups_response.rb +68 -0
  347. data/lib/advanced_billing/models/metadata.rb +98 -0
  348. data/lib/advanced_billing/models/metafield.rb +112 -0
  349. data/lib/advanced_billing/models/metafield_input.rb +32 -0
  350. data/lib/advanced_billing/models/metafield_scope.rb +119 -0
  351. data/lib/advanced_billing/models/metafields.rb +103 -0
  352. data/lib/advanced_billing/models/metafields1.rb +103 -0
  353. data/lib/advanced_billing/models/metered_component.rb +294 -0
  354. data/lib/advanced_billing/models/metered_usage.rb +132 -0
  355. data/lib/advanced_billing/models/movement.rb +138 -0
  356. data/lib/advanced_billing/models/movement_line_item.rb +143 -0
  357. data/lib/advanced_billing/models/mrr.rb +100 -0
  358. data/lib/advanced_billing/models/mrr_movement.rb +79 -0
  359. data/lib/advanced_billing/models/mrr_response.rb +48 -0
  360. data/lib/advanced_billing/models/multi_invoice_payment.rb +90 -0
  361. data/lib/advanced_billing/models/multi_invoice_payment_response.rb +48 -0
  362. data/lib/advanced_billing/models/net_terms.rb +94 -0
  363. data/lib/advanced_billing/models/offer.rb +254 -0
  364. data/lib/advanced_billing/models/offer_discount.rb +68 -0
  365. data/lib/advanced_billing/models/offer_item.rb +130 -0
  366. data/lib/advanced_billing/models/offer_response.rb +50 -0
  367. data/lib/advanced_billing/models/offer_signup_page.rb +96 -0
  368. data/lib/advanced_billing/models/on_off_component.rb +291 -0
  369. data/lib/advanced_billing/models/organization_address.rb +123 -0
  370. data/lib/advanced_billing/models/origin_invoice.rb +69 -0
  371. data/lib/advanced_billing/models/overage_pricing.rb +87 -0
  372. data/lib/advanced_billing/models/override_subscription.rb +100 -0
  373. data/lib/advanced_billing/models/override_subscription_request.rb +48 -0
  374. data/lib/advanced_billing/models/paginated_metadata.rb +96 -0
  375. data/lib/advanced_billing/models/pause_request.rb +50 -0
  376. data/lib/advanced_billing/models/payer_attributes.rb +221 -0
  377. data/lib/advanced_billing/models/payer_error.rb +68 -0
  378. data/lib/advanced_billing/models/payment.rb +80 -0
  379. data/lib/advanced_billing/models/payment_collection_method.rb +32 -0
  380. data/lib/advanced_billing/models/payment_collection_method1.rb +30 -0
  381. data/lib/advanced_billing/models/payment_collection_method_changed.rb +79 -0
  382. data/lib/advanced_billing/models/payment_method_apple_pay_type.rb +60 -0
  383. data/lib/advanced_billing/models/payment_method_bank_account_type.rb +81 -0
  384. data/lib/advanced_billing/models/payment_method_credit_card_type.rb +101 -0
  385. data/lib/advanced_billing/models/payment_method_external_type.rb +87 -0
  386. data/lib/advanced_billing/models/payment_method_nested_data.rb +150 -0
  387. data/lib/advanced_billing/models/payment_method_paypal_type.rb +69 -0
  388. data/lib/advanced_billing/models/payment_profile.rb +287 -0
  389. data/lib/advanced_billing/models/payment_profile_attributes.rb +356 -0
  390. data/lib/advanced_billing/models/payment_profile_response.rb +49 -0
  391. data/lib/advanced_billing/models/payment_related_events.rb +79 -0
  392. data/lib/advanced_billing/models/payment_response.rb +68 -0
  393. data/lib/advanced_billing/models/payment_type.rb +26 -0
  394. data/lib/advanced_billing/models/pending_cancellation_change.rb +79 -0
  395. data/lib/advanced_billing/models/portal_management_link.rb +101 -0
  396. data/lib/advanced_billing/models/pre_payment.rb +74 -0
  397. data/lib/advanced_billing/models/prepaid_component_price_point.rb +108 -0
  398. data/lib/advanced_billing/models/prepaid_configuration.rb +103 -0
  399. data/lib/advanced_billing/models/prepaid_configuration_response.rb +49 -0
  400. data/lib/advanced_billing/models/prepaid_subscription_balance_changed.rb +110 -0
  401. data/lib/advanced_billing/models/prepaid_usage.rb +199 -0
  402. data/lib/advanced_billing/models/prepaid_usage_allocation_detail.rb +80 -0
  403. data/lib/advanced_billing/models/prepaid_usage_component.rb +350 -0
  404. data/lib/advanced_billing/models/prepayment1.rb +131 -0
  405. data/lib/advanced_billing/models/prepayment_account_balance_changed.rb +108 -0
  406. data/lib/advanced_billing/models/prepayment_aggregated_error.rb +69 -0
  407. data/lib/advanced_billing/models/prepayment_method.rb +41 -0
  408. data/lib/advanced_billing/models/prepayment_response.rb +48 -0
  409. data/lib/advanced_billing/models/prepayments_response.rb +59 -0
  410. data/lib/advanced_billing/models/preview_allocations_request.rb +69 -0
  411. data/lib/advanced_billing/models/price.rb +98 -0
  412. data/lib/advanced_billing/models/price_point.rb +172 -0
  413. data/lib/advanced_billing/models/price_point_type.rb +30 -0
  414. data/lib/advanced_billing/models/pricing_scheme.rb +31 -0
  415. data/lib/advanced_billing/models/product.rb +506 -0
  416. data/lib/advanced_billing/models/product_family.rb +120 -0
  417. data/lib/advanced_billing/models/product_family_response.rb +50 -0
  418. data/lib/advanced_billing/models/product_price_point.rb +289 -0
  419. data/lib/advanced_billing/models/product_price_point_currency_price.rb +99 -0
  420. data/lib/advanced_billing/models/product_price_point_response.rb +48 -0
  421. data/lib/advanced_billing/models/product_response.rb +48 -0
  422. data/lib/advanced_billing/models/proforma_custom_field.rb +87 -0
  423. data/lib/advanced_billing/models/proforma_error.rb +51 -0
  424. data/lib/advanced_billing/models/proforma_invoice.rb +463 -0
  425. data/lib/advanced_billing/models/proforma_invoice_credit.rb +80 -0
  426. data/lib/advanced_billing/models/proforma_invoice_discount.rb +108 -0
  427. data/lib/advanced_billing/models/proforma_invoice_discount_breakout.rb +61 -0
  428. data/lib/advanced_billing/models/proforma_invoice_issued.rb +202 -0
  429. data/lib/advanced_billing/models/proforma_invoice_payment.rb +80 -0
  430. data/lib/advanced_billing/models/proforma_invoice_preview.rb +463 -0
  431. data/lib/advanced_billing/models/proforma_invoice_tax.rb +116 -0
  432. data/lib/advanced_billing/models/proforma_invoice_tax_breakout.rb +60 -0
  433. data/lib/advanced_billing/models/proration.rb +52 -0
  434. data/lib/advanced_billing/models/public_key.rb +70 -0
  435. data/lib/advanced_billing/models/public_signup_page.rb +92 -0
  436. data/lib/advanced_billing/models/quantity_based_component.rb +303 -0
  437. data/lib/advanced_billing/models/reactivate_subscription_group_request.rb +60 -0
  438. data/lib/advanced_billing/models/reactivate_subscription_group_response.rb +130 -0
  439. data/lib/advanced_billing/models/reactivate_subscription_request.rb +122 -0
  440. data/lib/advanced_billing/models/reactivation_billing.rb +66 -0
  441. data/lib/advanced_billing/models/reactivation_charge.rb +30 -0
  442. data/lib/advanced_billing/models/read_payment_profile_response.rb +64 -0
  443. data/lib/advanced_billing/models/reason_code.rb +105 -0
  444. data/lib/advanced_billing/models/reason_code_response.rb +48 -0
  445. data/lib/advanced_billing/models/reason_codes_json_response.rb +50 -0
  446. data/lib/advanced_billing/models/record_payment_request.rb +48 -0
  447. data/lib/advanced_billing/models/recurring_scheme.rb +26 -0
  448. data/lib/advanced_billing/models/referral_code.rb +79 -0
  449. data/lib/advanced_billing/models/referral_validation_response.rb +50 -0
  450. data/lib/advanced_billing/models/refund.rb +124 -0
  451. data/lib/advanced_billing/models/refund_consolidated_invoice.rb +125 -0
  452. data/lib/advanced_billing/models/refund_invoice.rb +124 -0
  453. data/lib/advanced_billing/models/refund_invoice_event_data.rb +171 -0
  454. data/lib/advanced_billing/models/refund_invoice_request.rb +64 -0
  455. data/lib/advanced_billing/models/refund_prepayment.rb +106 -0
  456. data/lib/advanced_billing/models/refund_prepayment_aggregated_error.rb +50 -0
  457. data/lib/advanced_billing/models/refund_prepayment_base_refund_error.rb +50 -0
  458. data/lib/advanced_billing/models/refund_prepayment_request.rb +48 -0
  459. data/lib/advanced_billing/models/refund_success.rb +92 -0
  460. data/lib/advanced_billing/models/remove_payment_event_data.rb +131 -0
  461. data/lib/advanced_billing/models/renewal_preview.rb +157 -0
  462. data/lib/advanced_billing/models/renewal_preview_component.rb +91 -0
  463. data/lib/advanced_billing/models/renewal_preview_line_item.rb +161 -0
  464. data/lib/advanced_billing/models/renewal_preview_request.rb +62 -0
  465. data/lib/advanced_billing/models/renewal_preview_response.rb +49 -0
  466. data/lib/advanced_billing/models/replay_webhooks_request.rb +48 -0
  467. data/lib/advanced_billing/models/replay_webhooks_response.rb +50 -0
  468. data/lib/advanced_billing/models/resent_invitation.rb +81 -0
  469. data/lib/advanced_billing/models/resource_type.rb +23 -0
  470. data/lib/advanced_billing/models/restriction_type.rb +23 -0
  471. data/lib/advanced_billing/models/resume_options.rb +75 -0
  472. data/lib/advanced_billing/models/resumption_charge.rb +27 -0
  473. data/lib/advanced_billing/models/revoked_invitation.rb +71 -0
  474. data/lib/advanced_billing/models/sale_rep.rb +97 -0
  475. data/lib/advanced_billing/models/sale_rep_item_mrr.rb +68 -0
  476. data/lib/advanced_billing/models/sale_rep_settings.rb +109 -0
  477. data/lib/advanced_billing/models/sale_rep_subscription.rb +137 -0
  478. data/lib/advanced_billing/models/segment.rb +189 -0
  479. data/lib/advanced_billing/models/segment_price.rb +132 -0
  480. data/lib/advanced_billing/models/segment_response.rb +50 -0
  481. data/lib/advanced_billing/models/seller.rb +89 -0
  482. data/lib/advanced_billing/models/send_invoice_request.rb +72 -0
  483. data/lib/advanced_billing/models/service_credit.rb +90 -0
  484. data/lib/advanced_billing/models/service_credit_response.rb +48 -0
  485. data/lib/advanced_billing/models/service_credit_type.rb +23 -0
  486. data/lib/advanced_billing/models/shipping_address.rb +113 -0
  487. data/lib/advanced_billing/models/signup_proforma_preview.rb +62 -0
  488. data/lib/advanced_billing/models/signup_proforma_preview_response.rb +50 -0
  489. data/lib/advanced_billing/models/site.rb +212 -0
  490. data/lib/advanced_billing/models/site_response.rb +48 -0
  491. data/lib/advanced_billing/models/site_statistics.rb +171 -0
  492. data/lib/advanced_billing/models/site_summary.rb +87 -0
  493. data/lib/advanced_billing/models/snap_day.rb +21 -0
  494. data/lib/advanced_billing/models/sorting_direction.rb +23 -0
  495. data/lib/advanced_billing/models/status.rb +37 -0
  496. data/lib/advanced_billing/models/status1.rb +23 -0
  497. data/lib/advanced_billing/models/subscription.rb +776 -0
  498. data/lib/advanced_billing/models/subscription_bank_account.rb +281 -0
  499. data/lib/advanced_billing/models/subscription_component.rb +400 -0
  500. data/lib/advanced_billing/models/subscription_component_allocation_error_item.rb +59 -0
  501. data/lib/advanced_billing/models/subscription_component_response.rb +50 -0
  502. data/lib/advanced_billing/models/subscription_component_subscription.rb +70 -0
  503. data/lib/advanced_billing/models/subscription_date_field.rb +44 -0
  504. data/lib/advanced_billing/models/subscription_group.rb +94 -0
  505. data/lib/advanced_billing/models/subscription_group_balances.rb +80 -0
  506. data/lib/advanced_billing/models/subscription_group_bank_account.rb +228 -0
  507. data/lib/advanced_billing/models/subscription_group_component_custom_price.rb +105 -0
  508. data/lib/advanced_billing/models/subscription_group_credit_card.rb +266 -0
  509. data/lib/advanced_billing/models/subscription_group_customer.rb +87 -0
  510. data/lib/advanced_billing/models/subscription_group_inlined.rb +92 -0
  511. data/lib/advanced_billing/models/subscription_group_item.rb +147 -0
  512. data/lib/advanced_billing/models/subscription_group_member_error.rb +68 -0
  513. data/lib/advanced_billing/models/subscription_group_payment_profile.rb +79 -0
  514. data/lib/advanced_billing/models/subscription_group_prepayment.rb +72 -0
  515. data/lib/advanced_billing/models/subscription_group_prepayment_method.rb +35 -0
  516. data/lib/advanced_billing/models/subscription_group_prepayment_request.rb +48 -0
  517. data/lib/advanced_billing/models/subscription_group_prepayment_response.rb +90 -0
  518. data/lib/advanced_billing/models/subscription_group_response.rb +49 -0
  519. data/lib/advanced_billing/models/subscription_group_signup.rb +153 -0
  520. data/lib/advanced_billing/models/subscription_group_signup_component.rb +108 -0
  521. data/lib/advanced_billing/models/subscription_group_signup_error.rb +109 -0
  522. data/lib/advanced_billing/models/subscription_group_signup_failure.rb +84 -0
  523. data/lib/advanced_billing/models/subscription_group_signup_failure_data.rb +146 -0
  524. data/lib/advanced_billing/models/subscription_group_signup_item.rb +200 -0
  525. data/lib/advanced_billing/models/subscription_group_signup_request.rb +49 -0
  526. data/lib/advanced_billing/models/subscription_group_signup_response.rb +167 -0
  527. data/lib/advanced_billing/models/subscription_group_signup_success.rb +84 -0
  528. data/lib/advanced_billing/models/subscription_group_signup_success_data.rb +170 -0
  529. data/lib/advanced_billing/models/subscription_group_subscription_error.rb +86 -0
  530. data/lib/advanced_billing/models/subscription_group_update_error.rb +59 -0
  531. data/lib/advanced_billing/models/subscription_include.rb +23 -0
  532. data/lib/advanced_billing/models/subscription_included_coupon.rb +121 -0
  533. data/lib/advanced_billing/models/subscription_list_date_field.rb +20 -0
  534. data/lib/advanced_billing/models/subscription_migration_preview.rb +88 -0
  535. data/lib/advanced_billing/models/subscription_migration_preview_options.rb +158 -0
  536. data/lib/advanced_billing/models/subscription_migration_preview_request.rb +49 -0
  537. data/lib/advanced_billing/models/subscription_migration_preview_response.rb +48 -0
  538. data/lib/advanced_billing/models/subscription_mrr.rb +69 -0
  539. data/lib/advanced_billing/models/subscription_mrr_breakout.rb +58 -0
  540. data/lib/advanced_billing/models/subscription_mrr_response.rb +57 -0
  541. data/lib/advanced_billing/models/subscription_note.rb +97 -0
  542. data/lib/advanced_billing/models/subscription_note_response.rb +48 -0
  543. data/lib/advanced_billing/models/subscription_preview.rb +62 -0
  544. data/lib/advanced_billing/models/subscription_preview_response.rb +49 -0
  545. data/lib/advanced_billing/models/subscription_product_change.rb +80 -0
  546. data/lib/advanced_billing/models/subscription_product_migration.rb +148 -0
  547. data/lib/advanced_billing/models/subscription_product_migration_request.rb +48 -0
  548. data/lib/advanced_billing/models/subscription_purge_type.rb +23 -0
  549. data/lib/advanced_billing/models/subscription_response.rb +50 -0
  550. data/lib/advanced_billing/models/subscription_sort.rb +35 -0
  551. data/lib/advanced_billing/models/subscription_state.rb +53 -0
  552. data/lib/advanced_billing/models/subscription_state_change.rb +81 -0
  553. data/lib/advanced_billing/models/tax_configuration.rb +73 -0
  554. data/lib/advanced_billing/models/tax_configuration_kind.rb +29 -0
  555. data/lib/advanced_billing/models/tax_destination_address.rb +29 -0
  556. data/lib/advanced_billing/models/too_many_management_link_requests.rb +63 -0
  557. data/lib/advanced_billing/models/update_allocation_expiration_date.rb +50 -0
  558. data/lib/advanced_billing/models/update_component.rb +137 -0
  559. data/lib/advanced_billing/models/update_component_price_point.rb +68 -0
  560. data/lib/advanced_billing/models/update_component_price_point_request.rb +51 -0
  561. data/lib/advanced_billing/models/update_component_request.rb +48 -0
  562. data/lib/advanced_billing/models/update_coupon_currency.rb +56 -0
  563. data/lib/advanced_billing/models/update_currency_price.rb +56 -0
  564. data/lib/advanced_billing/models/update_currency_prices_request.rb +57 -0
  565. data/lib/advanced_billing/models/update_customer.rb +211 -0
  566. data/lib/advanced_billing/models/update_customer_request.rb +48 -0
  567. data/lib/advanced_billing/models/update_endpoint.rb +57 -0
  568. data/lib/advanced_billing/models/update_endpoint_request.rb +48 -0
  569. data/lib/advanced_billing/models/update_metadata.rb +68 -0
  570. data/lib/advanced_billing/models/update_metadata_request.rb +50 -0
  571. data/lib/advanced_billing/models/update_metafield.rb +103 -0
  572. data/lib/advanced_billing/models/update_metafields_request.rb +62 -0
  573. data/lib/advanced_billing/models/update_payment_profile.rb +187 -0
  574. data/lib/advanced_billing/models/update_payment_profile_request.rb +49 -0
  575. data/lib/advanced_billing/models/update_payment_profile_response.rb +49 -0
  576. data/lib/advanced_billing/models/update_price.rb +89 -0
  577. data/lib/advanced_billing/models/update_product_price_point.rb +60 -0
  578. data/lib/advanced_billing/models/update_product_price_point_request.rb +48 -0
  579. data/lib/advanced_billing/models/update_reason_code.rb +68 -0
  580. data/lib/advanced_billing/models/update_reason_code_request.rb +48 -0
  581. data/lib/advanced_billing/models/update_segment.rb +74 -0
  582. data/lib/advanced_billing/models/update_segment_request.rb +48 -0
  583. data/lib/advanced_billing/models/update_subscription.rb +270 -0
  584. data/lib/advanced_billing/models/update_subscription_component.rb +70 -0
  585. data/lib/advanced_billing/models/update_subscription_group.rb +50 -0
  586. data/lib/advanced_billing/models/update_subscription_group_request.rb +49 -0
  587. data/lib/advanced_billing/models/update_subscription_note.rb +56 -0
  588. data/lib/advanced_billing/models/update_subscription_note_request.rb +48 -0
  589. data/lib/advanced_billing/models/update_subscription_request.rb +48 -0
  590. data/lib/advanced_billing/models/updated_payment_profile.rb +255 -0
  591. data/lib/advanced_billing/models/upsert_prepaid_configuration.rb +104 -0
  592. data/lib/advanced_billing/models/upsert_prepaid_configuration_request.rb +49 -0
  593. data/lib/advanced_billing/models/usage.rb +141 -0
  594. data/lib/advanced_billing/models/usage_response.rb +48 -0
  595. data/lib/advanced_billing/models/void_invoice.rb +48 -0
  596. data/lib/advanced_billing/models/void_invoice_event_data.rb +111 -0
  597. data/lib/advanced_billing/models/void_invoice_event_data1.rb +100 -0
  598. data/lib/advanced_billing/models/void_invoice_request.rb +48 -0
  599. data/lib/advanced_billing/models/webhook.rb +165 -0
  600. data/lib/advanced_billing/models/webhook_order.rb +23 -0
  601. data/lib/advanced_billing/models/webhook_response.rb +50 -0
  602. data/lib/advanced_billing/models/webhook_status.rb +29 -0
  603. data/lib/advanced_billing/models/webhook_subscription.rb +124 -0
  604. data/lib/advanced_billing/utilities/date_time_helper.rb +11 -0
  605. data/lib/advanced_billing/utilities/file_wrapper.rb +16 -0
  606. data/lib/advanced_billing/utilities/union_type_lookup.rb +1240 -0
  607. data/lib/advanced_billing.rb +669 -0
  608. metadata +614 -111
  609. data/bin/arch +0 -1
  610. data/bin/ash +0 -1
  611. data/bin/base64 +0 -1
  612. data/bin/bbconfig +0 -1
  613. data/bin/busybox +0 -0
  614. data/bin/cat +0 -1
  615. data/bin/chattr +0 -1
  616. data/bin/chgrp +0 -1
  617. data/bin/chmod +0 -1
  618. data/bin/chown +0 -1
  619. data/bin/cp +0 -1
  620. data/bin/date +0 -1
  621. data/bin/dd +0 -1
  622. data/bin/df +0 -1
  623. data/bin/dmesg +0 -1
  624. data/bin/dnsdomainname +0 -1
  625. data/bin/dumpkmap +0 -1
  626. data/bin/echo +0 -1
  627. data/bin/ed +0 -1
  628. data/bin/egrep +0 -1
  629. data/bin/false +0 -1
  630. data/bin/fatattr +0 -1
  631. data/bin/fdflush +0 -1
  632. data/bin/fgrep +0 -1
  633. data/bin/fsync +0 -1
  634. data/bin/getopt +0 -1
  635. data/bin/grep +0 -1
  636. data/bin/gunzip +0 -1
  637. data/bin/gzip +0 -1
  638. data/bin/hostname +0 -1
  639. data/bin/ionice +0 -1
  640. data/bin/iostat +0 -1
  641. data/bin/ipcalc +0 -1
  642. data/bin/kbd_mode +0 -1
  643. data/bin/kill +0 -1
  644. data/bin/link +0 -1
  645. data/bin/linux32 +0 -1
  646. data/bin/linux64 +0 -1
  647. data/bin/ln +0 -1
  648. data/bin/login +0 -1
  649. data/bin/ls +0 -1
  650. data/bin/lsattr +0 -1
  651. data/bin/lzop +0 -1
  652. data/bin/makemime +0 -1
  653. data/bin/mkdir +0 -1
  654. data/bin/mknod +0 -1
  655. data/bin/mktemp +0 -1
  656. data/bin/more +0 -1
  657. data/bin/mount +0 -1
  658. data/bin/mountpoint +0 -1
  659. data/bin/mpstat +0 -1
  660. data/bin/mv +0 -1
  661. data/bin/netstat +0 -1
  662. data/bin/nice +0 -1
  663. data/bin/pidof +0 -0
  664. data/bin/ping +0 -1
  665. data/bin/ping6 +0 -1
  666. data/bin/pipe_progress +0 -1
  667. data/bin/printenv +0 -1
  668. data/bin/ps +0 -0
  669. data/bin/pwait +0 -0
  670. data/bin/pwd +0 -1
  671. data/bin/reformime +0 -1
  672. data/bin/rev +0 -1
  673. data/bin/rm +0 -1
  674. data/bin/rmdir +0 -1
  675. data/bin/run-parts +0 -1
  676. data/bin/sed +0 -1
  677. data/bin/setpriv +0 -1
  678. data/bin/setserial +0 -1
  679. data/bin/sh +0 -1
  680. data/bin/slabtop +0 -0
  681. data/bin/sleep +0 -1
  682. data/bin/stat +0 -1
  683. data/bin/stty +0 -1
  684. data/bin/su +0 -1
  685. data/bin/sync +0 -1
  686. data/bin/tar +0 -1
  687. data/bin/tload +0 -0
  688. data/bin/touch +0 -1
  689. data/bin/true +0 -1
  690. data/bin/umount +0 -1
  691. data/bin/uname +0 -1
  692. data/bin/usleep +0 -1
  693. data/bin/vmstat +0 -0
  694. data/bin/w +0 -0
  695. data/bin/watch +0 -0
  696. data/bin/zcat +0 -1
  697. data/lib/apk/db/installed +0 -3582
  698. data/lib/apk/db/lock +0 -0
  699. data/lib/apk/db/scripts.tar +0 -0
  700. data/lib/apk/db/triggers +0 -2
  701. data/lib/ld-musl-x86_64.so.1 +0 -0
  702. data/lib/libapk.so.3.12.0 +0 -0
  703. data/lib/libc.musl-x86_64.so.1 +0 -1
  704. data/lib/libcrypto.so.1.1 +0 -0
  705. data/lib/libprocps.so.8 +0 -1
  706. data/lib/libprocps.so.8.0.3 +0 -0
  707. data/lib/libssl.so.1.1 +0 -0
  708. data/lib/libz.so +0 -1
  709. data/lib/libz.so.1 +0 -1
  710. data/lib/libz.so.1.2.12 +0 -0
  711. data/lib/sysctl.d/00-alpine.conf +0 -40
@@ -0,0 +1,747 @@
1
+ # advanced_billing
2
+ #
3
+ # This file was automatically generated by APIMATIC v2.0
4
+ # ( https://apimatic.io ).
5
+
6
+ module AdvancedBilling
7
+ # ComponentsController
8
+ class ComponentsController < BaseController
9
+ # This request will return information regarding a component having the
10
+ # handle you provide. You can identify your components with a handle so you
11
+ # don't have to save or reference the IDs we generate.
12
+ # @param [String] handle Required parameter: The handle of the component to
13
+ # find
14
+ # @return [ComponentResponse] response from the API call.
15
+ def read_component_by_handle(handle)
16
+ new_api_call_builder
17
+ .request(new_request_builder(HttpMethodEnum::GET,
18
+ '/components/lookup.json',
19
+ Server::DEFAULT)
20
+ .query_param(new_parameter(handle, key: 'handle')
21
+ .is_required(true))
22
+ .header_param(new_parameter('application/json', key: 'accept'))
23
+ .auth(Single.new('BasicAuth')))
24
+ .response(new_response_handler
25
+ .is_nullify404(true)
26
+ .deserializer(APIHelper.method(:custom_type_deserializer))
27
+ .deserialize_into(ComponentResponse.method(:from_hash)))
28
+ .execute
29
+ end
30
+
31
+ # This request will return a list of components for a site.
32
+ # @param [BasicDateField] date_field Optional parameter: The type of filter
33
+ # you would like to apply to your search.
34
+ # @param [String] start_date Optional parameter: The start date (format
35
+ # YYYY-MM-DD) with which to filter the date_field. Returns components with a
36
+ # timestamp at or after midnight (12:00:00 AM) in your site’s time zone on
37
+ # the date specified.
38
+ # @param [String] end_date Optional parameter: The end date (format
39
+ # YYYY-MM-DD) with which to filter the date_field. Returns components with a
40
+ # timestamp up to and including 11:59:59PM in your site’s time zone on the
41
+ # date specified.
42
+ # @param [String] start_datetime Optional parameter: The start date and time
43
+ # (format YYYY-MM-DD HH:MM:SS) with which to filter the date_field. Returns
44
+ # components with a timestamp at or after exact time provided in query. You
45
+ # can specify timezone in query - otherwise your site's time zone will be
46
+ # used. If provided, this parameter will be used instead of start_date.
47
+ # @param [String] end_datetime Optional parameter: The end date and time
48
+ # (format YYYY-MM-DD HH:MM:SS) with which to filter the date_field. Returns
49
+ # components with a timestamp at or before exact time provided in query. You
50
+ # can specify timezone in query - otherwise your site's time zone will be
51
+ # used. If provided, this parameter will be used instead of end_date.
52
+ # optional
53
+ # @param [TrueClass | FalseClass] include_archived Optional parameter:
54
+ # Include archived items
55
+ # @param [Integer] page Optional parameter: Result records are organized in
56
+ # pages. By default, the first page of results is displayed. The page
57
+ # parameter specifies a page number of results to fetch. You can start
58
+ # navigating through the pages to consume the results. You do this by
59
+ # passing in a page parameter. Retrieve the next page by adding ?page=2 to
60
+ # the query string. If there are no results to return, then an empty result
61
+ # set will be returned. Use in query `page=1`.
62
+ # @param [Integer] per_page Optional parameter: This parameter indicates how
63
+ # many records to fetch in each request. Default value is 20. The maximum
64
+ # allowed values is 200; any per_page value over 200 will be changed to 200.
65
+ # Use in query `per_page=200`.
66
+ # @param [Array[String]] filter_ids Optional parameter: Allows fetching
67
+ # components with matching id based on provided value. Use in query
68
+ # `filter[ids]=1,2,3`.
69
+ # @param [TrueClass | FalseClass] filter_use_site_exchange_rate Optional
70
+ # parameter: Allows fetching components with matching use_site_exchange_rate
71
+ # based on provided value (refers to default price point). Use in query
72
+ # `filter[use_site_exchange_rate]=true`.
73
+ # @return [Array[ComponentResponse]] response from the API call.
74
+ def list_components(options = {})
75
+ new_api_call_builder
76
+ .request(new_request_builder(HttpMethodEnum::GET,
77
+ '/components.json',
78
+ Server::DEFAULT)
79
+ .query_param(new_parameter(options['date_field'], key: 'date_field'))
80
+ .query_param(new_parameter(options['start_date'], key: 'start_date'))
81
+ .query_param(new_parameter(options['end_date'], key: 'end_date'))
82
+ .query_param(new_parameter(options['start_datetime'], key: 'start_datetime'))
83
+ .query_param(new_parameter(options['end_datetime'], key: 'end_datetime'))
84
+ .query_param(new_parameter(options['include_archived'], key: 'include_archived'))
85
+ .query_param(new_parameter(options['page'], key: 'page'))
86
+ .query_param(new_parameter(options['per_page'], key: 'per_page'))
87
+ .query_param(new_parameter(options['filter_ids'], key: 'filter[ids]'))
88
+ .query_param(new_parameter(options['filter_use_site_exchange_rate'], key: 'filter[use_site_exchange_rate]'))
89
+ .header_param(new_parameter('application/json', key: 'accept'))
90
+ .auth(Single.new('BasicAuth'))
91
+ .array_serialization_format(ArraySerializationFormat::CSV))
92
+ .response(new_response_handler
93
+ .is_nullify404(true)
94
+ .deserializer(APIHelper.method(:custom_type_deserializer))
95
+ .deserialize_into(ComponentResponse.method(:from_hash))
96
+ .is_response_array(true))
97
+ .execute
98
+ end
99
+
100
+ # This request will return information regarding a component from a specific
101
+ # product family.
102
+ # You may read the component by either the component's id or handle. When
103
+ # using the handle, it must be prefixed with `handle:`.
104
+ # @param [Integer] product_family_id Required parameter: The Chargify id of
105
+ # the product family to which the component belongs
106
+ # @param [String] component_id Required parameter: Either the Chargify id of
107
+ # the component or the handle for the component prefixed with `handle:`
108
+ # @return [ComponentResponse] response from the API call.
109
+ def read_component_by_id(product_family_id,
110
+ component_id)
111
+ new_api_call_builder
112
+ .request(new_request_builder(HttpMethodEnum::GET,
113
+ '/product_families/{product_family_id}/components/{component_id}.json',
114
+ Server::DEFAULT)
115
+ .template_param(new_parameter(product_family_id, key: 'product_family_id')
116
+ .is_required(true)
117
+ .should_encode(true))
118
+ .template_param(new_parameter(component_id, key: 'component_id')
119
+ .is_required(true)
120
+ .should_encode(true))
121
+ .header_param(new_parameter('application/json', key: 'accept'))
122
+ .auth(Single.new('BasicAuth')))
123
+ .response(new_response_handler
124
+ .is_nullify404(true)
125
+ .deserializer(APIHelper.method(:custom_type_deserializer))
126
+ .deserialize_into(ComponentResponse.method(:from_hash)))
127
+ .execute
128
+ end
129
+
130
+ # This request will update a component from a specific product family.
131
+ # You may read the component by either the component's id or handle. When
132
+ # using the handle, it must be prefixed with `handle:`.
133
+ # @param [Integer] product_family_id Required parameter: The Chargify id of
134
+ # the product family to which the component belongs
135
+ # @param [String] component_id Required parameter: Either the Chargify id of
136
+ # the component or the handle for the component prefixed with `handle:`
137
+ # @param [UpdateComponentRequest] body Optional parameter: Example:
138
+ # @return [ComponentResponse] response from the API call.
139
+ def update_product_family_component(product_family_id,
140
+ component_id,
141
+ body: nil)
142
+ new_api_call_builder
143
+ .request(new_request_builder(HttpMethodEnum::PUT,
144
+ '/product_families/{product_family_id}/components/{component_id}.json',
145
+ Server::DEFAULT)
146
+ .template_param(new_parameter(product_family_id, key: 'product_family_id')
147
+ .is_required(true)
148
+ .should_encode(true))
149
+ .template_param(new_parameter(component_id, key: 'component_id')
150
+ .is_required(true)
151
+ .should_encode(true))
152
+ .header_param(new_parameter('application/json', key: 'Content-Type'))
153
+ .body_param(new_parameter(body))
154
+ .header_param(new_parameter('application/json', key: 'accept'))
155
+ .body_serializer(proc do |param| param.to_json unless param.nil? end)
156
+ .auth(Single.new('BasicAuth')))
157
+ .response(new_response_handler
158
+ .is_nullify404(true)
159
+ .deserializer(APIHelper.method(:custom_type_deserializer))
160
+ .deserialize_into(ComponentResponse.method(:from_hash))
161
+ .local_error('422',
162
+ 'Unprocessable Entity (WebDAV)',
163
+ ErrorListResponseException))
164
+ .execute
165
+ end
166
+
167
+ # This request will create a component definition under the specified
168
+ # product family. These component definitions determine what components are
169
+ # named, how they are measured, and how much they cost.
170
+ # Components can then be added and “allocated” for each subscription to a
171
+ # product in the product family. These component line-items affect how much
172
+ # a subscription will be charged, depending on the current allocations (i.e.
173
+ # 4 IP Addresses, or SSL “enabled”)
174
+ # This documentation covers both component definitions and component
175
+ # line-items. Please understand the difference.
176
+ # Please note that you may not edit components via API. To do so, please log
177
+ # into the application.
178
+ # ### Component Documentation
179
+ # For more information on components, please see our documentation
180
+ # [here](https://maxio-chargify.zendesk.com/hc/en-us/articles/5405020625677)
181
+ # .
182
+ # For information on how to record component usage against a subscription,
183
+ # please see the following resources:
184
+ # + [Proration and Component
185
+ # Allocations](https://maxio-chargify.zendesk.com/hc/en-us/articles/54050206
186
+ # 25677#applying-proration-and-recording-components)
187
+ # + [Recording component usage against a
188
+ # subscription](https://maxio-chargify.zendesk.com/hc/en-us/articles/5404606
189
+ # 587917#recording-component-usage)
190
+ # @param [Integer] product_family_id Required parameter: The Chargify id of
191
+ # the product family to which the component belongs
192
+ # @param [ComponentKindPath] component_kind Required parameter: The
193
+ # component kind
194
+ # @param [CreateMeteredComponent | CreateQuantityBasedComponent |
195
+ # CreateOnOffComponent | CreatePrepaidComponent | CreateEBBComponent | nil]
196
+ # body Optional parameter: Example:
197
+ # @return [ComponentResponse] response from the API call.
198
+ def create_component(product_family_id,
199
+ component_kind,
200
+ body: nil)
201
+ new_api_call_builder
202
+ .request(new_request_builder(HttpMethodEnum::POST,
203
+ '/product_families/{product_family_id}/{component_kind}.json',
204
+ Server::DEFAULT)
205
+ .template_param(new_parameter(product_family_id, key: 'product_family_id')
206
+ .is_required(true)
207
+ .should_encode(true))
208
+ .template_param(new_parameter(component_kind, key: 'component_kind')
209
+ .is_required(true)
210
+ .should_encode(true))
211
+ .header_param(new_parameter('application/json', key: 'Content-Type'))
212
+ .body_param(new_parameter(body)
213
+ .validator(proc do |value|
214
+ UnionTypeLookUp.get(:CreateComponentBody)
215
+ .validate(value)
216
+ end))
217
+ .header_param(new_parameter('application/json', key: 'accept'))
218
+ .body_serializer(APIHelper.method(:json_serialize))
219
+ .auth(Single.new('BasicAuth')))
220
+ .response(new_response_handler
221
+ .is_nullify404(true)
222
+ .deserializer(APIHelper.method(:custom_type_deserializer))
223
+ .deserialize_into(ComponentResponse.method(:from_hash))
224
+ .local_error('422',
225
+ 'Unprocessable Entity (WebDAV)',
226
+ ErrorListResponseException))
227
+ .execute
228
+ end
229
+
230
+ # Sending a DELETE request to this endpoint will archive the component. All
231
+ # current subscribers will be unffected; their subscription/purchase will
232
+ # continue to be charged as usual.
233
+ # @param [Integer] product_family_id Required parameter: The Chargify id of
234
+ # the product family to which the component belongs
235
+ # @param [String] component_id Required parameter: Either the Chargify id of
236
+ # the component or the handle for the component prefixed with `handle:`
237
+ # @return [ComponentResponse] response from the API call.
238
+ def archive_component(product_family_id,
239
+ component_id)
240
+ new_api_call_builder
241
+ .request(new_request_builder(HttpMethodEnum::DELETE,
242
+ '/product_families/{product_family_id}/components/{component_id}.json',
243
+ Server::DEFAULT)
244
+ .template_param(new_parameter(product_family_id, key: 'product_family_id')
245
+ .is_required(true)
246
+ .should_encode(true))
247
+ .template_param(new_parameter(component_id, key: 'component_id')
248
+ .is_required(true)
249
+ .should_encode(true))
250
+ .header_param(new_parameter('application/json', key: 'accept'))
251
+ .auth(Single.new('BasicAuth')))
252
+ .response(new_response_handler
253
+ .is_nullify404(true)
254
+ .deserializer(APIHelper.method(:custom_type_deserializer))
255
+ .deserialize_into(ComponentResponse.method(:from_hash))
256
+ .local_error('422',
257
+ 'Unprocessable Entity (WebDAV)',
258
+ ErrorListResponseException))
259
+ .execute
260
+ end
261
+
262
+ # When updating a price point, it's prices can be updated as well by
263
+ # creating new prices or editing / removing existing ones.
264
+ # Passing in a price bracket without an `id` will attempt to create a new
265
+ # price.
266
+ # Including an `id` will update the corresponding price, and including the
267
+ # `_destroy` flag set to true along with the `id` will remove that price.
268
+ # Note: Custom price points cannot be updated directly. They must be edited
269
+ # through the Subscription.
270
+ # @param [Integer] component_id Required parameter: The Chargify id of the
271
+ # component to which the price point belongs
272
+ # @param [Integer] price_point_id Required parameter: The Chargify id of the
273
+ # price point
274
+ # @param [UpdateComponentPricePointRequest] body Optional parameter:
275
+ # Example:
276
+ # @return [ComponentPricePointResponse] response from the API call.
277
+ def update_component_price_point(component_id,
278
+ price_point_id,
279
+ body: nil)
280
+ new_api_call_builder
281
+ .request(new_request_builder(HttpMethodEnum::PUT,
282
+ '/components/{component_id}/price_points/{price_point_id}.json',
283
+ Server::DEFAULT)
284
+ .template_param(new_parameter(component_id, key: 'component_id')
285
+ .is_required(true)
286
+ .should_encode(true))
287
+ .template_param(new_parameter(price_point_id, key: 'price_point_id')
288
+ .is_required(true)
289
+ .should_encode(true))
290
+ .header_param(new_parameter('application/json', key: 'Content-Type'))
291
+ .body_param(new_parameter(body))
292
+ .header_param(new_parameter('application/json', key: 'accept'))
293
+ .body_serializer(proc do |param| param.to_json unless param.nil? end)
294
+ .auth(Single.new('BasicAuth')))
295
+ .response(new_response_handler
296
+ .is_nullify404(true)
297
+ .deserializer(APIHelper.method(:custom_type_deserializer))
298
+ .deserialize_into(ComponentPricePointResponse.method(:from_hash)))
299
+ .execute
300
+ end
301
+
302
+ # A price point can be archived at any time. Subscriptions using a price
303
+ # point that has been archived will continue using it until they're moved to
304
+ # another price point.
305
+ # @param [Integer] component_id Required parameter: The Chargify id of the
306
+ # component to which the price point belongs
307
+ # @param [Integer] price_point_id Required parameter: The Chargify id of the
308
+ # price point
309
+ # @return [ComponentPricePointResponse] response from the API call.
310
+ def archive_component_price_point(component_id,
311
+ price_point_id)
312
+ new_api_call_builder
313
+ .request(new_request_builder(HttpMethodEnum::DELETE,
314
+ '/components/{component_id}/price_points/{price_point_id}.json',
315
+ Server::DEFAULT)
316
+ .template_param(new_parameter(component_id, key: 'component_id')
317
+ .is_required(true)
318
+ .should_encode(true))
319
+ .template_param(new_parameter(price_point_id, key: 'price_point_id')
320
+ .is_required(true)
321
+ .should_encode(true))
322
+ .header_param(new_parameter('application/json', key: 'accept'))
323
+ .auth(Single.new('BasicAuth')))
324
+ .response(new_response_handler
325
+ .is_nullify404(true)
326
+ .deserializer(APIHelper.method(:custom_type_deserializer))
327
+ .deserialize_into(ComponentPricePointResponse.method(:from_hash)))
328
+ .execute
329
+ end
330
+
331
+ # This endpoint can be used to create a new price point for an existing
332
+ # component.
333
+ # @param [Integer] component_id Required parameter: The Chargify id of the
334
+ # component
335
+ # @param [CreateComponentPricePointRequest] body Optional parameter:
336
+ # Example:
337
+ # @return [ComponentPricePointResponse] response from the API call.
338
+ def create_component_price_point(component_id,
339
+ body: nil)
340
+ new_api_call_builder
341
+ .request(new_request_builder(HttpMethodEnum::POST,
342
+ '/components/{component_id}/price_points.json',
343
+ Server::DEFAULT)
344
+ .template_param(new_parameter(component_id, key: 'component_id')
345
+ .is_required(true)
346
+ .should_encode(true))
347
+ .header_param(new_parameter('application/json', key: 'Content-Type'))
348
+ .body_param(new_parameter(body))
349
+ .header_param(new_parameter('application/json', key: 'accept'))
350
+ .body_serializer(proc do |param| param.to_json unless param.nil? end)
351
+ .auth(Single.new('BasicAuth')))
352
+ .response(new_response_handler
353
+ .is_nullify404(true)
354
+ .deserializer(APIHelper.method(:custom_type_deserializer))
355
+ .deserialize_into(ComponentPricePointResponse.method(:from_hash)))
356
+ .execute
357
+ end
358
+
359
+ # Sets a new default price point for the component. This new default will
360
+ # apply to all new subscriptions going forward - existing subscriptions will
361
+ # remain on their current price point.
362
+ # See [Price Points
363
+ # Documentation](https://chargify.zendesk.com/hc/en-us/articles/440775586588
364
+ # 3#price-points) for more information on price points and moving
365
+ # subscriptions between price points.
366
+ # Note: Custom price points are not able to be set as the default for a
367
+ # component.
368
+ # @param [Integer] component_id Required parameter: The Chargify id of the
369
+ # component to which the price point belongs
370
+ # @param [Integer] price_point_id Required parameter: The Chargify id of the
371
+ # price point
372
+ # @return [void] response from the API call.
373
+ def update_default_price_point_for_component(component_id,
374
+ price_point_id)
375
+ new_api_call_builder
376
+ .request(new_request_builder(HttpMethodEnum::PUT,
377
+ '/components/{component_id}/price_points/{price_point_id}/default.json',
378
+ Server::DEFAULT)
379
+ .template_param(new_parameter(component_id, key: 'component_id')
380
+ .is_required(true)
381
+ .should_encode(true))
382
+ .template_param(new_parameter(price_point_id, key: 'price_point_id')
383
+ .is_required(true)
384
+ .should_encode(true))
385
+ .auth(Single.new('BasicAuth')))
386
+ .response(new_response_handler
387
+ .is_nullify404(true)
388
+ .is_response_void(true))
389
+ .execute
390
+ end
391
+
392
+ # This request will update a component.
393
+ # You may read the component by either the component's id or handle. When
394
+ # using the handle, it must be prefixed with `handle:`.
395
+ # @param [String] component_id Required parameter: The id or handle of the
396
+ # component
397
+ # @param [UpdateComponentRequest] body Optional parameter: Example:
398
+ # @return [void] response from the API call.
399
+ def update_component(component_id,
400
+ body: nil)
401
+ new_api_call_builder
402
+ .request(new_request_builder(HttpMethodEnum::PUT,
403
+ '/components/{component_id}.json',
404
+ Server::DEFAULT)
405
+ .template_param(new_parameter(component_id, key: 'component_id')
406
+ .is_required(true)
407
+ .should_encode(true))
408
+ .header_param(new_parameter('application/json', key: 'Content-Type'))
409
+ .body_param(new_parameter(body))
410
+ .body_serializer(proc do |param| param.to_json unless param.nil? end)
411
+ .auth(Single.new('BasicAuth')))
412
+ .response(new_response_handler
413
+ .is_nullify404(true)
414
+ .is_response_void(true))
415
+ .execute
416
+ end
417
+
418
+ # Use this endpoint to read current price points that are associated with a
419
+ # component.
420
+ # You may specify the component by using either the numeric id or the
421
+ # `handle:gold` syntax.
422
+ # When fetching a component's price points, if you have defined multiple
423
+ # currencies at the site level, you can optionally pass the
424
+ # `?currency_prices=true` query param to include an array of currency price
425
+ # data in the response.
426
+ # If the price point is set to `use_site_exchange_rate: true`, it will
427
+ # return pricing based on the current exchange rate. If the flag is set to
428
+ # false, it will return all of the defined prices for each currency.
429
+ # @param [Integer] component_id Required parameter: The Chargify id of the
430
+ # component
431
+ # @param [TrueClass | FalseClass] currency_prices Optional parameter:
432
+ # Include an array of currency price data
433
+ # @param [Integer] page Optional parameter: Result records are organized in
434
+ # pages. By default, the first page of results is displayed. The page
435
+ # parameter specifies a page number of results to fetch. You can start
436
+ # navigating through the pages to consume the results. You do this by
437
+ # passing in a page parameter. Retrieve the next page by adding ?page=2 to
438
+ # the query string. If there are no results to return, then an empty result
439
+ # set will be returned. Use in query `page=1`.
440
+ # @param [Integer] per_page Optional parameter: This parameter indicates how
441
+ # many records to fetch in each request. Default value is 20. The maximum
442
+ # allowed values is 200; any per_page value over 200 will be changed to 200.
443
+ # Use in query `per_page=200`.
444
+ # @param [Array[PricePointType]] filter_type Optional parameter: Use in
445
+ # query: `filter[type]=catalog,default`.
446
+ # @return [ComponentPricePointsResponse] response from the API call.
447
+ def list_component_price_points(options = {})
448
+ new_api_call_builder
449
+ .request(new_request_builder(HttpMethodEnum::GET,
450
+ '/components/{component_id}/price_points.json',
451
+ Server::DEFAULT)
452
+ .template_param(new_parameter(options['component_id'], key: 'component_id')
453
+ .is_required(true)
454
+ .should_encode(true))
455
+ .query_param(new_parameter(options['currency_prices'], key: 'currency_prices'))
456
+ .query_param(new_parameter(options['page'], key: 'page'))
457
+ .query_param(new_parameter(options['per_page'], key: 'per_page'))
458
+ .query_param(new_parameter(options['filter_type'], key: 'filter[type]'))
459
+ .header_param(new_parameter('application/json', key: 'accept'))
460
+ .auth(Single.new('BasicAuth'))
461
+ .array_serialization_format(ArraySerializationFormat::CSV))
462
+ .response(new_response_handler
463
+ .is_nullify404(true)
464
+ .deserializer(APIHelper.method(:custom_type_deserializer))
465
+ .deserialize_into(ComponentPricePointsResponse.method(:from_hash)))
466
+ .execute
467
+ end
468
+
469
+ # This method allows to retrieve a list of Components Price Points belonging
470
+ # to a Site.
471
+ # @param [BasicDateField] filter_date_field Optional parameter: The type of
472
+ # filter you would like to apply to your search. Use in query:
473
+ # `filter[date_field]=created_at`.
474
+ # @param [String] filter_end_date Optional parameter: The end date (format
475
+ # YYYY-MM-DD) with which to filter the date_field. Returns price points with
476
+ # a timestamp up to and including 11:59:59PM in your site’s time zone on the
477
+ # date specified.
478
+ # @param [String] filter_end_datetime Optional parameter: The end date and
479
+ # time (format YYYY-MM-DD HH:MM:SS) with which to filter the date_field.
480
+ # Returns price points with a timestamp at or before exact time provided in
481
+ # query. You can specify timezone in query - otherwise your site's time zone
482
+ # will be used. If provided, this parameter will be used instead of
483
+ # end_date.
484
+ # @param [ListComponentsPricePointsInclude] include Optional parameter:
485
+ # Allows including additional data in the response. Use in query:
486
+ # `include=currency_prices`.
487
+ # @param [Integer] page Optional parameter: Result records are organized in
488
+ # pages. By default, the first page of results is displayed. The page
489
+ # parameter specifies a page number of results to fetch. You can start
490
+ # navigating through the pages to consume the results. You do this by
491
+ # passing in a page parameter. Retrieve the next page by adding ?page=2 to
492
+ # the query string. If there are no results to return, then an empty result
493
+ # set will be returned. Use in query `page=1`.
494
+ # @param [Integer] per_page Optional parameter: This parameter indicates how
495
+ # many records to fetch in each request. Default value is 20. The maximum
496
+ # allowed values is 200; any per_page value over 200 will be changed to 200.
497
+ # Use in query `per_page=200`.
498
+ # @param [String] filter_start_date Optional parameter: The start date
499
+ # (format YYYY-MM-DD) with which to filter the date_field. Returns price
500
+ # points with a timestamp at or after midnight (12:00:00 AM) in your site’s
501
+ # time zone on the date specified.
502
+ # @param [String] filter_start_datetime Optional parameter: The start date
503
+ # and time (format YYYY-MM-DD HH:MM:SS) with which to filter the date_field.
504
+ # Returns price points with a timestamp at or after exact time provided in
505
+ # query. You can specify timezone in query - otherwise your site's time zone
506
+ # will be used. If provided, this parameter will be used instead of
507
+ # start_date.
508
+ # @param [PricePointType] filter_type Optional parameter: Allows fetching
509
+ # price points with matching type. Use in query:
510
+ # `filter[type]=custom,catalog`.
511
+ # @param [SortingDirection | nil] direction Optional parameter: Controls the
512
+ # order in which results are returned. Use in query `direction=asc`.
513
+ # @param [Array[Integer]] filter_ids Optional parameter: Allows fetching
514
+ # price points with matching id based on provided values. Use in query:
515
+ # `filter[ids]=1,2,3`.
516
+ # @param [IncludeNotNull] filter_archived_at Optional parameter: Allows
517
+ # fetching price points only if archived_at is present or not. Use in query:
518
+ # `filter[archived_at]=not_null`.
519
+ # @return [ListComponentsPricePointsResponse] response from the API call.
520
+ def list_all_component_price_points(options = {})
521
+ new_api_call_builder
522
+ .request(new_request_builder(HttpMethodEnum::GET,
523
+ '/components_price_points.json',
524
+ Server::DEFAULT)
525
+ .query_param(new_parameter(options['filter_date_field'], key: 'filter[date_field]'))
526
+ .query_param(new_parameter(options['filter_end_date'], key: 'filter[end_date]'))
527
+ .query_param(new_parameter(options['filter_end_datetime'], key: 'filter[end_datetime]'))
528
+ .query_param(new_parameter(options['include'], key: 'include'))
529
+ .query_param(new_parameter(options['page'], key: 'page'))
530
+ .query_param(new_parameter(options['per_page'], key: 'per_page'))
531
+ .query_param(new_parameter(options['filter_start_date'], key: 'filter[start_date]'))
532
+ .query_param(new_parameter(options['filter_start_datetime'], key: 'filter[start_datetime]'))
533
+ .query_param(new_parameter(options['filter_type'], key: 'filter[type]'))
534
+ .query_param(new_parameter(options['direction'], key: 'direction')
535
+ .validator(proc do |value|
536
+ UnionTypeLookUp.get(:ListAllComponentPricePointsInputDirection)
537
+ .validate(value)
538
+ end))
539
+ .query_param(new_parameter(options['filter_ids'], key: 'filter[ids]'))
540
+ .query_param(new_parameter(options['filter_archived_at'], key: 'filter[archived_at]'))
541
+ .header_param(new_parameter('application/json', key: 'accept'))
542
+ .auth(Single.new('BasicAuth'))
543
+ .array_serialization_format(ArraySerializationFormat::CSV))
544
+ .response(new_response_handler
545
+ .is_nullify404(true)
546
+ .deserializer(APIHelper.method(:custom_type_deserializer))
547
+ .deserialize_into(ListComponentsPricePointsResponse.method(:from_hash))
548
+ .local_error('422',
549
+ 'Unprocessable Entity (WebDAV)',
550
+ ErrorListResponseException))
551
+ .execute
552
+ end
553
+
554
+ # This request will return a list of components for a particular product
555
+ # family.
556
+ # @param [Integer] product_family_id Required parameter: The Chargify id of
557
+ # the product family
558
+ # @param [TrueClass | FalseClass] include_archived Optional parameter:
559
+ # Include archived items.
560
+ # @param [Array[Integer]] filter_ids Optional parameter: Allows fetching
561
+ # components with matching id based on provided value. Use in query
562
+ # `filter[ids]=1,2`.
563
+ # @param [Integer] page Optional parameter: Result records are organized in
564
+ # pages. By default, the first page of results is displayed. The page
565
+ # parameter specifies a page number of results to fetch. You can start
566
+ # navigating through the pages to consume the results. You do this by
567
+ # passing in a page parameter. Retrieve the next page by adding ?page=2 to
568
+ # the query string. If there are no results to return, then an empty result
569
+ # set will be returned. Use in query `page=1`.
570
+ # @param [Integer] per_page Optional parameter: This parameter indicates how
571
+ # many records to fetch in each request. Default value is 20. The maximum
572
+ # allowed values is 200; any per_page value over 200 will be changed to 200.
573
+ # Use in query `per_page=200`.
574
+ # @param [BasicDateField] date_field Optional parameter: The type of filter
575
+ # you would like to apply to your search. Use in query
576
+ # `date_field=created_at`.
577
+ # @param [String] end_date Optional parameter: The end date (format
578
+ # YYYY-MM-DD) with which to filter the date_field. Returns components with a
579
+ # timestamp up to and including 11:59:59PM in your site’s time zone on the
580
+ # date specified.
581
+ # @param [String] end_datetime Optional parameter: The end date and time
582
+ # (format YYYY-MM-DD HH:MM:SS) with which to filter the date_field. Returns
583
+ # components with a timestamp at or before exact time provided in query. You
584
+ # can specify timezone in query - otherwise your site's time zone will be
585
+ # used. If provided, this parameter will be used instead of end_date.
586
+ # optional.
587
+ # @param [String] start_date Optional parameter: The start date (format
588
+ # YYYY-MM-DD) with which to filter the date_field. Returns components with a
589
+ # timestamp at or after midnight (12:00:00 AM) in your site’s time zone on
590
+ # the date specified.
591
+ # @param [String] start_datetime Optional parameter: The start date and time
592
+ # (format YYYY-MM-DD HH:MM:SS) with which to filter the date_field. Returns
593
+ # components with a timestamp at or after exact time provided in query. You
594
+ # can specify timezone in query - otherwise your site's time zone will be
595
+ # used. If provided, this parameter will be used instead of start_date.
596
+ # @param [TrueClass | FalseClass] filter_use_site_exchange_rate Optional
597
+ # parameter: Allows fetching components with matching use_site_exchange_rate
598
+ # based on provided value (refers to default price point). Use in query
599
+ # `filter[use_site_exchange_rate]=true`.
600
+ # @return [Array[ComponentResponse]] response from the API call.
601
+ def list_components_for_product_family(options = {})
602
+ new_api_call_builder
603
+ .request(new_request_builder(HttpMethodEnum::GET,
604
+ '/product_families/{product_family_id}/components.json',
605
+ Server::DEFAULT)
606
+ .template_param(new_parameter(options['product_family_id'], key: 'product_family_id')
607
+ .is_required(true)
608
+ .should_encode(true))
609
+ .query_param(new_parameter(options['include_archived'], key: 'include_archived'))
610
+ .query_param(new_parameter(options['filter_ids'], key: 'filter[ids]'))
611
+ .query_param(new_parameter(options['page'], key: 'page'))
612
+ .query_param(new_parameter(options['per_page'], key: 'per_page'))
613
+ .query_param(new_parameter(options['date_field'], key: 'date_field'))
614
+ .query_param(new_parameter(options['end_date'], key: 'end_date'))
615
+ .query_param(new_parameter(options['end_datetime'], key: 'end_datetime'))
616
+ .query_param(new_parameter(options['start_date'], key: 'start_date'))
617
+ .query_param(new_parameter(options['start_datetime'], key: 'start_datetime'))
618
+ .query_param(new_parameter(options['filter_use_site_exchange_rate'], key: 'filter[use_site_exchange_rate]'))
619
+ .header_param(new_parameter('application/json', key: 'accept'))
620
+ .auth(Single.new('BasicAuth'))
621
+ .array_serialization_format(ArraySerializationFormat::CSV))
622
+ .response(new_response_handler
623
+ .is_nullify404(true)
624
+ .deserializer(APIHelper.method(:custom_type_deserializer))
625
+ .deserialize_into(ComponentResponse.method(:from_hash))
626
+ .is_response_array(true))
627
+ .execute
628
+ end
629
+
630
+ # Use this endpoint to create multiple component price points in one
631
+ # request.
632
+ # @param [String] component_id Required parameter: The Chargify id of the
633
+ # component for which you want to fetch price points.
634
+ # @param [CreateComponentPricePointsRequest] body Optional parameter:
635
+ # Example:
636
+ # @return [ComponentPricePointsResponse] response from the API call.
637
+ def create_component_price_points(component_id,
638
+ body: nil)
639
+ new_api_call_builder
640
+ .request(new_request_builder(HttpMethodEnum::POST,
641
+ '/components/{component_id}/price_points/bulk.json',
642
+ Server::DEFAULT)
643
+ .template_param(new_parameter(component_id, key: 'component_id')
644
+ .is_required(true)
645
+ .should_encode(true))
646
+ .header_param(new_parameter('application/json', key: 'Content-Type'))
647
+ .body_param(new_parameter(body))
648
+ .header_param(new_parameter('application/json', key: 'accept'))
649
+ .body_serializer(proc do |param| param.to_json unless param.nil? end)
650
+ .auth(Single.new('BasicAuth')))
651
+ .response(new_response_handler
652
+ .is_nullify404(true)
653
+ .deserializer(APIHelper.method(:custom_type_deserializer))
654
+ .deserialize_into(ComponentPricePointsResponse.method(:from_hash)))
655
+ .execute
656
+ end
657
+
658
+ # Use this endpoint to unarchive a component price point.
659
+ # @param [Integer] component_id Required parameter: The Chargify id of the
660
+ # component to which the price point belongs
661
+ # @param [Integer] price_point_id Required parameter: The Chargify id of the
662
+ # price point
663
+ # @return [ComponentPricePointResponse] response from the API call.
664
+ def unarchive_component_price_point(component_id,
665
+ price_point_id)
666
+ new_api_call_builder
667
+ .request(new_request_builder(HttpMethodEnum::PUT,
668
+ '/components/{component_id}/price_points/{price_point_id}/unarchive.json',
669
+ Server::DEFAULT)
670
+ .template_param(new_parameter(component_id, key: 'component_id')
671
+ .is_required(true)
672
+ .should_encode(true))
673
+ .template_param(new_parameter(price_point_id, key: 'price_point_id')
674
+ .is_required(true)
675
+ .should_encode(true))
676
+ .header_param(new_parameter('application/json', key: 'accept'))
677
+ .auth(Single.new('BasicAuth')))
678
+ .response(new_response_handler
679
+ .is_nullify404(true)
680
+ .deserializer(APIHelper.method(:custom_type_deserializer))
681
+ .deserialize_into(ComponentPricePointResponse.method(:from_hash)))
682
+ .execute
683
+ end
684
+
685
+ # This endpoint allows you to create currency prices for a given currency
686
+ # that has been defined on the site level in your settings.
687
+ # When creating currency prices, they need to mirror the structure of your
688
+ # primary pricing. For each price level defined on the component price
689
+ # point, there should be a matching price level created in the given
690
+ # currency.
691
+ # Note: Currency Prices are not able to be created for custom price points.
692
+ # @param [Integer] price_point_id Required parameter: The Chargify id of the
693
+ # price point
694
+ # @param [CreateCurrencyPricesRequest] body Optional parameter: Example:
695
+ # @return [Array[CurrencyPrice]] response from the API call.
696
+ def create_currency_prices(price_point_id,
697
+ body: nil)
698
+ new_api_call_builder
699
+ .request(new_request_builder(HttpMethodEnum::POST,
700
+ '/price_points/{price_point_id}/currency_prices.json',
701
+ Server::DEFAULT)
702
+ .template_param(new_parameter(price_point_id, key: 'price_point_id')
703
+ .is_required(true)
704
+ .should_encode(true))
705
+ .header_param(new_parameter('application/json', key: 'Content-Type'))
706
+ .body_param(new_parameter(body))
707
+ .header_param(new_parameter('application/json', key: 'accept'))
708
+ .body_serializer(proc do |param| param.to_json unless param.nil? end)
709
+ .auth(Single.new('BasicAuth')))
710
+ .response(new_response_handler
711
+ .is_nullify404(true)
712
+ .deserializer(APIHelper.method(:custom_type_deserializer))
713
+ .deserialize_into(CurrencyPrice.method(:from_hash))
714
+ .is_response_array(true))
715
+ .execute
716
+ end
717
+
718
+ # This endpoint allows you to update currency prices for a given currency
719
+ # that has been defined on the site level in your settings.
720
+ # Note: Currency Prices are not able to be updated for custom price points.
721
+ # @param [Integer] price_point_id Required parameter: The Chargify id of the
722
+ # price point
723
+ # @param [UpdateCurrencyPricesRequest] body Optional parameter: Example:
724
+ # @return [Array[CurrencyPrice]] response from the API call.
725
+ def update_currency_prices(price_point_id,
726
+ body: nil)
727
+ new_api_call_builder
728
+ .request(new_request_builder(HttpMethodEnum::PUT,
729
+ '/price_points/{price_point_id}/currency_prices.json',
730
+ Server::DEFAULT)
731
+ .template_param(new_parameter(price_point_id, key: 'price_point_id')
732
+ .is_required(true)
733
+ .should_encode(true))
734
+ .header_param(new_parameter('application/json', key: 'Content-Type'))
735
+ .body_param(new_parameter(body))
736
+ .header_param(new_parameter('application/json', key: 'accept'))
737
+ .body_serializer(proc do |param| param.to_json unless param.nil? end)
738
+ .auth(Single.new('BasicAuth')))
739
+ .response(new_response_handler
740
+ .is_nullify404(true)
741
+ .deserializer(APIHelper.method(:custom_type_deserializer))
742
+ .deserialize_into(CurrencyPrice.method(:from_hash))
743
+ .is_response_array(true))
744
+ .execute
745
+ end
746
+ end
747
+ end