schematichq 1.4.0

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 (848) hide show
  1. checksums.yaml +7 -0
  2. data/.claude/settings.json +16 -0
  3. data/.claude/skills/pr-review/SKILL.md +129 -0
  4. data/.fern/metadata.json +18 -0
  5. data/.fernignore +21 -0
  6. data/.rubocop.yml +69 -0
  7. data/CLAUDE.md +45 -0
  8. data/LICENSE +21 -0
  9. data/README.md +639 -0
  10. data/Rakefile +20 -0
  11. data/WASM_VERSION +1 -0
  12. data/custom.gemspec.rb +10 -0
  13. data/lib/schematic/accesstokens/client.rb +46 -0
  14. data/lib/schematic/accesstokens/types/issue_temporary_access_token_request_body.rb +12 -0
  15. data/lib/schematic/accesstokens/types/issue_temporary_access_token_response.rb +12 -0
  16. data/lib/schematic/accounts/client.rb +604 -0
  17. data/lib/schematic/accounts/types/count_api_keys_params.rb +15 -0
  18. data/lib/schematic/accounts/types/count_api_keys_request.rb +14 -0
  19. data/lib/schematic/accounts/types/count_api_keys_response.rb +12 -0
  20. data/lib/schematic/accounts/types/count_audit_logs_params.rb +18 -0
  21. data/lib/schematic/accounts/types/count_audit_logs_request.rb +17 -0
  22. data/lib/schematic/accounts/types/count_audit_logs_response.rb +12 -0
  23. data/lib/schematic/accounts/types/create_api_key_request_body.rb +14 -0
  24. data/lib/schematic/accounts/types/create_api_key_response.rb +12 -0
  25. data/lib/schematic/accounts/types/create_environment_request_body.rb +12 -0
  26. data/lib/schematic/accounts/types/create_environment_response.rb +12 -0
  27. data/lib/schematic/accounts/types/delete_api_key_response.rb +12 -0
  28. data/lib/schematic/accounts/types/delete_environment_response.rb +12 -0
  29. data/lib/schematic/accounts/types/get_api_key_response.rb +12 -0
  30. data/lib/schematic/accounts/types/get_audit_log_response.rb +12 -0
  31. data/lib/schematic/accounts/types/get_environment_response.rb +12 -0
  32. data/lib/schematic/accounts/types/get_who_am_i_response.rb +12 -0
  33. data/lib/schematic/accounts/types/list_api_keys_params.rb +15 -0
  34. data/lib/schematic/accounts/types/list_api_keys_request.rb +14 -0
  35. data/lib/schematic/accounts/types/list_api_keys_response.rb +12 -0
  36. data/lib/schematic/accounts/types/list_audit_logs_params.rb +18 -0
  37. data/lib/schematic/accounts/types/list_audit_logs_request.rb +17 -0
  38. data/lib/schematic/accounts/types/list_audit_logs_response.rb +12 -0
  39. data/lib/schematic/accounts/types/list_environments_params.rb +14 -0
  40. data/lib/schematic/accounts/types/list_environments_request.rb +13 -0
  41. data/lib/schematic/accounts/types/list_environments_response.rb +12 -0
  42. data/lib/schematic/accounts/types/quickstart_response.rb +12 -0
  43. data/lib/schematic/accounts/types/update_api_key_request_body.rb +13 -0
  44. data/lib/schematic/accounts/types/update_api_key_response.rb +12 -0
  45. data/lib/schematic/accounts/types/update_environment_request_body.rb +13 -0
  46. data/lib/schematic/accounts/types/update_environment_response.rb +12 -0
  47. data/lib/schematic/billing/client.rb +862 -0
  48. data/lib/schematic/billing/types/count_billing_products_params.rb +23 -0
  49. data/lib/schematic/billing/types/count_billing_products_request.rb +22 -0
  50. data/lib/schematic/billing/types/count_billing_products_response.rb +12 -0
  51. data/lib/schematic/billing/types/count_customers_params.rb +17 -0
  52. data/lib/schematic/billing/types/count_customers_request.rb +16 -0
  53. data/lib/schematic/billing/types/count_customers_response.rb +12 -0
  54. data/lib/schematic/billing/types/create_billing_customer_request_body.rb +17 -0
  55. data/lib/schematic/billing/types/create_billing_price_request_body.rb +25 -0
  56. data/lib/schematic/billing/types/create_billing_product_request_body.rb +15 -0
  57. data/lib/schematic/billing/types/create_billing_subscription_request_body.rb +29 -0
  58. data/lib/schematic/billing/types/create_coupon_request_body.rb +19 -0
  59. data/lib/schematic/billing/types/create_invoice_request_body.rb +23 -0
  60. data/lib/schematic/billing/types/create_meter_request_body.rb +14 -0
  61. data/lib/schematic/billing/types/create_payment_method_request_body.rb +22 -0
  62. data/lib/schematic/billing/types/delete_billing_product_response.rb +12 -0
  63. data/lib/schematic/billing/types/delete_product_price_response.rb +12 -0
  64. data/lib/schematic/billing/types/list_billing_prices_params.rb +27 -0
  65. data/lib/schematic/billing/types/list_billing_prices_request.rb +26 -0
  66. data/lib/schematic/billing/types/list_billing_prices_response.rb +12 -0
  67. data/lib/schematic/billing/types/list_billing_product_prices_params.rb +27 -0
  68. data/lib/schematic/billing/types/list_billing_product_prices_request.rb +26 -0
  69. data/lib/schematic/billing/types/list_billing_product_prices_response.rb +12 -0
  70. data/lib/schematic/billing/types/list_billing_products_params.rb +23 -0
  71. data/lib/schematic/billing/types/list_billing_products_request.rb +22 -0
  72. data/lib/schematic/billing/types/list_billing_products_response.rb +12 -0
  73. data/lib/schematic/billing/types/list_coupons_params.rb +15 -0
  74. data/lib/schematic/billing/types/list_coupons_request.rb +14 -0
  75. data/lib/schematic/billing/types/list_coupons_response.rb +12 -0
  76. data/lib/schematic/billing/types/list_customers_with_subscriptions_params.rb +17 -0
  77. data/lib/schematic/billing/types/list_customers_with_subscriptions_request.rb +16 -0
  78. data/lib/schematic/billing/types/list_customers_with_subscriptions_response.rb +12 -0
  79. data/lib/schematic/billing/types/list_invoices_params.rb +16 -0
  80. data/lib/schematic/billing/types/list_invoices_request.rb +15 -0
  81. data/lib/schematic/billing/types/list_invoices_response.rb +12 -0
  82. data/lib/schematic/billing/types/list_meters_params.rb +14 -0
  83. data/lib/schematic/billing/types/list_meters_request.rb +13 -0
  84. data/lib/schematic/billing/types/list_meters_response.rb +12 -0
  85. data/lib/schematic/billing/types/list_payment_methods_params.rb +15 -0
  86. data/lib/schematic/billing/types/list_payment_methods_request.rb +14 -0
  87. data/lib/schematic/billing/types/list_payment_methods_response.rb +12 -0
  88. data/lib/schematic/billing/types/upsert_billing_coupon_response.rb +12 -0
  89. data/lib/schematic/billing/types/upsert_billing_customer_response.rb +12 -0
  90. data/lib/schematic/billing/types/upsert_billing_meter_response.rb +12 -0
  91. data/lib/schematic/billing/types/upsert_billing_price_response.rb +12 -0
  92. data/lib/schematic/billing/types/upsert_billing_product_response.rb +12 -0
  93. data/lib/schematic/billing/types/upsert_billing_subscription_response.rb +12 -0
  94. data/lib/schematic/billing/types/upsert_invoice_response.rb +12 -0
  95. data/lib/schematic/billing/types/upsert_payment_method_response.rb +12 -0
  96. data/lib/schematic/cache.rb +133 -0
  97. data/lib/schematic/checkout/client.rb +243 -0
  98. data/lib/schematic/checkout/types/cancel_subscription_request.rb +13 -0
  99. data/lib/schematic/checkout/types/cancel_subscription_response.rb +12 -0
  100. data/lib/schematic/checkout/types/checkout_data_request_body.rb +12 -0
  101. data/lib/schematic/checkout/types/checkout_internal_response.rb +12 -0
  102. data/lib/schematic/checkout/types/get_checkout_data_response.rb +12 -0
  103. data/lib/schematic/checkout/types/manage_plan_response.rb +12 -0
  104. data/lib/schematic/checkout/types/preview_checkout_internal_response.rb +12 -0
  105. data/lib/schematic/checkout/types/preview_manage_plan_response.rb +12 -0
  106. data/lib/schematic/checkout/types/update_customer_subscription_trial_end_response.rb +12 -0
  107. data/lib/schematic/checkout/types/update_trial_end_request_body.rb +12 -0
  108. data/lib/schematic/client.rb +110 -0
  109. data/lib/schematic/companies/client.rb +1561 -0
  110. data/lib/schematic/companies/types/count_companies_params.rb +29 -0
  111. data/lib/schematic/companies/types/count_companies_request.rb +28 -0
  112. data/lib/schematic/companies/types/count_companies_response.rb +12 -0
  113. data/lib/schematic/companies/types/count_entity_key_definitions_params.rb +16 -0
  114. data/lib/schematic/companies/types/count_entity_key_definitions_request.rb +15 -0
  115. data/lib/schematic/companies/types/count_entity_key_definitions_response.rb +12 -0
  116. data/lib/schematic/companies/types/count_entity_trait_definitions_params.rb +18 -0
  117. data/lib/schematic/companies/types/count_entity_trait_definitions_request.rb +17 -0
  118. data/lib/schematic/companies/types/count_entity_trait_definitions_response.rb +12 -0
  119. data/lib/schematic/companies/types/count_plan_traits_params.rb +17 -0
  120. data/lib/schematic/companies/types/count_plan_traits_request.rb +16 -0
  121. data/lib/schematic/companies/types/count_plan_traits_response.rb +12 -0
  122. data/lib/schematic/companies/types/count_users_params.rb +17 -0
  123. data/lib/schematic/companies/types/count_users_request.rb +16 -0
  124. data/lib/schematic/companies/types/count_users_response.rb +12 -0
  125. data/lib/schematic/companies/types/create_company_response.rb +12 -0
  126. data/lib/schematic/companies/types/create_entity_trait_definition_request_body.rb +14 -0
  127. data/lib/schematic/companies/types/create_plan_trait_request_body.rb +13 -0
  128. data/lib/schematic/companies/types/create_plan_trait_response.rb +12 -0
  129. data/lib/schematic/companies/types/create_user_response.rb +12 -0
  130. data/lib/schematic/companies/types/delete_company_by_keys_response.rb +12 -0
  131. data/lib/schematic/companies/types/delete_company_membership_response.rb +12 -0
  132. data/lib/schematic/companies/types/delete_company_params.rb +13 -0
  133. data/lib/schematic/companies/types/delete_company_request.rb +13 -0
  134. data/lib/schematic/companies/types/delete_company_response.rb +12 -0
  135. data/lib/schematic/companies/types/delete_plan_trait_response.rb +12 -0
  136. data/lib/schematic/companies/types/delete_user_by_keys_response.rb +12 -0
  137. data/lib/schematic/companies/types/delete_user_response.rb +12 -0
  138. data/lib/schematic/companies/types/get_active_company_subscription_params.rb +15 -0
  139. data/lib/schematic/companies/types/get_active_company_subscription_request.rb +14 -0
  140. data/lib/schematic/companies/types/get_active_company_subscription_response.rb +12 -0
  141. data/lib/schematic/companies/types/get_company_response.rb +12 -0
  142. data/lib/schematic/companies/types/get_entity_trait_definition_response.rb +12 -0
  143. data/lib/schematic/companies/types/get_entity_trait_values_params.rb +15 -0
  144. data/lib/schematic/companies/types/get_entity_trait_values_request.rb +14 -0
  145. data/lib/schematic/companies/types/get_entity_trait_values_response.rb +12 -0
  146. data/lib/schematic/companies/types/get_or_create_company_membership_request_body.rb +12 -0
  147. data/lib/schematic/companies/types/get_or_create_company_membership_response.rb +12 -0
  148. data/lib/schematic/companies/types/get_or_create_entity_trait_definition_response.rb +12 -0
  149. data/lib/schematic/companies/types/get_plan_change_response.rb +12 -0
  150. data/lib/schematic/companies/types/get_plan_trait_response.rb +12 -0
  151. data/lib/schematic/companies/types/get_user_response.rb +12 -0
  152. data/lib/schematic/companies/types/list_companies_params.rb +29 -0
  153. data/lib/schematic/companies/types/list_companies_request.rb +28 -0
  154. data/lib/schematic/companies/types/list_companies_response.rb +12 -0
  155. data/lib/schematic/companies/types/list_company_memberships_params.rb +15 -0
  156. data/lib/schematic/companies/types/list_company_memberships_request.rb +14 -0
  157. data/lib/schematic/companies/types/list_company_memberships_response.rb +12 -0
  158. data/lib/schematic/companies/types/list_entity_key_definitions_params.rb +16 -0
  159. data/lib/schematic/companies/types/list_entity_key_definitions_request.rb +15 -0
  160. data/lib/schematic/companies/types/list_entity_key_definitions_response.rb +12 -0
  161. data/lib/schematic/companies/types/list_entity_trait_definitions_params.rb +18 -0
  162. data/lib/schematic/companies/types/list_entity_trait_definitions_request.rb +17 -0
  163. data/lib/schematic/companies/types/list_entity_trait_definitions_response.rb +12 -0
  164. data/lib/schematic/companies/types/list_plan_changes_params.rb +18 -0
  165. data/lib/schematic/companies/types/list_plan_changes_request.rb +17 -0
  166. data/lib/schematic/companies/types/list_plan_changes_response.rb +12 -0
  167. data/lib/schematic/companies/types/list_plan_traits_params.rb +17 -0
  168. data/lib/schematic/companies/types/list_plan_traits_request.rb +16 -0
  169. data/lib/schematic/companies/types/list_plan_traits_response.rb +12 -0
  170. data/lib/schematic/companies/types/list_users_params.rb +17 -0
  171. data/lib/schematic/companies/types/list_users_request.rb +16 -0
  172. data/lib/schematic/companies/types/list_users_response.rb +12 -0
  173. data/lib/schematic/companies/types/lookup_company_params.rb +12 -0
  174. data/lib/schematic/companies/types/lookup_company_request.rb +11 -0
  175. data/lib/schematic/companies/types/lookup_company_response.rb +12 -0
  176. data/lib/schematic/companies/types/lookup_user_params.rb +12 -0
  177. data/lib/schematic/companies/types/lookup_user_request.rb +11 -0
  178. data/lib/schematic/companies/types/lookup_user_response.rb +12 -0
  179. data/lib/schematic/companies/types/update_entity_trait_definition_request_body.rb +13 -0
  180. data/lib/schematic/companies/types/update_entity_trait_definition_response.rb +12 -0
  181. data/lib/schematic/companies/types/update_plan_trait_bulk_request_body.rb +13 -0
  182. data/lib/schematic/companies/types/update_plan_trait_request_body.rb +13 -0
  183. data/lib/schematic/companies/types/update_plan_trait_response.rb +12 -0
  184. data/lib/schematic/companies/types/update_plan_traits_bulk_response.rb +12 -0
  185. data/lib/schematic/companies/types/upsert_company_response.rb +12 -0
  186. data/lib/schematic/companies/types/upsert_company_trait_response.rb +12 -0
  187. data/lib/schematic/companies/types/upsert_user_response.rb +12 -0
  188. data/lib/schematic/companies/types/upsert_user_trait_response.rb +12 -0
  189. data/lib/schematic/components/client.rb +271 -0
  190. data/lib/schematic/components/types/count_components_params.rb +14 -0
  191. data/lib/schematic/components/types/count_components_request.rb +13 -0
  192. data/lib/schematic/components/types/count_components_response.rb +12 -0
  193. data/lib/schematic/components/types/create_component_request_body.rb +13 -0
  194. data/lib/schematic/components/types/create_component_response.rb +12 -0
  195. data/lib/schematic/components/types/delete_component_response.rb +12 -0
  196. data/lib/schematic/components/types/get_component_response.rb +12 -0
  197. data/lib/schematic/components/types/list_components_params.rb +14 -0
  198. data/lib/schematic/components/types/list_components_request.rb +13 -0
  199. data/lib/schematic/components/types/list_components_response.rb +12 -0
  200. data/lib/schematic/components/types/preview_component_data_params.rb +13 -0
  201. data/lib/schematic/components/types/preview_component_data_request.rb +12 -0
  202. data/lib/schematic/components/types/preview_component_data_response.rb +12 -0
  203. data/lib/schematic/components/types/update_component_request_body.rb +15 -0
  204. data/lib/schematic/components/types/update_component_response.rb +12 -0
  205. data/lib/schematic/componentspublic/client.rb +45 -0
  206. data/lib/schematic/componentspublic/types/get_public_plans_response.rb +12 -0
  207. data/lib/schematic/credits/client.rb +1157 -0
  208. data/lib/schematic/credits/types/count_billing_credits_grants_params.rb +15 -0
  209. data/lib/schematic/credits/types/count_billing_credits_grants_request.rb +14 -0
  210. data/lib/schematic/credits/types/count_billing_credits_grants_response.rb +12 -0
  211. data/lib/schematic/credits/types/count_billing_credits_params.rb +15 -0
  212. data/lib/schematic/credits/types/count_billing_credits_request.rb +14 -0
  213. data/lib/schematic/credits/types/count_billing_credits_response.rb +12 -0
  214. data/lib/schematic/credits/types/count_billing_plan_credit_grants_params.rb +18 -0
  215. data/lib/schematic/credits/types/count_billing_plan_credit_grants_request.rb +17 -0
  216. data/lib/schematic/credits/types/count_billing_plan_credit_grants_response.rb +12 -0
  217. data/lib/schematic/credits/types/count_company_grants_params.rb +16 -0
  218. data/lib/schematic/credits/types/count_company_grants_request.rb +15 -0
  219. data/lib/schematic/credits/types/count_company_grants_response.rb +12 -0
  220. data/lib/schematic/credits/types/count_credit_bundles_params.rb +17 -0
  221. data/lib/schematic/credits/types/count_credit_bundles_request.rb +16 -0
  222. data/lib/schematic/credits/types/count_credit_bundles_response.rb +12 -0
  223. data/lib/schematic/credits/types/count_credit_event_ledger_params.rb +19 -0
  224. data/lib/schematic/credits/types/count_credit_event_ledger_request.rb +18 -0
  225. data/lib/schematic/credits/types/count_credit_event_ledger_response.rb +12 -0
  226. data/lib/schematic/credits/types/count_credit_ledger_params.rb +19 -0
  227. data/lib/schematic/credits/types/count_credit_ledger_request.rb +18 -0
  228. data/lib/schematic/credits/types/count_credit_ledger_response.rb +12 -0
  229. data/lib/schematic/credits/types/create_billing_credit_request_body.rb +23 -0
  230. data/lib/schematic/credits/types/create_billing_credit_response.rb +12 -0
  231. data/lib/schematic/credits/types/create_billing_plan_credit_grant_response.rb +12 -0
  232. data/lib/schematic/credits/types/create_company_credit_grant.rb +22 -0
  233. data/lib/schematic/credits/types/create_credit_bundle_request_body.rb +22 -0
  234. data/lib/schematic/credits/types/create_credit_bundle_response.rb +12 -0
  235. data/lib/schematic/credits/types/delete_billing_plan_credit_grant_params.rb +12 -0
  236. data/lib/schematic/credits/types/delete_billing_plan_credit_grant_request.rb +12 -0
  237. data/lib/schematic/credits/types/delete_billing_plan_credit_grant_response.rb +12 -0
  238. data/lib/schematic/credits/types/delete_credit_bundle_response.rb +12 -0
  239. data/lib/schematic/credits/types/get_credit_bundle_response.rb +12 -0
  240. data/lib/schematic/credits/types/get_enriched_credit_ledger_params.rb +19 -0
  241. data/lib/schematic/credits/types/get_enriched_credit_ledger_request.rb +18 -0
  242. data/lib/schematic/credits/types/get_enriched_credit_ledger_response.rb +12 -0
  243. data/lib/schematic/credits/types/get_single_billing_credit_response.rb +12 -0
  244. data/lib/schematic/credits/types/get_single_billing_plan_credit_grant_response.rb +12 -0
  245. data/lib/schematic/credits/types/grant_billing_credits_to_company_response.rb +12 -0
  246. data/lib/schematic/credits/types/list_billing_credits_params.rb +15 -0
  247. data/lib/schematic/credits/types/list_billing_credits_request.rb +14 -0
  248. data/lib/schematic/credits/types/list_billing_credits_response.rb +12 -0
  249. data/lib/schematic/credits/types/list_billing_plan_credit_grants_params.rb +18 -0
  250. data/lib/schematic/credits/types/list_billing_plan_credit_grants_request.rb +17 -0
  251. data/lib/schematic/credits/types/list_billing_plan_credit_grants_response.rb +12 -0
  252. data/lib/schematic/credits/types/list_company_grants_params.rb +16 -0
  253. data/lib/schematic/credits/types/list_company_grants_request.rb +15 -0
  254. data/lib/schematic/credits/types/list_company_grants_response.rb +12 -0
  255. data/lib/schematic/credits/types/list_credit_bundles_params.rb +17 -0
  256. data/lib/schematic/credits/types/list_credit_bundles_request.rb +16 -0
  257. data/lib/schematic/credits/types/list_credit_bundles_response.rb +12 -0
  258. data/lib/schematic/credits/types/list_credit_event_ledger_params.rb +19 -0
  259. data/lib/schematic/credits/types/list_credit_event_ledger_request.rb +18 -0
  260. data/lib/schematic/credits/types/list_credit_event_ledger_response.rb +12 -0
  261. data/lib/schematic/credits/types/list_grants_for_credit_params.rb +15 -0
  262. data/lib/schematic/credits/types/list_grants_for_credit_request.rb +14 -0
  263. data/lib/schematic/credits/types/list_grants_for_credit_response.rb +12 -0
  264. data/lib/schematic/credits/types/soft_delete_billing_credit_response.rb +12 -0
  265. data/lib/schematic/credits/types/update_billing_credit_request_body.rb +23 -0
  266. data/lib/schematic/credits/types/update_billing_credit_response.rb +12 -0
  267. data/lib/schematic/credits/types/update_billing_plan_credit_grant_response.rb +12 -0
  268. data/lib/schematic/credits/types/update_credit_bundle_details_request_body.rb +20 -0
  269. data/lib/schematic/credits/types/update_credit_bundle_details_response.rb +12 -0
  270. data/lib/schematic/credits/types/zero_out_grant_request_body.rb +12 -0
  271. data/lib/schematic/credits/types/zero_out_grant_response.rb +12 -0
  272. data/lib/schematic/dataexports/client.rb +76 -0
  273. data/lib/schematic/dataexports/types/create_data_export_request_body.rb +13 -0
  274. data/lib/schematic/dataexports/types/create_data_export_response.rb +12 -0
  275. data/lib/schematic/datastream/client.rb +508 -0
  276. data/lib/schematic/datastream/merge.rb +95 -0
  277. data/lib/schematic/datastream/resource_cache.rb +76 -0
  278. data/lib/schematic/datastream/websocket_client.rb +315 -0
  279. data/lib/schematic/entitlements/client.rb +900 -0
  280. data/lib/schematic/entitlements/types/count_company_overrides_params.rb +20 -0
  281. data/lib/schematic/entitlements/types/count_company_overrides_request.rb +19 -0
  282. data/lib/schematic/entitlements/types/count_company_overrides_response.rb +12 -0
  283. data/lib/schematic/entitlements/types/count_feature_companies_params.rb +15 -0
  284. data/lib/schematic/entitlements/types/count_feature_companies_request.rb +14 -0
  285. data/lib/schematic/entitlements/types/count_feature_companies_response.rb +12 -0
  286. data/lib/schematic/entitlements/types/count_feature_usage_params.rb +19 -0
  287. data/lib/schematic/entitlements/types/count_feature_usage_request.rb +18 -0
  288. data/lib/schematic/entitlements/types/count_feature_usage_response.rb +12 -0
  289. data/lib/schematic/entitlements/types/count_feature_users_params.rb +15 -0
  290. data/lib/schematic/entitlements/types/count_feature_users_request.rb +14 -0
  291. data/lib/schematic/entitlements/types/count_feature_users_response.rb +12 -0
  292. data/lib/schematic/entitlements/types/count_plan_entitlements_params.rb +22 -0
  293. data/lib/schematic/entitlements/types/count_plan_entitlements_request.rb +21 -0
  294. data/lib/schematic/entitlements/types/count_plan_entitlements_response.rb +12 -0
  295. data/lib/schematic/entitlements/types/create_company_override_request_body.rb +22 -0
  296. data/lib/schematic/entitlements/types/create_company_override_request_body_metric_period.rb +16 -0
  297. data/lib/schematic/entitlements/types/create_company_override_request_body_metric_period_month_reset.rb +14 -0
  298. data/lib/schematic/entitlements/types/create_company_override_response.rb +12 -0
  299. data/lib/schematic/entitlements/types/create_plan_entitlement_request_body.rb +38 -0
  300. data/lib/schematic/entitlements/types/create_plan_entitlement_request_body_metric_period.rb +16 -0
  301. data/lib/schematic/entitlements/types/create_plan_entitlement_request_body_metric_period_month_reset.rb +14 -0
  302. data/lib/schematic/entitlements/types/create_plan_entitlement_response.rb +12 -0
  303. data/lib/schematic/entitlements/types/delete_company_override_response.rb +12 -0
  304. data/lib/schematic/entitlements/types/delete_plan_entitlement_response.rb +12 -0
  305. data/lib/schematic/entitlements/types/duplicate_plan_entitlements_request_body.rb +12 -0
  306. data/lib/schematic/entitlements/types/duplicate_plan_entitlements_response.rb +12 -0
  307. data/lib/schematic/entitlements/types/get_company_override_response.rb +12 -0
  308. data/lib/schematic/entitlements/types/get_feature_usage_by_company_params.rb +12 -0
  309. data/lib/schematic/entitlements/types/get_feature_usage_by_company_request.rb +11 -0
  310. data/lib/schematic/entitlements/types/get_feature_usage_by_company_response.rb +12 -0
  311. data/lib/schematic/entitlements/types/get_feature_usage_time_series_params.rb +16 -0
  312. data/lib/schematic/entitlements/types/get_feature_usage_time_series_request.rb +15 -0
  313. data/lib/schematic/entitlements/types/get_feature_usage_time_series_response.rb +12 -0
  314. data/lib/schematic/entitlements/types/get_plan_entitlement_response.rb +12 -0
  315. data/lib/schematic/entitlements/types/list_company_overrides_params.rb +20 -0
  316. data/lib/schematic/entitlements/types/list_company_overrides_request.rb +19 -0
  317. data/lib/schematic/entitlements/types/list_company_overrides_response.rb +12 -0
  318. data/lib/schematic/entitlements/types/list_feature_companies_params.rb +15 -0
  319. data/lib/schematic/entitlements/types/list_feature_companies_request.rb +14 -0
  320. data/lib/schematic/entitlements/types/list_feature_companies_response.rb +12 -0
  321. data/lib/schematic/entitlements/types/list_feature_usage_params.rb +19 -0
  322. data/lib/schematic/entitlements/types/list_feature_usage_request.rb +18 -0
  323. data/lib/schematic/entitlements/types/list_feature_usage_response.rb +12 -0
  324. data/lib/schematic/entitlements/types/list_feature_users_params.rb +15 -0
  325. data/lib/schematic/entitlements/types/list_feature_users_request.rb +14 -0
  326. data/lib/schematic/entitlements/types/list_feature_users_response.rb +12 -0
  327. data/lib/schematic/entitlements/types/list_plan_entitlements_params.rb +22 -0
  328. data/lib/schematic/entitlements/types/list_plan_entitlements_request.rb +21 -0
  329. data/lib/schematic/entitlements/types/list_plan_entitlements_response.rb +12 -0
  330. data/lib/schematic/entitlements/types/update_company_override_request_body.rb +21 -0
  331. data/lib/schematic/entitlements/types/update_company_override_request_body_metric_period.rb +16 -0
  332. data/lib/schematic/entitlements/types/update_company_override_request_body_metric_period_month_reset.rb +14 -0
  333. data/lib/schematic/entitlements/types/update_company_override_response.rb +12 -0
  334. data/lib/schematic/entitlements/types/update_plan_entitlement_request_body.rb +36 -0
  335. data/lib/schematic/entitlements/types/update_plan_entitlement_request_body_metric_period.rb +16 -0
  336. data/lib/schematic/entitlements/types/update_plan_entitlement_request_body_metric_period_month_reset.rb +14 -0
  337. data/lib/schematic/entitlements/types/update_plan_entitlement_response.rb +12 -0
  338. data/lib/schematic/environment.rb +7 -0
  339. data/lib/schematic/errors/api_error.rb +8 -0
  340. data/lib/schematic/errors/client_error.rb +17 -0
  341. data/lib/schematic/errors/redirect_error.rb +8 -0
  342. data/lib/schematic/errors/response_error.rb +42 -0
  343. data/lib/schematic/errors/server_error.rb +11 -0
  344. data/lib/schematic/errors/timeout_error.rb +8 -0
  345. data/lib/schematic/event_buffer.rb +180 -0
  346. data/lib/schematic/events/client.rb +235 -0
  347. data/lib/schematic/events/types/create_event_batch_request_body.rb +11 -0
  348. data/lib/schematic/events/types/create_event_batch_response.rb +12 -0
  349. data/lib/schematic/events/types/create_event_response.rb +12 -0
  350. data/lib/schematic/events/types/get_event_response.rb +12 -0
  351. data/lib/schematic/events/types/get_event_summaries_params.rb +15 -0
  352. data/lib/schematic/events/types/get_event_summaries_request.rb +14 -0
  353. data/lib/schematic/events/types/get_event_summaries_response.rb +12 -0
  354. data/lib/schematic/events/types/get_segment_integration_status_response.rb +12 -0
  355. data/lib/schematic/events/types/list_events_params.rb +18 -0
  356. data/lib/schematic/events/types/list_events_request.rb +17 -0
  357. data/lib/schematic/events/types/list_events_response.rb +12 -0
  358. data/lib/schematic/features/client.rb +610 -0
  359. data/lib/schematic/features/types/check_flag_response.rb +12 -0
  360. data/lib/schematic/features/types/check_flags_bulk_request_body.rb +11 -0
  361. data/lib/schematic/features/types/check_flags_bulk_response.rb +12 -0
  362. data/lib/schematic/features/types/check_flags_response.rb +12 -0
  363. data/lib/schematic/features/types/count_features_params.rb +20 -0
  364. data/lib/schematic/features/types/count_features_request.rb +19 -0
  365. data/lib/schematic/features/types/count_features_response.rb +12 -0
  366. data/lib/schematic/features/types/count_flags_params.rb +16 -0
  367. data/lib/schematic/features/types/count_flags_request.rb +15 -0
  368. data/lib/schematic/features/types/count_flags_response.rb +12 -0
  369. data/lib/schematic/features/types/create_feature_request_body.rb +21 -0
  370. data/lib/schematic/features/types/create_feature_response.rb +12 -0
  371. data/lib/schematic/features/types/create_flag_response.rb +12 -0
  372. data/lib/schematic/features/types/delete_feature_response.rb +12 -0
  373. data/lib/schematic/features/types/delete_flag_response.rb +12 -0
  374. data/lib/schematic/features/types/get_feature_response.rb +12 -0
  375. data/lib/schematic/features/types/get_flag_response.rb +12 -0
  376. data/lib/schematic/features/types/list_features_params.rb +20 -0
  377. data/lib/schematic/features/types/list_features_request.rb +19 -0
  378. data/lib/schematic/features/types/list_features_response.rb +12 -0
  379. data/lib/schematic/features/types/list_flags_params.rb +16 -0
  380. data/lib/schematic/features/types/list_flags_request.rb +15 -0
  381. data/lib/schematic/features/types/list_flags_response.rb +12 -0
  382. data/lib/schematic/features/types/update_feature_request_body.rb +22 -0
  383. data/lib/schematic/features/types/update_feature_response.rb +12 -0
  384. data/lib/schematic/features/types/update_flag_response.rb +12 -0
  385. data/lib/schematic/features/types/update_flag_rules_request_body.rb +12 -0
  386. data/lib/schematic/features/types/update_flag_rules_response.rb +12 -0
  387. data/lib/schematic/internal/errors/constraint_error.rb +10 -0
  388. data/lib/schematic/internal/errors/type_error.rb +10 -0
  389. data/lib/schematic/internal/http/base_request.rb +51 -0
  390. data/lib/schematic/internal/http/raw_client.rb +214 -0
  391. data/lib/schematic/internal/iterators/cursor_item_iterator.rb +28 -0
  392. data/lib/schematic/internal/iterators/cursor_page_iterator.rb +51 -0
  393. data/lib/schematic/internal/iterators/item_iterator.rb +59 -0
  394. data/lib/schematic/internal/iterators/offset_item_iterator.rb +30 -0
  395. data/lib/schematic/internal/iterators/offset_page_iterator.rb +83 -0
  396. data/lib/schematic/internal/json/request.rb +41 -0
  397. data/lib/schematic/internal/json/serializable.rb +25 -0
  398. data/lib/schematic/internal/multipart/multipart_encoder.rb +141 -0
  399. data/lib/schematic/internal/multipart/multipart_form_data.rb +78 -0
  400. data/lib/schematic/internal/multipart/multipart_form_data_part.rb +51 -0
  401. data/lib/schematic/internal/multipart/multipart_request.rb +40 -0
  402. data/lib/schematic/internal/types/array.rb +47 -0
  403. data/lib/schematic/internal/types/boolean.rb +34 -0
  404. data/lib/schematic/internal/types/enum.rb +56 -0
  405. data/lib/schematic/internal/types/hash.rb +36 -0
  406. data/lib/schematic/internal/types/model/field.rb +38 -0
  407. data/lib/schematic/internal/types/model.rb +208 -0
  408. data/lib/schematic/internal/types/type.rb +35 -0
  409. data/lib/schematic/internal/types/union.rb +161 -0
  410. data/lib/schematic/internal/types/unknown.rb +15 -0
  411. data/lib/schematic/internal/types/utils.rb +116 -0
  412. data/lib/schematic/logger.rb +62 -0
  413. data/lib/schematic/planbundle/client.rb +83 -0
  414. data/lib/schematic/planbundle/types/create_plan_bundle_request_body.rb +15 -0
  415. data/lib/schematic/planbundle/types/create_plan_bundle_response.rb +12 -0
  416. data/lib/schematic/planbundle/types/update_plan_bundle_request_body.rb +17 -0
  417. data/lib/schematic/planbundle/types/update_plan_bundle_response.rb +12 -0
  418. data/lib/schematic/plangroups/client.rb +121 -0
  419. data/lib/schematic/plangroups/types/create_plan_group_request_body.rb +42 -0
  420. data/lib/schematic/plangroups/types/create_plan_group_response.rb +12 -0
  421. data/lib/schematic/plangroups/types/get_plan_group_params.rb +12 -0
  422. data/lib/schematic/plangroups/types/get_plan_group_request.rb +11 -0
  423. data/lib/schematic/plangroups/types/get_plan_group_response.rb +12 -0
  424. data/lib/schematic/plangroups/types/update_plan_group_request_body.rb +43 -0
  425. data/lib/schematic/plangroups/types/update_plan_group_response.rb +12 -0
  426. data/lib/schematic/planmigrations/client.rb +226 -0
  427. data/lib/schematic/planmigrations/types/count_company_migrations_params.rb +16 -0
  428. data/lib/schematic/planmigrations/types/count_company_migrations_request.rb +15 -0
  429. data/lib/schematic/planmigrations/types/count_company_migrations_response.rb +12 -0
  430. data/lib/schematic/planmigrations/types/count_migrations_params.rb +15 -0
  431. data/lib/schematic/planmigrations/types/count_migrations_request.rb +14 -0
  432. data/lib/schematic/planmigrations/types/count_migrations_response.rb +12 -0
  433. data/lib/schematic/planmigrations/types/get_migration_response.rb +12 -0
  434. data/lib/schematic/planmigrations/types/list_company_migrations_params.rb +16 -0
  435. data/lib/schematic/planmigrations/types/list_company_migrations_request.rb +15 -0
  436. data/lib/schematic/planmigrations/types/list_company_migrations_response.rb +12 -0
  437. data/lib/schematic/planmigrations/types/list_migrations_params.rb +15 -0
  438. data/lib/schematic/planmigrations/types/list_migrations_request.rb +14 -0
  439. data/lib/schematic/planmigrations/types/list_migrations_response.rb +12 -0
  440. data/lib/schematic/plans/client.rb +460 -0
  441. data/lib/schematic/plans/types/count_plans_params.rb +24 -0
  442. data/lib/schematic/plans/types/count_plans_request.rb +23 -0
  443. data/lib/schematic/plans/types/count_plans_response.rb +12 -0
  444. data/lib/schematic/plans/types/create_plan_response.rb +12 -0
  445. data/lib/schematic/plans/types/delete_plan_response.rb +12 -0
  446. data/lib/schematic/plans/types/delete_plan_version_params.rb +12 -0
  447. data/lib/schematic/plans/types/delete_plan_version_request.rb +12 -0
  448. data/lib/schematic/plans/types/delete_plan_version_response.rb +12 -0
  449. data/lib/schematic/plans/types/get_plan_params.rb +12 -0
  450. data/lib/schematic/plans/types/get_plan_request.rb +12 -0
  451. data/lib/schematic/plans/types/get_plan_response.rb +12 -0
  452. data/lib/schematic/plans/types/list_plan_issues_params.rb +13 -0
  453. data/lib/schematic/plans/types/list_plan_issues_request.rb +12 -0
  454. data/lib/schematic/plans/types/list_plan_issues_response.rb +12 -0
  455. data/lib/schematic/plans/types/list_plans_params.rb +24 -0
  456. data/lib/schematic/plans/types/list_plans_request.rb +23 -0
  457. data/lib/schematic/plans/types/list_plans_response.rb +12 -0
  458. data/lib/schematic/plans/types/publish_plan_version_request_body.rb +13 -0
  459. data/lib/schematic/plans/types/publish_plan_version_response.rb +12 -0
  460. data/lib/schematic/plans/types/update_company_plans_request_body.rb +13 -0
  461. data/lib/schematic/plans/types/update_company_plans_response.rb +12 -0
  462. data/lib/schematic/plans/types/update_plan_response.rb +12 -0
  463. data/lib/schematic/plans/types/upsert_billing_product_plan_response.rb +12 -0
  464. data/lib/schematic/redis_cache.rb +94 -0
  465. data/lib/schematic/rules_engine.rb +145 -0
  466. data/lib/schematic/scheduledcheckout/client.rb +159 -0
  467. data/lib/schematic/scheduledcheckout/types/create_scheduled_checkout_request.rb +14 -0
  468. data/lib/schematic/scheduledcheckout/types/create_scheduled_checkout_response.rb +12 -0
  469. data/lib/schematic/scheduledcheckout/types/get_scheduled_checkout_response.rb +12 -0
  470. data/lib/schematic/scheduledcheckout/types/list_scheduled_checkouts_params.rb +15 -0
  471. data/lib/schematic/scheduledcheckout/types/list_scheduled_checkouts_request.rb +14 -0
  472. data/lib/schematic/scheduledcheckout/types/list_scheduled_checkouts_response.rb +12 -0
  473. data/lib/schematic/scheduledcheckout/types/update_scheduled_checkout_request.rb +13 -0
  474. data/lib/schematic/scheduledcheckout/types/update_scheduled_checkout_response.rb +12 -0
  475. data/lib/schematic/schematic_client.rb +552 -0
  476. data/lib/schematic/types/actor_type.rb +15 -0
  477. data/lib/schematic/types/api_error.rb +9 -0
  478. data/lib/schematic/types/api_key_create_response_data.rb +18 -0
  479. data/lib/schematic/types/api_key_response_data.rb +17 -0
  480. data/lib/schematic/types/api_key_scope.rb +14 -0
  481. data/lib/schematic/types/audit_log_list_response_data.rb +23 -0
  482. data/lib/schematic/types/audit_log_response_data.rb +26 -0
  483. data/lib/schematic/types/billing_coupon_response_data.rb +25 -0
  484. data/lib/schematic/types/billing_credit_bundle_response_data.rb +29 -0
  485. data/lib/schematic/types/billing_credit_bundle_status.rb +12 -0
  486. data/lib/schematic/types/billing_credit_bundle_type.rb +23 -0
  487. data/lib/schematic/types/billing_credit_bundle_view.rb +28 -0
  488. data/lib/schematic/types/billing_credit_burn_strategy.rb +14 -0
  489. data/lib/schematic/types/billing_credit_expiry_type.rb +15 -0
  490. data/lib/schematic/types/billing_credit_expiry_unit.rb +12 -0
  491. data/lib/schematic/types/billing_credit_grant_reason.rb +15 -0
  492. data/lib/schematic/types/billing_credit_grant_response_data.rb +32 -0
  493. data/lib/schematic/types/billing_credit_grant_zeroed_out_reason.rb +14 -0
  494. data/lib/schematic/types/billing_credit_ledger_response_data.rb +14 -0
  495. data/lib/schematic/types/billing_credit_response_data.rb +24 -0
  496. data/lib/schematic/types/billing_credit_rollover_policy.rb +13 -0
  497. data/lib/schematic/types/billing_credit_view.rb +27 -0
  498. data/lib/schematic/types/billing_customer_response_data.rb +16 -0
  499. data/lib/schematic/types/billing_customer_subscription.rb +14 -0
  500. data/lib/schematic/types/billing_customer_with_subscriptions_response_data.rb +17 -0
  501. data/lib/schematic/types/billing_meter_response_data.rb +14 -0
  502. data/lib/schematic/types/billing_plan_credit_grant_reset_cadence.rb +14 -0
  503. data/lib/schematic/types/billing_plan_credit_grant_reset_start.rb +12 -0
  504. data/lib/schematic/types/billing_plan_credit_grant_reset_type.rb +12 -0
  505. data/lib/schematic/types/billing_plan_credit_grant_response_data.rb +34 -0
  506. data/lib/schematic/types/billing_price_response_data.rb +16 -0
  507. data/lib/schematic/types/billing_price_scheme.rb +12 -0
  508. data/lib/schematic/types/billing_price_usage_type.rb +12 -0
  509. data/lib/schematic/types/billing_price_view.rb +30 -0
  510. data/lib/schematic/types/billing_product_detail_response_data.rb +23 -0
  511. data/lib/schematic/types/billing_product_for_subscription_response_data.rb +30 -0
  512. data/lib/schematic/types/billing_product_plan_response_data.rb +19 -0
  513. data/lib/schematic/types/billing_product_price_interval.rb +14 -0
  514. data/lib/schematic/types/billing_product_price_response_data.rb +24 -0
  515. data/lib/schematic/types/billing_product_price_tier_response_data.rb +12 -0
  516. data/lib/schematic/types/billing_product_pricing.rb +20 -0
  517. data/lib/schematic/types/billing_product_response_data.rb +21 -0
  518. data/lib/schematic/types/billing_provider_type.rb +12 -0
  519. data/lib/schematic/types/billing_subscription_discount.rb +15 -0
  520. data/lib/schematic/types/billing_subscription_discount_view.rb +22 -0
  521. data/lib/schematic/types/billing_subscription_response_data.rb +28 -0
  522. data/lib/schematic/types/billing_subscription_trial_end_setting.rb +12 -0
  523. data/lib/schematic/types/billing_subscription_view.rb +32 -0
  524. data/lib/schematic/types/billing_tiers_mode.rb +12 -0
  525. data/lib/schematic/types/capture_raw_event.rb +13 -0
  526. data/lib/schematic/types/capture_raw_event_batch.rb +9 -0
  527. data/lib/schematic/types/change_subscription_internal_request_body.rb +18 -0
  528. data/lib/schematic/types/change_subscription_request_body.rb +17 -0
  529. data/lib/schematic/types/charge_type.rb +13 -0
  530. data/lib/schematic/types/check_flag_request_body.rb +10 -0
  531. data/lib/schematic/types/check_flag_response_data.rb +23 -0
  532. data/lib/schematic/types/check_flags_bulk_response_data.rb +9 -0
  533. data/lib/schematic/types/check_flags_response_data.rb +10 -0
  534. data/lib/schematic/types/checkout_data_response_data.rb +18 -0
  535. data/lib/schematic/types/checkout_settings_response_data.rb +11 -0
  536. data/lib/schematic/types/checkout_subscription.rb +30 -0
  537. data/lib/schematic/types/company_detail_response_data.rb +31 -0
  538. data/lib/schematic/types/company_event_period_metrics_response_data.rb +19 -0
  539. data/lib/schematic/types/company_ledger_response_data.rb +11 -0
  540. data/lib/schematic/types/company_membership_detail_response_data.rb +14 -0
  541. data/lib/schematic/types/company_membership_response_data.rb +13 -0
  542. data/lib/schematic/types/company_override_note_response_data.rb +14 -0
  543. data/lib/schematic/types/company_override_response_data.rb +28 -0
  544. data/lib/schematic/types/company_plan_detail_response_data.rb +43 -0
  545. data/lib/schematic/types/company_plan_invalid_reason.rb +12 -0
  546. data/lib/schematic/types/company_plan_with_billing_sub_view.rb +19 -0
  547. data/lib/schematic/types/company_response_data.rb +15 -0
  548. data/lib/schematic/types/company_subscription_response_data.rb +22 -0
  549. data/lib/schematic/types/compatible_plans.rb +10 -0
  550. data/lib/schematic/types/compatible_plans_response_data.rb +10 -0
  551. data/lib/schematic/types/component_capabilities.rb +10 -0
  552. data/lib/schematic/types/component_checkout_settings.rb +12 -0
  553. data/lib/schematic/types/component_display_settings.rb +14 -0
  554. data/lib/schematic/types/component_entity_type.rb +12 -0
  555. data/lib/schematic/types/component_hydrate_response_data.rb +34 -0
  556. data/lib/schematic/types/component_preview_response_data.rb +35 -0
  557. data/lib/schematic/types/component_response_data.rb +15 -0
  558. data/lib/schematic/types/component_settings_response_data.rb +14 -0
  559. data/lib/schematic/types/component_state.rb +12 -0
  560. data/lib/schematic/types/condition.rb +23 -0
  561. data/lib/schematic/types/condition_condition_type.rb +19 -0
  562. data/lib/schematic/types/condition_group.rb +9 -0
  563. data/lib/schematic/types/condition_group_response_data.rb +15 -0
  564. data/lib/schematic/types/condition_group_view.rb +16 -0
  565. data/lib/schematic/types/condition_metric_period.rb +14 -0
  566. data/lib/schematic/types/condition_metric_period_month_reset.rb +12 -0
  567. data/lib/schematic/types/condition_operator.rb +18 -0
  568. data/lib/schematic/types/condition_response_data.rb +32 -0
  569. data/lib/schematic/types/condition_view.rb +39 -0
  570. data/lib/schematic/types/count_response.rb +9 -0
  571. data/lib/schematic/types/coupon_request_body.rb +16 -0
  572. data/lib/schematic/types/create_billing_plan_credit_grant_request_body.rb +26 -0
  573. data/lib/schematic/types/create_billing_price_tier_request_body.rb +14 -0
  574. data/lib/schematic/types/create_entitlement_in_bundle_request_body.rb +36 -0
  575. data/lib/schematic/types/create_entitlement_in_bundle_request_body_metric_period.rb +14 -0
  576. data/lib/schematic/types/create_entitlement_in_bundle_request_body_metric_period_month_reset.rb +12 -0
  577. data/lib/schematic/types/create_entitlement_req_common.rb +17 -0
  578. data/lib/schematic/types/create_entitlement_req_common_metric_period.rb +14 -0
  579. data/lib/schematic/types/create_entitlement_req_common_metric_period_month_reset.rb +12 -0
  580. data/lib/schematic/types/create_event_request_body.rb +11 -0
  581. data/lib/schematic/types/create_flag_request_body.rb +15 -0
  582. data/lib/schematic/types/create_or_update_condition_group_request_body.rb +11 -0
  583. data/lib/schematic/types/create_or_update_condition_request_body.rb +21 -0
  584. data/lib/schematic/types/create_or_update_condition_request_body_condition_type.rb +17 -0
  585. data/lib/schematic/types/create_or_update_condition_request_body_metric_period.rb +14 -0
  586. data/lib/schematic/types/create_or_update_condition_request_body_metric_period_month_reset.rb +12 -0
  587. data/lib/schematic/types/create_or_update_condition_request_body_operator.rb +18 -0
  588. data/lib/schematic/types/create_or_update_flag_request_body.rb +16 -0
  589. data/lib/schematic/types/create_or_update_rule_request_body.rb +15 -0
  590. data/lib/schematic/types/create_or_update_rule_request_body_rule_type.rb +15 -0
  591. data/lib/schematic/types/create_plan_request_body.rb +12 -0
  592. data/lib/schematic/types/create_price_tier_request_body.rb +12 -0
  593. data/lib/schematic/types/credit_auto_topup_amount_type.rb +23 -0
  594. data/lib/schematic/types/credit_bundle_currency_price.rb +10 -0
  595. data/lib/schematic/types/credit_bundle_currency_price_request_body.rb +11 -0
  596. data/lib/schematic/types/credit_bundle_currency_price_response_data.rb +10 -0
  597. data/lib/schematic/types/credit_bundle_purchase_response_data.rb +11 -0
  598. data/lib/schematic/types/credit_company_grant_view.rb +40 -0
  599. data/lib/schematic/types/credit_currency_price_request_body.rb +11 -0
  600. data/lib/schematic/types/credit_currency_price_response_data.rb +10 -0
  601. data/lib/schematic/types/credit_event_ledger_response_data.rb +39 -0
  602. data/lib/schematic/types/credit_event_type.rb +14 -0
  603. data/lib/schematic/types/credit_grant_detail.rb +12 -0
  604. data/lib/schematic/types/credit_grant_expiry_request_body.rb +14 -0
  605. data/lib/schematic/types/credit_grant_sort_order.rb +14 -0
  606. data/lib/schematic/types/credit_ledger_enriched_entry_response_data.rb +30 -0
  607. data/lib/schematic/types/credit_ledger_period.rb +14 -0
  608. data/lib/schematic/types/credit_transfer_response_data.rb +14 -0
  609. data/lib/schematic/types/credit_transfer_view.rb +14 -0
  610. data/lib/schematic/types/credit_trigger_config.rb +9 -0
  611. data/lib/schematic/types/credit_usage.rb +17 -0
  612. data/lib/schematic/types/credit_usage_aggregation.rb +12 -0
  613. data/lib/schematic/types/credits_auto_topup_company_summary.rb +10 -0
  614. data/lib/schematic/types/credits_auto_topup_credit_summary.rb +10 -0
  615. data/lib/schematic/types/credits_auto_topup_hard_failure.rb +12 -0
  616. data/lib/schematic/types/credits_auto_topup_retry_failure.rb +13 -0
  617. data/lib/schematic/types/currency_price_request_body.rb +15 -0
  618. data/lib/schematic/types/custom_plan_config.rb +11 -0
  619. data/lib/schematic/types/custom_plan_view_config_response_data.rb +11 -0
  620. data/lib/schematic/types/data_event_payload.rb +12 -0
  621. data/lib/schematic/types/data_export_output_file_type.rb +23 -0
  622. data/lib/schematic/types/data_export_response_data.rb +17 -0
  623. data/lib/schematic/types/data_export_status.rb +13 -0
  624. data/lib/schematic/types/data_export_type.rb +23 -0
  625. data/lib/schematic/types/datastream_company_plan.rb +11 -0
  626. data/lib/schematic/types/delete_billing_plan_credit_grant_request_body.rb +9 -0
  627. data/lib/schematic/types/delete_response.rb +9 -0
  628. data/lib/schematic/types/duplicate_plan_entitlements_response_response_data.rb +10 -0
  629. data/lib/schematic/types/entitlement_currency_prices_response_data.rb +11 -0
  630. data/lib/schematic/types/entitlement_price_behavior.rb +15 -0
  631. data/lib/schematic/types/entitlement_trigger_config.rb +9 -0
  632. data/lib/schematic/types/entitlement_type.rb +13 -0
  633. data/lib/schematic/types/entitlement_value_type.rb +16 -0
  634. data/lib/schematic/types/entitlements_in_plan.rb +10 -0
  635. data/lib/schematic/types/entity_key_definition_response_data.rb +13 -0
  636. data/lib/schematic/types/entity_key_detail_response_data.rb +18 -0
  637. data/lib/schematic/types/entity_key_response_data.rb +17 -0
  638. data/lib/schematic/types/entity_trait_definition_response_data.rb +15 -0
  639. data/lib/schematic/types/entity_trait_detail_response_data.rb +15 -0
  640. data/lib/schematic/types/entity_trait_response_data.rb +14 -0
  641. data/lib/schematic/types/entity_trait_value.rb +10 -0
  642. data/lib/schematic/types/entity_type.rb +12 -0
  643. data/lib/schematic/types/environment_detail_response_data.rb +14 -0
  644. data/lib/schematic/types/environment_response_data.rb +13 -0
  645. data/lib/schematic/types/environment_type.rb +13 -0
  646. data/lib/schematic/types/event_body.rb +13 -0
  647. data/lib/schematic/types/event_body_flag_check.rb +18 -0
  648. data/lib/schematic/types/event_body_identify.rb +12 -0
  649. data/lib/schematic/types/event_body_identify_company.rb +12 -0
  650. data/lib/schematic/types/event_body_track.rb +13 -0
  651. data/lib/schematic/types/event_detail_response_data.rb +30 -0
  652. data/lib/schematic/types/event_response_data.rb +27 -0
  653. data/lib/schematic/types/event_status.rb +15 -0
  654. data/lib/schematic/types/event_summary_response_data.rb +14 -0
  655. data/lib/schematic/types/event_type.rb +13 -0
  656. data/lib/schematic/types/feature_company_response_data.rb +44 -0
  657. data/lib/schematic/types/feature_company_user_response_data.rb +21 -0
  658. data/lib/schematic/types/feature_detail_response_data.rb +25 -0
  659. data/lib/schematic/types/feature_entitlement.rb +22 -0
  660. data/lib/schematic/types/feature_entitlement_metric_period.rb +14 -0
  661. data/lib/schematic/types/feature_entitlement_month_reset.rb +12 -0
  662. data/lib/schematic/types/feature_ledger_response_data.rb +12 -0
  663. data/lib/schematic/types/feature_lifecycle_phase.rb +19 -0
  664. data/lib/schematic/types/feature_response_data.rb +21 -0
  665. data/lib/schematic/types/feature_type.rb +13 -0
  666. data/lib/schematic/types/feature_usage_detail_response_data.rb +9 -0
  667. data/lib/schematic/types/feature_usage_legacy_response_data.rb +14 -0
  668. data/lib/schematic/types/feature_usage_response_data.rb +42 -0
  669. data/lib/schematic/types/feature_usage_time_series_response_data.rb +13 -0
  670. data/lib/schematic/types/feature_view.rb +26 -0
  671. data/lib/schematic/types/flag_detail_response_data.rb +21 -0
  672. data/lib/schematic/types/flag_response_data.rb +18 -0
  673. data/lib/schematic/types/flag_type.rb +23 -0
  674. data/lib/schematic/types/flag_view.rb +22 -0
  675. data/lib/schematic/types/generic_preview_object.rb +12 -0
  676. data/lib/schematic/types/invoice_request_body.rb +20 -0
  677. data/lib/schematic/types/invoice_response_data.rb +27 -0
  678. data/lib/schematic/types/invoice_status.rb +15 -0
  679. data/lib/schematic/types/issue_temporary_access_token_response_data.rb +16 -0
  680. data/lib/schematic/types/keys_request_body.rb +9 -0
  681. data/lib/schematic/types/limit_time_series_point_response_data.rb +14 -0
  682. data/lib/schematic/types/manage_plan_preview_response_response_data.rb +9 -0
  683. data/lib/schematic/types/manage_plan_request.rb +21 -0
  684. data/lib/schematic/types/manage_plan_response_response_data.rb +10 -0
  685. data/lib/schematic/types/meter_request_body.rb +11 -0
  686. data/lib/schematic/types/ordered_plans_in_group.rb +10 -0
  687. data/lib/schematic/types/payment_method_request_body.rb +19 -0
  688. data/lib/schematic/types/payment_method_response_data.rb +26 -0
  689. data/lib/schematic/types/plan_bundle_action.rb +13 -0
  690. data/lib/schematic/types/plan_bundle_credit_grant_request_body.rb +13 -0
  691. data/lib/schematic/types/plan_bundle_entitlement_request_body.rb +11 -0
  692. data/lib/schematic/types/plan_bundle_response_data.rb +13 -0
  693. data/lib/schematic/types/plan_change_action.rb +21 -0
  694. data/lib/schematic/types/plan_change_base_plan_action.rb +14 -0
  695. data/lib/schematic/types/plan_change_response_data.rb +30 -0
  696. data/lib/schematic/types/plan_change_subscription_action.rb +17 -0
  697. data/lib/schematic/types/plan_controlled_by_type.rb +12 -0
  698. data/lib/schematic/types/plan_credit_grant_view.rb +35 -0
  699. data/lib/schematic/types/plan_currency_price_request_body.rb +12 -0
  700. data/lib/schematic/types/plan_currency_prices_response_data.rb +12 -0
  701. data/lib/schematic/types/plan_detail_response_data.rb +33 -0
  702. data/lib/schematic/types/plan_entitlement_response_data.rb +34 -0
  703. data/lib/schematic/types/plan_entitlements_order.rb +10 -0
  704. data/lib/schematic/types/plan_group_bundle_order.rb +9 -0
  705. data/lib/schematic/types/plan_group_detail_response_data.rb +45 -0
  706. data/lib/schematic/types/plan_group_plan_detail_response_data.rb +37 -0
  707. data/lib/schematic/types/plan_group_plan_entitlements_order.rb +10 -0
  708. data/lib/schematic/types/plan_group_response_data.rb +36 -0
  709. data/lib/schematic/types/plan_issue_response_data.rb +12 -0
  710. data/lib/schematic/types/plan_response_data.rb +16 -0
  711. data/lib/schematic/types/plan_selection.rb +11 -0
  712. data/lib/schematic/types/plan_snapshot_view.rb +13 -0
  713. data/lib/schematic/types/plan_trait_response_data.rb +17 -0
  714. data/lib/schematic/types/plan_type.rb +12 -0
  715. data/lib/schematic/types/plan_version_company_migration_response_data.rb +19 -0
  716. data/lib/schematic/types/plan_version_company_migration_status.rb +15 -0
  717. data/lib/schematic/types/plan_version_migration_response_data.rb +23 -0
  718. data/lib/schematic/types/plan_version_migration_status.rb +14 -0
  719. data/lib/schematic/types/plan_version_migration_strategy.rb +12 -0
  720. data/lib/schematic/types/plan_version_response_data.rb +19 -0
  721. data/lib/schematic/types/plan_version_snapshot_view.rb +11 -0
  722. data/lib/schematic/types/plan_version_status.rb +13 -0
  723. data/lib/schematic/types/plan_view_public_response_data.rb +38 -0
  724. data/lib/schematic/types/preview_object.rb +12 -0
  725. data/lib/schematic/types/preview_object_response_data.rb +12 -0
  726. data/lib/schematic/types/preview_subscription_change_response_data.rb +21 -0
  727. data/lib/schematic/types/preview_subscription_finance_response_data.rb +21 -0
  728. data/lib/schematic/types/preview_subscription_upcoming_invoice_line_items.rb +13 -0
  729. data/lib/schematic/types/proration_behavior.rb +12 -0
  730. data/lib/schematic/types/public_plans_response_data.rb +17 -0
  731. data/lib/schematic/types/quickstart_resp.rb +9 -0
  732. data/lib/schematic/types/raw_event_batch_response_data.rb +9 -0
  733. data/lib/schematic/types/raw_event_response_data.rb +13 -0
  734. data/lib/schematic/types/rule.rb +18 -0
  735. data/lib/schematic/types/rule_condition_detail_response_data.rb +29 -0
  736. data/lib/schematic/types/rule_condition_group_detail_response_data.rb +15 -0
  737. data/lib/schematic/types/rule_condition_group_response_data.rb +14 -0
  738. data/lib/schematic/types/rule_condition_response_data.rb +26 -0
  739. data/lib/schematic/types/rule_detail_response_data.rb +19 -0
  740. data/lib/schematic/types/rule_response_data.rb +17 -0
  741. data/lib/schematic/types/rule_rule_type.rb +17 -0
  742. data/lib/schematic/types/rule_view.rb +20 -0
  743. data/lib/schematic/types/rules_detail_response_data.rb +10 -0
  744. data/lib/schematic/types/rules_engine_schema_version.rb +12 -0
  745. data/lib/schematic/types/rulesengine_check_flag_result.rb +23 -0
  746. data/lib/schematic/types/rulesengine_check_flag_result_feature_usage_period.rb +14 -0
  747. data/lib/schematic/types/rulesengine_check_flag_result_rule_type.rb +17 -0
  748. data/lib/schematic/types/rulesengine_company.rb +22 -0
  749. data/lib/schematic/types/rulesengine_company_metric.rb +17 -0
  750. data/lib/schematic/types/rulesengine_company_metric_month_reset.rb +12 -0
  751. data/lib/schematic/types/rulesengine_company_metric_period.rb +14 -0
  752. data/lib/schematic/types/rulesengine_condition.rb +23 -0
  753. data/lib/schematic/types/rulesengine_condition_condition_type.rb +19 -0
  754. data/lib/schematic/types/rulesengine_condition_group.rb +9 -0
  755. data/lib/schematic/types/rulesengine_condition_metric_period.rb +14 -0
  756. data/lib/schematic/types/rulesengine_condition_metric_period_month_reset.rb +12 -0
  757. data/lib/schematic/types/rulesengine_condition_operator.rb +18 -0
  758. data/lib/schematic/types/rulesengine_entitlement_value_type.rb +16 -0
  759. data/lib/schematic/types/rulesengine_entity_type.rb +12 -0
  760. data/lib/schematic/types/rulesengine_feature_entitlement.rb +22 -0
  761. data/lib/schematic/types/rulesengine_feature_entitlement_metric_period.rb +14 -0
  762. data/lib/schematic/types/rulesengine_feature_entitlement_month_reset.rb +12 -0
  763. data/lib/schematic/types/rulesengine_flag.rb +14 -0
  764. data/lib/schematic/types/rulesengine_rule.rb +18 -0
  765. data/lib/schematic/types/rulesengine_rule_rule_type.rb +17 -0
  766. data/lib/schematic/types/rulesengine_subscription.rb +11 -0
  767. data/lib/schematic/types/rulesengine_trait.rb +10 -0
  768. data/lib/schematic/types/rulesengine_trait_definition.rb +11 -0
  769. data/lib/schematic/types/rulesengine_trait_definition_comparable_type.rb +14 -0
  770. data/lib/schematic/types/rulesengine_user.rb +14 -0
  771. data/lib/schematic/types/scheduled_checkout_response_data.rb +22 -0
  772. data/lib/schematic/types/scheduled_checkout_status.rb +15 -0
  773. data/lib/schematic/types/scheduled_downgrade_config_behavior.rb +12 -0
  774. data/lib/schematic/types/scheduled_downgrade_response_data.rb +19 -0
  775. data/lib/schematic/types/segment_status_resp.rb +11 -0
  776. data/lib/schematic/types/skipped_entitlement_error_response_data.rb +9 -0
  777. data/lib/schematic/types/skipped_entitlement_response_data.rb +12 -0
  778. data/lib/schematic/types/sort_direction.rb +12 -0
  779. data/lib/schematic/types/stripe_embed_info.rb +12 -0
  780. data/lib/schematic/types/subscription_status.rb +19 -0
  781. data/lib/schematic/types/subscription_trait_update.rb +15 -0
  782. data/lib/schematic/types/subscription_type.rb +14 -0
  783. data/lib/schematic/types/temporary_access_token_resource_type.rb +23 -0
  784. data/lib/schematic/types/temporary_access_token_response_data.rb +15 -0
  785. data/lib/schematic/types/time_series_granularity.rb +14 -0
  786. data/lib/schematic/types/trait_definition.rb +11 -0
  787. data/lib/schematic/types/trait_definition_comparable_type.rb +14 -0
  788. data/lib/schematic/types/trait_type.rb +16 -0
  789. data/lib/schematic/types/update_add_on_request_body.rb +10 -0
  790. data/lib/schematic/types/update_billing_plan_credit_grant_request_body.rb +23 -0
  791. data/lib/schematic/types/update_credit_bundle_request_body.rb +10 -0
  792. data/lib/schematic/types/update_entitlement_req_common.rb +16 -0
  793. data/lib/schematic/types/update_entitlement_req_common_metric_period.rb +14 -0
  794. data/lib/schematic/types/update_entitlement_req_common_metric_period_month_reset.rb +12 -0
  795. data/lib/schematic/types/update_pay_in_advance_request_body.rb +10 -0
  796. data/lib/schematic/types/update_plan_request_body.rb +11 -0
  797. data/lib/schematic/types/update_plan_trait_trait_request_body.rb +10 -0
  798. data/lib/schematic/types/update_rule_request_body.rb +13 -0
  799. data/lib/schematic/types/upsert_billing_product_request_body.rb +20 -0
  800. data/lib/schematic/types/upsert_company_request_body.rb +15 -0
  801. data/lib/schematic/types/upsert_trait_request_body.rb +13 -0
  802. data/lib/schematic/types/upsert_user_request_body.rb +18 -0
  803. data/lib/schematic/types/upsert_user_sub_request_body.rb +16 -0
  804. data/lib/schematic/types/usage_based_entitlement_request_body.rb +25 -0
  805. data/lib/schematic/types/usage_based_entitlement_response_data.rb +20 -0
  806. data/lib/schematic/types/usage_time_series_point_response_data.rb +12 -0
  807. data/lib/schematic/types/user_detail_response_data.rb +18 -0
  808. data/lib/schematic/types/user_response_data.rb +14 -0
  809. data/lib/schematic/types/web_feature_usage_webhook_output.rb +15 -0
  810. data/lib/schematic/types/web_scheduled_downgrade_webhook_output.rb +15 -0
  811. data/lib/schematic/types/webhook_event_detail_response_data.rb +18 -0
  812. data/lib/schematic/types/webhook_event_response_data.rb +17 -0
  813. data/lib/schematic/types/webhook_event_status.rb +13 -0
  814. data/lib/schematic/types/webhook_request_type.rb +49 -0
  815. data/lib/schematic/types/webhook_response_data.rb +18 -0
  816. data/lib/schematic/types/webhook_status.rb +12 -0
  817. data/lib/schematic/types/who_am_i_response_data.rb +17 -0
  818. data/lib/schematic/version.rb +5 -0
  819. data/lib/schematic/wasm/rulesengine.wasm +0 -0
  820. data/lib/schematic/webhook_verification.rb +83 -0
  821. data/lib/schematic/webhooks/client.rb +355 -0
  822. data/lib/schematic/webhooks/types/count_webhook_events_params.rb +16 -0
  823. data/lib/schematic/webhooks/types/count_webhook_events_request.rb +15 -0
  824. data/lib/schematic/webhooks/types/count_webhook_events_response.rb +12 -0
  825. data/lib/schematic/webhooks/types/count_webhooks_params.rb +14 -0
  826. data/lib/schematic/webhooks/types/count_webhooks_request.rb +13 -0
  827. data/lib/schematic/webhooks/types/count_webhooks_response.rb +12 -0
  828. data/lib/schematic/webhooks/types/create_webhook_request_body.rb +15 -0
  829. data/lib/schematic/webhooks/types/create_webhook_response.rb +12 -0
  830. data/lib/schematic/webhooks/types/delete_webhook_response.rb +12 -0
  831. data/lib/schematic/webhooks/types/get_webhook_event_response.rb +12 -0
  832. data/lib/schematic/webhooks/types/get_webhook_response.rb +12 -0
  833. data/lib/schematic/webhooks/types/list_webhook_events_params.rb +16 -0
  834. data/lib/schematic/webhooks/types/list_webhook_events_request.rb +15 -0
  835. data/lib/schematic/webhooks/types/list_webhook_events_response.rb +12 -0
  836. data/lib/schematic/webhooks/types/list_webhooks_params.rb +14 -0
  837. data/lib/schematic/webhooks/types/list_webhooks_request.rb +13 -0
  838. data/lib/schematic/webhooks/types/list_webhooks_response.rb +12 -0
  839. data/lib/schematic/webhooks/types/update_webhook_request_body.rb +17 -0
  840. data/lib/schematic/webhooks/types/update_webhook_response.rb +12 -0
  841. data/lib/schematic.rb +821 -0
  842. data/lib/schematichq.rb +17 -0
  843. data/reference.md +16668 -0
  844. data/scripts/download-wasm.sh +82 -0
  845. data/scripts/webhook_test_server.rb +55 -0
  846. data/testapp/Gemfile +6 -0
  847. data/testapp/app.rb +307 -0
  848. metadata +917 -0
metadata ADDED
@@ -0,0 +1,917 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: schematichq
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.4.0
5
+ platform: ruby
6
+ authors:
7
+ - Schematic
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2026-04-02 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: wasmtime
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '19.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '19.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: websocket
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '1.2'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '1.2'
41
+ description: The Schematic Ruby library provides convenient access to the Schematic
42
+ API from Ruby.
43
+ email:
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ".claude/settings.json"
49
+ - ".claude/skills/pr-review/SKILL.md"
50
+ - ".fern/metadata.json"
51
+ - ".fernignore"
52
+ - ".rubocop.yml"
53
+ - CLAUDE.md
54
+ - LICENSE
55
+ - README.md
56
+ - Rakefile
57
+ - WASM_VERSION
58
+ - custom.gemspec.rb
59
+ - lib/schematic.rb
60
+ - lib/schematic/accesstokens/client.rb
61
+ - lib/schematic/accesstokens/types/issue_temporary_access_token_request_body.rb
62
+ - lib/schematic/accesstokens/types/issue_temporary_access_token_response.rb
63
+ - lib/schematic/accounts/client.rb
64
+ - lib/schematic/accounts/types/count_api_keys_params.rb
65
+ - lib/schematic/accounts/types/count_api_keys_request.rb
66
+ - lib/schematic/accounts/types/count_api_keys_response.rb
67
+ - lib/schematic/accounts/types/count_audit_logs_params.rb
68
+ - lib/schematic/accounts/types/count_audit_logs_request.rb
69
+ - lib/schematic/accounts/types/count_audit_logs_response.rb
70
+ - lib/schematic/accounts/types/create_api_key_request_body.rb
71
+ - lib/schematic/accounts/types/create_api_key_response.rb
72
+ - lib/schematic/accounts/types/create_environment_request_body.rb
73
+ - lib/schematic/accounts/types/create_environment_response.rb
74
+ - lib/schematic/accounts/types/delete_api_key_response.rb
75
+ - lib/schematic/accounts/types/delete_environment_response.rb
76
+ - lib/schematic/accounts/types/get_api_key_response.rb
77
+ - lib/schematic/accounts/types/get_audit_log_response.rb
78
+ - lib/schematic/accounts/types/get_environment_response.rb
79
+ - lib/schematic/accounts/types/get_who_am_i_response.rb
80
+ - lib/schematic/accounts/types/list_api_keys_params.rb
81
+ - lib/schematic/accounts/types/list_api_keys_request.rb
82
+ - lib/schematic/accounts/types/list_api_keys_response.rb
83
+ - lib/schematic/accounts/types/list_audit_logs_params.rb
84
+ - lib/schematic/accounts/types/list_audit_logs_request.rb
85
+ - lib/schematic/accounts/types/list_audit_logs_response.rb
86
+ - lib/schematic/accounts/types/list_environments_params.rb
87
+ - lib/schematic/accounts/types/list_environments_request.rb
88
+ - lib/schematic/accounts/types/list_environments_response.rb
89
+ - lib/schematic/accounts/types/quickstart_response.rb
90
+ - lib/schematic/accounts/types/update_api_key_request_body.rb
91
+ - lib/schematic/accounts/types/update_api_key_response.rb
92
+ - lib/schematic/accounts/types/update_environment_request_body.rb
93
+ - lib/schematic/accounts/types/update_environment_response.rb
94
+ - lib/schematic/billing/client.rb
95
+ - lib/schematic/billing/types/count_billing_products_params.rb
96
+ - lib/schematic/billing/types/count_billing_products_request.rb
97
+ - lib/schematic/billing/types/count_billing_products_response.rb
98
+ - lib/schematic/billing/types/count_customers_params.rb
99
+ - lib/schematic/billing/types/count_customers_request.rb
100
+ - lib/schematic/billing/types/count_customers_response.rb
101
+ - lib/schematic/billing/types/create_billing_customer_request_body.rb
102
+ - lib/schematic/billing/types/create_billing_price_request_body.rb
103
+ - lib/schematic/billing/types/create_billing_product_request_body.rb
104
+ - lib/schematic/billing/types/create_billing_subscription_request_body.rb
105
+ - lib/schematic/billing/types/create_coupon_request_body.rb
106
+ - lib/schematic/billing/types/create_invoice_request_body.rb
107
+ - lib/schematic/billing/types/create_meter_request_body.rb
108
+ - lib/schematic/billing/types/create_payment_method_request_body.rb
109
+ - lib/schematic/billing/types/delete_billing_product_response.rb
110
+ - lib/schematic/billing/types/delete_product_price_response.rb
111
+ - lib/schematic/billing/types/list_billing_prices_params.rb
112
+ - lib/schematic/billing/types/list_billing_prices_request.rb
113
+ - lib/schematic/billing/types/list_billing_prices_response.rb
114
+ - lib/schematic/billing/types/list_billing_product_prices_params.rb
115
+ - lib/schematic/billing/types/list_billing_product_prices_request.rb
116
+ - lib/schematic/billing/types/list_billing_product_prices_response.rb
117
+ - lib/schematic/billing/types/list_billing_products_params.rb
118
+ - lib/schematic/billing/types/list_billing_products_request.rb
119
+ - lib/schematic/billing/types/list_billing_products_response.rb
120
+ - lib/schematic/billing/types/list_coupons_params.rb
121
+ - lib/schematic/billing/types/list_coupons_request.rb
122
+ - lib/schematic/billing/types/list_coupons_response.rb
123
+ - lib/schematic/billing/types/list_customers_with_subscriptions_params.rb
124
+ - lib/schematic/billing/types/list_customers_with_subscriptions_request.rb
125
+ - lib/schematic/billing/types/list_customers_with_subscriptions_response.rb
126
+ - lib/schematic/billing/types/list_invoices_params.rb
127
+ - lib/schematic/billing/types/list_invoices_request.rb
128
+ - lib/schematic/billing/types/list_invoices_response.rb
129
+ - lib/schematic/billing/types/list_meters_params.rb
130
+ - lib/schematic/billing/types/list_meters_request.rb
131
+ - lib/schematic/billing/types/list_meters_response.rb
132
+ - lib/schematic/billing/types/list_payment_methods_params.rb
133
+ - lib/schematic/billing/types/list_payment_methods_request.rb
134
+ - lib/schematic/billing/types/list_payment_methods_response.rb
135
+ - lib/schematic/billing/types/upsert_billing_coupon_response.rb
136
+ - lib/schematic/billing/types/upsert_billing_customer_response.rb
137
+ - lib/schematic/billing/types/upsert_billing_meter_response.rb
138
+ - lib/schematic/billing/types/upsert_billing_price_response.rb
139
+ - lib/schematic/billing/types/upsert_billing_product_response.rb
140
+ - lib/schematic/billing/types/upsert_billing_subscription_response.rb
141
+ - lib/schematic/billing/types/upsert_invoice_response.rb
142
+ - lib/schematic/billing/types/upsert_payment_method_response.rb
143
+ - lib/schematic/cache.rb
144
+ - lib/schematic/checkout/client.rb
145
+ - lib/schematic/checkout/types/cancel_subscription_request.rb
146
+ - lib/schematic/checkout/types/cancel_subscription_response.rb
147
+ - lib/schematic/checkout/types/checkout_data_request_body.rb
148
+ - lib/schematic/checkout/types/checkout_internal_response.rb
149
+ - lib/schematic/checkout/types/get_checkout_data_response.rb
150
+ - lib/schematic/checkout/types/manage_plan_response.rb
151
+ - lib/schematic/checkout/types/preview_checkout_internal_response.rb
152
+ - lib/schematic/checkout/types/preview_manage_plan_response.rb
153
+ - lib/schematic/checkout/types/update_customer_subscription_trial_end_response.rb
154
+ - lib/schematic/checkout/types/update_trial_end_request_body.rb
155
+ - lib/schematic/client.rb
156
+ - lib/schematic/companies/client.rb
157
+ - lib/schematic/companies/types/count_companies_params.rb
158
+ - lib/schematic/companies/types/count_companies_request.rb
159
+ - lib/schematic/companies/types/count_companies_response.rb
160
+ - lib/schematic/companies/types/count_entity_key_definitions_params.rb
161
+ - lib/schematic/companies/types/count_entity_key_definitions_request.rb
162
+ - lib/schematic/companies/types/count_entity_key_definitions_response.rb
163
+ - lib/schematic/companies/types/count_entity_trait_definitions_params.rb
164
+ - lib/schematic/companies/types/count_entity_trait_definitions_request.rb
165
+ - lib/schematic/companies/types/count_entity_trait_definitions_response.rb
166
+ - lib/schematic/companies/types/count_plan_traits_params.rb
167
+ - lib/schematic/companies/types/count_plan_traits_request.rb
168
+ - lib/schematic/companies/types/count_plan_traits_response.rb
169
+ - lib/schematic/companies/types/count_users_params.rb
170
+ - lib/schematic/companies/types/count_users_request.rb
171
+ - lib/schematic/companies/types/count_users_response.rb
172
+ - lib/schematic/companies/types/create_company_response.rb
173
+ - lib/schematic/companies/types/create_entity_trait_definition_request_body.rb
174
+ - lib/schematic/companies/types/create_plan_trait_request_body.rb
175
+ - lib/schematic/companies/types/create_plan_trait_response.rb
176
+ - lib/schematic/companies/types/create_user_response.rb
177
+ - lib/schematic/companies/types/delete_company_by_keys_response.rb
178
+ - lib/schematic/companies/types/delete_company_membership_response.rb
179
+ - lib/schematic/companies/types/delete_company_params.rb
180
+ - lib/schematic/companies/types/delete_company_request.rb
181
+ - lib/schematic/companies/types/delete_company_response.rb
182
+ - lib/schematic/companies/types/delete_plan_trait_response.rb
183
+ - lib/schematic/companies/types/delete_user_by_keys_response.rb
184
+ - lib/schematic/companies/types/delete_user_response.rb
185
+ - lib/schematic/companies/types/get_active_company_subscription_params.rb
186
+ - lib/schematic/companies/types/get_active_company_subscription_request.rb
187
+ - lib/schematic/companies/types/get_active_company_subscription_response.rb
188
+ - lib/schematic/companies/types/get_company_response.rb
189
+ - lib/schematic/companies/types/get_entity_trait_definition_response.rb
190
+ - lib/schematic/companies/types/get_entity_trait_values_params.rb
191
+ - lib/schematic/companies/types/get_entity_trait_values_request.rb
192
+ - lib/schematic/companies/types/get_entity_trait_values_response.rb
193
+ - lib/schematic/companies/types/get_or_create_company_membership_request_body.rb
194
+ - lib/schematic/companies/types/get_or_create_company_membership_response.rb
195
+ - lib/schematic/companies/types/get_or_create_entity_trait_definition_response.rb
196
+ - lib/schematic/companies/types/get_plan_change_response.rb
197
+ - lib/schematic/companies/types/get_plan_trait_response.rb
198
+ - lib/schematic/companies/types/get_user_response.rb
199
+ - lib/schematic/companies/types/list_companies_params.rb
200
+ - lib/schematic/companies/types/list_companies_request.rb
201
+ - lib/schematic/companies/types/list_companies_response.rb
202
+ - lib/schematic/companies/types/list_company_memberships_params.rb
203
+ - lib/schematic/companies/types/list_company_memberships_request.rb
204
+ - lib/schematic/companies/types/list_company_memberships_response.rb
205
+ - lib/schematic/companies/types/list_entity_key_definitions_params.rb
206
+ - lib/schematic/companies/types/list_entity_key_definitions_request.rb
207
+ - lib/schematic/companies/types/list_entity_key_definitions_response.rb
208
+ - lib/schematic/companies/types/list_entity_trait_definitions_params.rb
209
+ - lib/schematic/companies/types/list_entity_trait_definitions_request.rb
210
+ - lib/schematic/companies/types/list_entity_trait_definitions_response.rb
211
+ - lib/schematic/companies/types/list_plan_changes_params.rb
212
+ - lib/schematic/companies/types/list_plan_changes_request.rb
213
+ - lib/schematic/companies/types/list_plan_changes_response.rb
214
+ - lib/schematic/companies/types/list_plan_traits_params.rb
215
+ - lib/schematic/companies/types/list_plan_traits_request.rb
216
+ - lib/schematic/companies/types/list_plan_traits_response.rb
217
+ - lib/schematic/companies/types/list_users_params.rb
218
+ - lib/schematic/companies/types/list_users_request.rb
219
+ - lib/schematic/companies/types/list_users_response.rb
220
+ - lib/schematic/companies/types/lookup_company_params.rb
221
+ - lib/schematic/companies/types/lookup_company_request.rb
222
+ - lib/schematic/companies/types/lookup_company_response.rb
223
+ - lib/schematic/companies/types/lookup_user_params.rb
224
+ - lib/schematic/companies/types/lookup_user_request.rb
225
+ - lib/schematic/companies/types/lookup_user_response.rb
226
+ - lib/schematic/companies/types/update_entity_trait_definition_request_body.rb
227
+ - lib/schematic/companies/types/update_entity_trait_definition_response.rb
228
+ - lib/schematic/companies/types/update_plan_trait_bulk_request_body.rb
229
+ - lib/schematic/companies/types/update_plan_trait_request_body.rb
230
+ - lib/schematic/companies/types/update_plan_trait_response.rb
231
+ - lib/schematic/companies/types/update_plan_traits_bulk_response.rb
232
+ - lib/schematic/companies/types/upsert_company_response.rb
233
+ - lib/schematic/companies/types/upsert_company_trait_response.rb
234
+ - lib/schematic/companies/types/upsert_user_response.rb
235
+ - lib/schematic/companies/types/upsert_user_trait_response.rb
236
+ - lib/schematic/components/client.rb
237
+ - lib/schematic/components/types/count_components_params.rb
238
+ - lib/schematic/components/types/count_components_request.rb
239
+ - lib/schematic/components/types/count_components_response.rb
240
+ - lib/schematic/components/types/create_component_request_body.rb
241
+ - lib/schematic/components/types/create_component_response.rb
242
+ - lib/schematic/components/types/delete_component_response.rb
243
+ - lib/schematic/components/types/get_component_response.rb
244
+ - lib/schematic/components/types/list_components_params.rb
245
+ - lib/schematic/components/types/list_components_request.rb
246
+ - lib/schematic/components/types/list_components_response.rb
247
+ - lib/schematic/components/types/preview_component_data_params.rb
248
+ - lib/schematic/components/types/preview_component_data_request.rb
249
+ - lib/schematic/components/types/preview_component_data_response.rb
250
+ - lib/schematic/components/types/update_component_request_body.rb
251
+ - lib/schematic/components/types/update_component_response.rb
252
+ - lib/schematic/componentspublic/client.rb
253
+ - lib/schematic/componentspublic/types/get_public_plans_response.rb
254
+ - lib/schematic/credits/client.rb
255
+ - lib/schematic/credits/types/count_billing_credits_grants_params.rb
256
+ - lib/schematic/credits/types/count_billing_credits_grants_request.rb
257
+ - lib/schematic/credits/types/count_billing_credits_grants_response.rb
258
+ - lib/schematic/credits/types/count_billing_credits_params.rb
259
+ - lib/schematic/credits/types/count_billing_credits_request.rb
260
+ - lib/schematic/credits/types/count_billing_credits_response.rb
261
+ - lib/schematic/credits/types/count_billing_plan_credit_grants_params.rb
262
+ - lib/schematic/credits/types/count_billing_plan_credit_grants_request.rb
263
+ - lib/schematic/credits/types/count_billing_plan_credit_grants_response.rb
264
+ - lib/schematic/credits/types/count_company_grants_params.rb
265
+ - lib/schematic/credits/types/count_company_grants_request.rb
266
+ - lib/schematic/credits/types/count_company_grants_response.rb
267
+ - lib/schematic/credits/types/count_credit_bundles_params.rb
268
+ - lib/schematic/credits/types/count_credit_bundles_request.rb
269
+ - lib/schematic/credits/types/count_credit_bundles_response.rb
270
+ - lib/schematic/credits/types/count_credit_event_ledger_params.rb
271
+ - lib/schematic/credits/types/count_credit_event_ledger_request.rb
272
+ - lib/schematic/credits/types/count_credit_event_ledger_response.rb
273
+ - lib/schematic/credits/types/count_credit_ledger_params.rb
274
+ - lib/schematic/credits/types/count_credit_ledger_request.rb
275
+ - lib/schematic/credits/types/count_credit_ledger_response.rb
276
+ - lib/schematic/credits/types/create_billing_credit_request_body.rb
277
+ - lib/schematic/credits/types/create_billing_credit_response.rb
278
+ - lib/schematic/credits/types/create_billing_plan_credit_grant_response.rb
279
+ - lib/schematic/credits/types/create_company_credit_grant.rb
280
+ - lib/schematic/credits/types/create_credit_bundle_request_body.rb
281
+ - lib/schematic/credits/types/create_credit_bundle_response.rb
282
+ - lib/schematic/credits/types/delete_billing_plan_credit_grant_params.rb
283
+ - lib/schematic/credits/types/delete_billing_plan_credit_grant_request.rb
284
+ - lib/schematic/credits/types/delete_billing_plan_credit_grant_response.rb
285
+ - lib/schematic/credits/types/delete_credit_bundle_response.rb
286
+ - lib/schematic/credits/types/get_credit_bundle_response.rb
287
+ - lib/schematic/credits/types/get_enriched_credit_ledger_params.rb
288
+ - lib/schematic/credits/types/get_enriched_credit_ledger_request.rb
289
+ - lib/schematic/credits/types/get_enriched_credit_ledger_response.rb
290
+ - lib/schematic/credits/types/get_single_billing_credit_response.rb
291
+ - lib/schematic/credits/types/get_single_billing_plan_credit_grant_response.rb
292
+ - lib/schematic/credits/types/grant_billing_credits_to_company_response.rb
293
+ - lib/schematic/credits/types/list_billing_credits_params.rb
294
+ - lib/schematic/credits/types/list_billing_credits_request.rb
295
+ - lib/schematic/credits/types/list_billing_credits_response.rb
296
+ - lib/schematic/credits/types/list_billing_plan_credit_grants_params.rb
297
+ - lib/schematic/credits/types/list_billing_plan_credit_grants_request.rb
298
+ - lib/schematic/credits/types/list_billing_plan_credit_grants_response.rb
299
+ - lib/schematic/credits/types/list_company_grants_params.rb
300
+ - lib/schematic/credits/types/list_company_grants_request.rb
301
+ - lib/schematic/credits/types/list_company_grants_response.rb
302
+ - lib/schematic/credits/types/list_credit_bundles_params.rb
303
+ - lib/schematic/credits/types/list_credit_bundles_request.rb
304
+ - lib/schematic/credits/types/list_credit_bundles_response.rb
305
+ - lib/schematic/credits/types/list_credit_event_ledger_params.rb
306
+ - lib/schematic/credits/types/list_credit_event_ledger_request.rb
307
+ - lib/schematic/credits/types/list_credit_event_ledger_response.rb
308
+ - lib/schematic/credits/types/list_grants_for_credit_params.rb
309
+ - lib/schematic/credits/types/list_grants_for_credit_request.rb
310
+ - lib/schematic/credits/types/list_grants_for_credit_response.rb
311
+ - lib/schematic/credits/types/soft_delete_billing_credit_response.rb
312
+ - lib/schematic/credits/types/update_billing_credit_request_body.rb
313
+ - lib/schematic/credits/types/update_billing_credit_response.rb
314
+ - lib/schematic/credits/types/update_billing_plan_credit_grant_response.rb
315
+ - lib/schematic/credits/types/update_credit_bundle_details_request_body.rb
316
+ - lib/schematic/credits/types/update_credit_bundle_details_response.rb
317
+ - lib/schematic/credits/types/zero_out_grant_request_body.rb
318
+ - lib/schematic/credits/types/zero_out_grant_response.rb
319
+ - lib/schematic/dataexports/client.rb
320
+ - lib/schematic/dataexports/types/create_data_export_request_body.rb
321
+ - lib/schematic/dataexports/types/create_data_export_response.rb
322
+ - lib/schematic/datastream/client.rb
323
+ - lib/schematic/datastream/merge.rb
324
+ - lib/schematic/datastream/resource_cache.rb
325
+ - lib/schematic/datastream/websocket_client.rb
326
+ - lib/schematic/entitlements/client.rb
327
+ - lib/schematic/entitlements/types/count_company_overrides_params.rb
328
+ - lib/schematic/entitlements/types/count_company_overrides_request.rb
329
+ - lib/schematic/entitlements/types/count_company_overrides_response.rb
330
+ - lib/schematic/entitlements/types/count_feature_companies_params.rb
331
+ - lib/schematic/entitlements/types/count_feature_companies_request.rb
332
+ - lib/schematic/entitlements/types/count_feature_companies_response.rb
333
+ - lib/schematic/entitlements/types/count_feature_usage_params.rb
334
+ - lib/schematic/entitlements/types/count_feature_usage_request.rb
335
+ - lib/schematic/entitlements/types/count_feature_usage_response.rb
336
+ - lib/schematic/entitlements/types/count_feature_users_params.rb
337
+ - lib/schematic/entitlements/types/count_feature_users_request.rb
338
+ - lib/schematic/entitlements/types/count_feature_users_response.rb
339
+ - lib/schematic/entitlements/types/count_plan_entitlements_params.rb
340
+ - lib/schematic/entitlements/types/count_plan_entitlements_request.rb
341
+ - lib/schematic/entitlements/types/count_plan_entitlements_response.rb
342
+ - lib/schematic/entitlements/types/create_company_override_request_body.rb
343
+ - lib/schematic/entitlements/types/create_company_override_request_body_metric_period.rb
344
+ - lib/schematic/entitlements/types/create_company_override_request_body_metric_period_month_reset.rb
345
+ - lib/schematic/entitlements/types/create_company_override_response.rb
346
+ - lib/schematic/entitlements/types/create_plan_entitlement_request_body.rb
347
+ - lib/schematic/entitlements/types/create_plan_entitlement_request_body_metric_period.rb
348
+ - lib/schematic/entitlements/types/create_plan_entitlement_request_body_metric_period_month_reset.rb
349
+ - lib/schematic/entitlements/types/create_plan_entitlement_response.rb
350
+ - lib/schematic/entitlements/types/delete_company_override_response.rb
351
+ - lib/schematic/entitlements/types/delete_plan_entitlement_response.rb
352
+ - lib/schematic/entitlements/types/duplicate_plan_entitlements_request_body.rb
353
+ - lib/schematic/entitlements/types/duplicate_plan_entitlements_response.rb
354
+ - lib/schematic/entitlements/types/get_company_override_response.rb
355
+ - lib/schematic/entitlements/types/get_feature_usage_by_company_params.rb
356
+ - lib/schematic/entitlements/types/get_feature_usage_by_company_request.rb
357
+ - lib/schematic/entitlements/types/get_feature_usage_by_company_response.rb
358
+ - lib/schematic/entitlements/types/get_feature_usage_time_series_params.rb
359
+ - lib/schematic/entitlements/types/get_feature_usage_time_series_request.rb
360
+ - lib/schematic/entitlements/types/get_feature_usage_time_series_response.rb
361
+ - lib/schematic/entitlements/types/get_plan_entitlement_response.rb
362
+ - lib/schematic/entitlements/types/list_company_overrides_params.rb
363
+ - lib/schematic/entitlements/types/list_company_overrides_request.rb
364
+ - lib/schematic/entitlements/types/list_company_overrides_response.rb
365
+ - lib/schematic/entitlements/types/list_feature_companies_params.rb
366
+ - lib/schematic/entitlements/types/list_feature_companies_request.rb
367
+ - lib/schematic/entitlements/types/list_feature_companies_response.rb
368
+ - lib/schematic/entitlements/types/list_feature_usage_params.rb
369
+ - lib/schematic/entitlements/types/list_feature_usage_request.rb
370
+ - lib/schematic/entitlements/types/list_feature_usage_response.rb
371
+ - lib/schematic/entitlements/types/list_feature_users_params.rb
372
+ - lib/schematic/entitlements/types/list_feature_users_request.rb
373
+ - lib/schematic/entitlements/types/list_feature_users_response.rb
374
+ - lib/schematic/entitlements/types/list_plan_entitlements_params.rb
375
+ - lib/schematic/entitlements/types/list_plan_entitlements_request.rb
376
+ - lib/schematic/entitlements/types/list_plan_entitlements_response.rb
377
+ - lib/schematic/entitlements/types/update_company_override_request_body.rb
378
+ - lib/schematic/entitlements/types/update_company_override_request_body_metric_period.rb
379
+ - lib/schematic/entitlements/types/update_company_override_request_body_metric_period_month_reset.rb
380
+ - lib/schematic/entitlements/types/update_company_override_response.rb
381
+ - lib/schematic/entitlements/types/update_plan_entitlement_request_body.rb
382
+ - lib/schematic/entitlements/types/update_plan_entitlement_request_body_metric_period.rb
383
+ - lib/schematic/entitlements/types/update_plan_entitlement_request_body_metric_period_month_reset.rb
384
+ - lib/schematic/entitlements/types/update_plan_entitlement_response.rb
385
+ - lib/schematic/environment.rb
386
+ - lib/schematic/errors/api_error.rb
387
+ - lib/schematic/errors/client_error.rb
388
+ - lib/schematic/errors/redirect_error.rb
389
+ - lib/schematic/errors/response_error.rb
390
+ - lib/schematic/errors/server_error.rb
391
+ - lib/schematic/errors/timeout_error.rb
392
+ - lib/schematic/event_buffer.rb
393
+ - lib/schematic/events/client.rb
394
+ - lib/schematic/events/types/create_event_batch_request_body.rb
395
+ - lib/schematic/events/types/create_event_batch_response.rb
396
+ - lib/schematic/events/types/create_event_response.rb
397
+ - lib/schematic/events/types/get_event_response.rb
398
+ - lib/schematic/events/types/get_event_summaries_params.rb
399
+ - lib/schematic/events/types/get_event_summaries_request.rb
400
+ - lib/schematic/events/types/get_event_summaries_response.rb
401
+ - lib/schematic/events/types/get_segment_integration_status_response.rb
402
+ - lib/schematic/events/types/list_events_params.rb
403
+ - lib/schematic/events/types/list_events_request.rb
404
+ - lib/schematic/events/types/list_events_response.rb
405
+ - lib/schematic/features/client.rb
406
+ - lib/schematic/features/types/check_flag_response.rb
407
+ - lib/schematic/features/types/check_flags_bulk_request_body.rb
408
+ - lib/schematic/features/types/check_flags_bulk_response.rb
409
+ - lib/schematic/features/types/check_flags_response.rb
410
+ - lib/schematic/features/types/count_features_params.rb
411
+ - lib/schematic/features/types/count_features_request.rb
412
+ - lib/schematic/features/types/count_features_response.rb
413
+ - lib/schematic/features/types/count_flags_params.rb
414
+ - lib/schematic/features/types/count_flags_request.rb
415
+ - lib/schematic/features/types/count_flags_response.rb
416
+ - lib/schematic/features/types/create_feature_request_body.rb
417
+ - lib/schematic/features/types/create_feature_response.rb
418
+ - lib/schematic/features/types/create_flag_response.rb
419
+ - lib/schematic/features/types/delete_feature_response.rb
420
+ - lib/schematic/features/types/delete_flag_response.rb
421
+ - lib/schematic/features/types/get_feature_response.rb
422
+ - lib/schematic/features/types/get_flag_response.rb
423
+ - lib/schematic/features/types/list_features_params.rb
424
+ - lib/schematic/features/types/list_features_request.rb
425
+ - lib/schematic/features/types/list_features_response.rb
426
+ - lib/schematic/features/types/list_flags_params.rb
427
+ - lib/schematic/features/types/list_flags_request.rb
428
+ - lib/schematic/features/types/list_flags_response.rb
429
+ - lib/schematic/features/types/update_feature_request_body.rb
430
+ - lib/schematic/features/types/update_feature_response.rb
431
+ - lib/schematic/features/types/update_flag_response.rb
432
+ - lib/schematic/features/types/update_flag_rules_request_body.rb
433
+ - lib/schematic/features/types/update_flag_rules_response.rb
434
+ - lib/schematic/internal/errors/constraint_error.rb
435
+ - lib/schematic/internal/errors/type_error.rb
436
+ - lib/schematic/internal/http/base_request.rb
437
+ - lib/schematic/internal/http/raw_client.rb
438
+ - lib/schematic/internal/iterators/cursor_item_iterator.rb
439
+ - lib/schematic/internal/iterators/cursor_page_iterator.rb
440
+ - lib/schematic/internal/iterators/item_iterator.rb
441
+ - lib/schematic/internal/iterators/offset_item_iterator.rb
442
+ - lib/schematic/internal/iterators/offset_page_iterator.rb
443
+ - lib/schematic/internal/json/request.rb
444
+ - lib/schematic/internal/json/serializable.rb
445
+ - lib/schematic/internal/multipart/multipart_encoder.rb
446
+ - lib/schematic/internal/multipart/multipart_form_data.rb
447
+ - lib/schematic/internal/multipart/multipart_form_data_part.rb
448
+ - lib/schematic/internal/multipart/multipart_request.rb
449
+ - lib/schematic/internal/types/array.rb
450
+ - lib/schematic/internal/types/boolean.rb
451
+ - lib/schematic/internal/types/enum.rb
452
+ - lib/schematic/internal/types/hash.rb
453
+ - lib/schematic/internal/types/model.rb
454
+ - lib/schematic/internal/types/model/field.rb
455
+ - lib/schematic/internal/types/type.rb
456
+ - lib/schematic/internal/types/union.rb
457
+ - lib/schematic/internal/types/unknown.rb
458
+ - lib/schematic/internal/types/utils.rb
459
+ - lib/schematic/logger.rb
460
+ - lib/schematic/planbundle/client.rb
461
+ - lib/schematic/planbundle/types/create_plan_bundle_request_body.rb
462
+ - lib/schematic/planbundle/types/create_plan_bundle_response.rb
463
+ - lib/schematic/planbundle/types/update_plan_bundle_request_body.rb
464
+ - lib/schematic/planbundle/types/update_plan_bundle_response.rb
465
+ - lib/schematic/plangroups/client.rb
466
+ - lib/schematic/plangroups/types/create_plan_group_request_body.rb
467
+ - lib/schematic/plangroups/types/create_plan_group_response.rb
468
+ - lib/schematic/plangroups/types/get_plan_group_params.rb
469
+ - lib/schematic/plangroups/types/get_plan_group_request.rb
470
+ - lib/schematic/plangroups/types/get_plan_group_response.rb
471
+ - lib/schematic/plangroups/types/update_plan_group_request_body.rb
472
+ - lib/schematic/plangroups/types/update_plan_group_response.rb
473
+ - lib/schematic/planmigrations/client.rb
474
+ - lib/schematic/planmigrations/types/count_company_migrations_params.rb
475
+ - lib/schematic/planmigrations/types/count_company_migrations_request.rb
476
+ - lib/schematic/planmigrations/types/count_company_migrations_response.rb
477
+ - lib/schematic/planmigrations/types/count_migrations_params.rb
478
+ - lib/schematic/planmigrations/types/count_migrations_request.rb
479
+ - lib/schematic/planmigrations/types/count_migrations_response.rb
480
+ - lib/schematic/planmigrations/types/get_migration_response.rb
481
+ - lib/schematic/planmigrations/types/list_company_migrations_params.rb
482
+ - lib/schematic/planmigrations/types/list_company_migrations_request.rb
483
+ - lib/schematic/planmigrations/types/list_company_migrations_response.rb
484
+ - lib/schematic/planmigrations/types/list_migrations_params.rb
485
+ - lib/schematic/planmigrations/types/list_migrations_request.rb
486
+ - lib/schematic/planmigrations/types/list_migrations_response.rb
487
+ - lib/schematic/plans/client.rb
488
+ - lib/schematic/plans/types/count_plans_params.rb
489
+ - lib/schematic/plans/types/count_plans_request.rb
490
+ - lib/schematic/plans/types/count_plans_response.rb
491
+ - lib/schematic/plans/types/create_plan_response.rb
492
+ - lib/schematic/plans/types/delete_plan_response.rb
493
+ - lib/schematic/plans/types/delete_plan_version_params.rb
494
+ - lib/schematic/plans/types/delete_plan_version_request.rb
495
+ - lib/schematic/plans/types/delete_plan_version_response.rb
496
+ - lib/schematic/plans/types/get_plan_params.rb
497
+ - lib/schematic/plans/types/get_plan_request.rb
498
+ - lib/schematic/plans/types/get_plan_response.rb
499
+ - lib/schematic/plans/types/list_plan_issues_params.rb
500
+ - lib/schematic/plans/types/list_plan_issues_request.rb
501
+ - lib/schematic/plans/types/list_plan_issues_response.rb
502
+ - lib/schematic/plans/types/list_plans_params.rb
503
+ - lib/schematic/plans/types/list_plans_request.rb
504
+ - lib/schematic/plans/types/list_plans_response.rb
505
+ - lib/schematic/plans/types/publish_plan_version_request_body.rb
506
+ - lib/schematic/plans/types/publish_plan_version_response.rb
507
+ - lib/schematic/plans/types/update_company_plans_request_body.rb
508
+ - lib/schematic/plans/types/update_company_plans_response.rb
509
+ - lib/schematic/plans/types/update_plan_response.rb
510
+ - lib/schematic/plans/types/upsert_billing_product_plan_response.rb
511
+ - lib/schematic/redis_cache.rb
512
+ - lib/schematic/rules_engine.rb
513
+ - lib/schematic/scheduledcheckout/client.rb
514
+ - lib/schematic/scheduledcheckout/types/create_scheduled_checkout_request.rb
515
+ - lib/schematic/scheduledcheckout/types/create_scheduled_checkout_response.rb
516
+ - lib/schematic/scheduledcheckout/types/get_scheduled_checkout_response.rb
517
+ - lib/schematic/scheduledcheckout/types/list_scheduled_checkouts_params.rb
518
+ - lib/schematic/scheduledcheckout/types/list_scheduled_checkouts_request.rb
519
+ - lib/schematic/scheduledcheckout/types/list_scheduled_checkouts_response.rb
520
+ - lib/schematic/scheduledcheckout/types/update_scheduled_checkout_request.rb
521
+ - lib/schematic/scheduledcheckout/types/update_scheduled_checkout_response.rb
522
+ - lib/schematic/schematic_client.rb
523
+ - lib/schematic/types/actor_type.rb
524
+ - lib/schematic/types/api_error.rb
525
+ - lib/schematic/types/api_key_create_response_data.rb
526
+ - lib/schematic/types/api_key_response_data.rb
527
+ - lib/schematic/types/api_key_scope.rb
528
+ - lib/schematic/types/audit_log_list_response_data.rb
529
+ - lib/schematic/types/audit_log_response_data.rb
530
+ - lib/schematic/types/billing_coupon_response_data.rb
531
+ - lib/schematic/types/billing_credit_bundle_response_data.rb
532
+ - lib/schematic/types/billing_credit_bundle_status.rb
533
+ - lib/schematic/types/billing_credit_bundle_type.rb
534
+ - lib/schematic/types/billing_credit_bundle_view.rb
535
+ - lib/schematic/types/billing_credit_burn_strategy.rb
536
+ - lib/schematic/types/billing_credit_expiry_type.rb
537
+ - lib/schematic/types/billing_credit_expiry_unit.rb
538
+ - lib/schematic/types/billing_credit_grant_reason.rb
539
+ - lib/schematic/types/billing_credit_grant_response_data.rb
540
+ - lib/schematic/types/billing_credit_grant_zeroed_out_reason.rb
541
+ - lib/schematic/types/billing_credit_ledger_response_data.rb
542
+ - lib/schematic/types/billing_credit_response_data.rb
543
+ - lib/schematic/types/billing_credit_rollover_policy.rb
544
+ - lib/schematic/types/billing_credit_view.rb
545
+ - lib/schematic/types/billing_customer_response_data.rb
546
+ - lib/schematic/types/billing_customer_subscription.rb
547
+ - lib/schematic/types/billing_customer_with_subscriptions_response_data.rb
548
+ - lib/schematic/types/billing_meter_response_data.rb
549
+ - lib/schematic/types/billing_plan_credit_grant_reset_cadence.rb
550
+ - lib/schematic/types/billing_plan_credit_grant_reset_start.rb
551
+ - lib/schematic/types/billing_plan_credit_grant_reset_type.rb
552
+ - lib/schematic/types/billing_plan_credit_grant_response_data.rb
553
+ - lib/schematic/types/billing_price_response_data.rb
554
+ - lib/schematic/types/billing_price_scheme.rb
555
+ - lib/schematic/types/billing_price_usage_type.rb
556
+ - lib/schematic/types/billing_price_view.rb
557
+ - lib/schematic/types/billing_product_detail_response_data.rb
558
+ - lib/schematic/types/billing_product_for_subscription_response_data.rb
559
+ - lib/schematic/types/billing_product_plan_response_data.rb
560
+ - lib/schematic/types/billing_product_price_interval.rb
561
+ - lib/schematic/types/billing_product_price_response_data.rb
562
+ - lib/schematic/types/billing_product_price_tier_response_data.rb
563
+ - lib/schematic/types/billing_product_pricing.rb
564
+ - lib/schematic/types/billing_product_response_data.rb
565
+ - lib/schematic/types/billing_provider_type.rb
566
+ - lib/schematic/types/billing_subscription_discount.rb
567
+ - lib/schematic/types/billing_subscription_discount_view.rb
568
+ - lib/schematic/types/billing_subscription_response_data.rb
569
+ - lib/schematic/types/billing_subscription_trial_end_setting.rb
570
+ - lib/schematic/types/billing_subscription_view.rb
571
+ - lib/schematic/types/billing_tiers_mode.rb
572
+ - lib/schematic/types/capture_raw_event.rb
573
+ - lib/schematic/types/capture_raw_event_batch.rb
574
+ - lib/schematic/types/change_subscription_internal_request_body.rb
575
+ - lib/schematic/types/change_subscription_request_body.rb
576
+ - lib/schematic/types/charge_type.rb
577
+ - lib/schematic/types/check_flag_request_body.rb
578
+ - lib/schematic/types/check_flag_response_data.rb
579
+ - lib/schematic/types/check_flags_bulk_response_data.rb
580
+ - lib/schematic/types/check_flags_response_data.rb
581
+ - lib/schematic/types/checkout_data_response_data.rb
582
+ - lib/schematic/types/checkout_settings_response_data.rb
583
+ - lib/schematic/types/checkout_subscription.rb
584
+ - lib/schematic/types/company_detail_response_data.rb
585
+ - lib/schematic/types/company_event_period_metrics_response_data.rb
586
+ - lib/schematic/types/company_ledger_response_data.rb
587
+ - lib/schematic/types/company_membership_detail_response_data.rb
588
+ - lib/schematic/types/company_membership_response_data.rb
589
+ - lib/schematic/types/company_override_note_response_data.rb
590
+ - lib/schematic/types/company_override_response_data.rb
591
+ - lib/schematic/types/company_plan_detail_response_data.rb
592
+ - lib/schematic/types/company_plan_invalid_reason.rb
593
+ - lib/schematic/types/company_plan_with_billing_sub_view.rb
594
+ - lib/schematic/types/company_response_data.rb
595
+ - lib/schematic/types/company_subscription_response_data.rb
596
+ - lib/schematic/types/compatible_plans.rb
597
+ - lib/schematic/types/compatible_plans_response_data.rb
598
+ - lib/schematic/types/component_capabilities.rb
599
+ - lib/schematic/types/component_checkout_settings.rb
600
+ - lib/schematic/types/component_display_settings.rb
601
+ - lib/schematic/types/component_entity_type.rb
602
+ - lib/schematic/types/component_hydrate_response_data.rb
603
+ - lib/schematic/types/component_preview_response_data.rb
604
+ - lib/schematic/types/component_response_data.rb
605
+ - lib/schematic/types/component_settings_response_data.rb
606
+ - lib/schematic/types/component_state.rb
607
+ - lib/schematic/types/condition.rb
608
+ - lib/schematic/types/condition_condition_type.rb
609
+ - lib/schematic/types/condition_group.rb
610
+ - lib/schematic/types/condition_group_response_data.rb
611
+ - lib/schematic/types/condition_group_view.rb
612
+ - lib/schematic/types/condition_metric_period.rb
613
+ - lib/schematic/types/condition_metric_period_month_reset.rb
614
+ - lib/schematic/types/condition_operator.rb
615
+ - lib/schematic/types/condition_response_data.rb
616
+ - lib/schematic/types/condition_view.rb
617
+ - lib/schematic/types/count_response.rb
618
+ - lib/schematic/types/coupon_request_body.rb
619
+ - lib/schematic/types/create_billing_plan_credit_grant_request_body.rb
620
+ - lib/schematic/types/create_billing_price_tier_request_body.rb
621
+ - lib/schematic/types/create_entitlement_in_bundle_request_body.rb
622
+ - lib/schematic/types/create_entitlement_in_bundle_request_body_metric_period.rb
623
+ - lib/schematic/types/create_entitlement_in_bundle_request_body_metric_period_month_reset.rb
624
+ - lib/schematic/types/create_entitlement_req_common.rb
625
+ - lib/schematic/types/create_entitlement_req_common_metric_period.rb
626
+ - lib/schematic/types/create_entitlement_req_common_metric_period_month_reset.rb
627
+ - lib/schematic/types/create_event_request_body.rb
628
+ - lib/schematic/types/create_flag_request_body.rb
629
+ - lib/schematic/types/create_or_update_condition_group_request_body.rb
630
+ - lib/schematic/types/create_or_update_condition_request_body.rb
631
+ - lib/schematic/types/create_or_update_condition_request_body_condition_type.rb
632
+ - lib/schematic/types/create_or_update_condition_request_body_metric_period.rb
633
+ - lib/schematic/types/create_or_update_condition_request_body_metric_period_month_reset.rb
634
+ - lib/schematic/types/create_or_update_condition_request_body_operator.rb
635
+ - lib/schematic/types/create_or_update_flag_request_body.rb
636
+ - lib/schematic/types/create_or_update_rule_request_body.rb
637
+ - lib/schematic/types/create_or_update_rule_request_body_rule_type.rb
638
+ - lib/schematic/types/create_plan_request_body.rb
639
+ - lib/schematic/types/create_price_tier_request_body.rb
640
+ - lib/schematic/types/credit_auto_topup_amount_type.rb
641
+ - lib/schematic/types/credit_bundle_currency_price.rb
642
+ - lib/schematic/types/credit_bundle_currency_price_request_body.rb
643
+ - lib/schematic/types/credit_bundle_currency_price_response_data.rb
644
+ - lib/schematic/types/credit_bundle_purchase_response_data.rb
645
+ - lib/schematic/types/credit_company_grant_view.rb
646
+ - lib/schematic/types/credit_currency_price_request_body.rb
647
+ - lib/schematic/types/credit_currency_price_response_data.rb
648
+ - lib/schematic/types/credit_event_ledger_response_data.rb
649
+ - lib/schematic/types/credit_event_type.rb
650
+ - lib/schematic/types/credit_grant_detail.rb
651
+ - lib/schematic/types/credit_grant_expiry_request_body.rb
652
+ - lib/schematic/types/credit_grant_sort_order.rb
653
+ - lib/schematic/types/credit_ledger_enriched_entry_response_data.rb
654
+ - lib/schematic/types/credit_ledger_period.rb
655
+ - lib/schematic/types/credit_transfer_response_data.rb
656
+ - lib/schematic/types/credit_transfer_view.rb
657
+ - lib/schematic/types/credit_trigger_config.rb
658
+ - lib/schematic/types/credit_usage.rb
659
+ - lib/schematic/types/credit_usage_aggregation.rb
660
+ - lib/schematic/types/credits_auto_topup_company_summary.rb
661
+ - lib/schematic/types/credits_auto_topup_credit_summary.rb
662
+ - lib/schematic/types/credits_auto_topup_hard_failure.rb
663
+ - lib/schematic/types/credits_auto_topup_retry_failure.rb
664
+ - lib/schematic/types/currency_price_request_body.rb
665
+ - lib/schematic/types/custom_plan_config.rb
666
+ - lib/schematic/types/custom_plan_view_config_response_data.rb
667
+ - lib/schematic/types/data_event_payload.rb
668
+ - lib/schematic/types/data_export_output_file_type.rb
669
+ - lib/schematic/types/data_export_response_data.rb
670
+ - lib/schematic/types/data_export_status.rb
671
+ - lib/schematic/types/data_export_type.rb
672
+ - lib/schematic/types/datastream_company_plan.rb
673
+ - lib/schematic/types/delete_billing_plan_credit_grant_request_body.rb
674
+ - lib/schematic/types/delete_response.rb
675
+ - lib/schematic/types/duplicate_plan_entitlements_response_response_data.rb
676
+ - lib/schematic/types/entitlement_currency_prices_response_data.rb
677
+ - lib/schematic/types/entitlement_price_behavior.rb
678
+ - lib/schematic/types/entitlement_trigger_config.rb
679
+ - lib/schematic/types/entitlement_type.rb
680
+ - lib/schematic/types/entitlement_value_type.rb
681
+ - lib/schematic/types/entitlements_in_plan.rb
682
+ - lib/schematic/types/entity_key_definition_response_data.rb
683
+ - lib/schematic/types/entity_key_detail_response_data.rb
684
+ - lib/schematic/types/entity_key_response_data.rb
685
+ - lib/schematic/types/entity_trait_definition_response_data.rb
686
+ - lib/schematic/types/entity_trait_detail_response_data.rb
687
+ - lib/schematic/types/entity_trait_response_data.rb
688
+ - lib/schematic/types/entity_trait_value.rb
689
+ - lib/schematic/types/entity_type.rb
690
+ - lib/schematic/types/environment_detail_response_data.rb
691
+ - lib/schematic/types/environment_response_data.rb
692
+ - lib/schematic/types/environment_type.rb
693
+ - lib/schematic/types/event_body.rb
694
+ - lib/schematic/types/event_body_flag_check.rb
695
+ - lib/schematic/types/event_body_identify.rb
696
+ - lib/schematic/types/event_body_identify_company.rb
697
+ - lib/schematic/types/event_body_track.rb
698
+ - lib/schematic/types/event_detail_response_data.rb
699
+ - lib/schematic/types/event_response_data.rb
700
+ - lib/schematic/types/event_status.rb
701
+ - lib/schematic/types/event_summary_response_data.rb
702
+ - lib/schematic/types/event_type.rb
703
+ - lib/schematic/types/feature_company_response_data.rb
704
+ - lib/schematic/types/feature_company_user_response_data.rb
705
+ - lib/schematic/types/feature_detail_response_data.rb
706
+ - lib/schematic/types/feature_entitlement.rb
707
+ - lib/schematic/types/feature_entitlement_metric_period.rb
708
+ - lib/schematic/types/feature_entitlement_month_reset.rb
709
+ - lib/schematic/types/feature_ledger_response_data.rb
710
+ - lib/schematic/types/feature_lifecycle_phase.rb
711
+ - lib/schematic/types/feature_response_data.rb
712
+ - lib/schematic/types/feature_type.rb
713
+ - lib/schematic/types/feature_usage_detail_response_data.rb
714
+ - lib/schematic/types/feature_usage_legacy_response_data.rb
715
+ - lib/schematic/types/feature_usage_response_data.rb
716
+ - lib/schematic/types/feature_usage_time_series_response_data.rb
717
+ - lib/schematic/types/feature_view.rb
718
+ - lib/schematic/types/flag_detail_response_data.rb
719
+ - lib/schematic/types/flag_response_data.rb
720
+ - lib/schematic/types/flag_type.rb
721
+ - lib/schematic/types/flag_view.rb
722
+ - lib/schematic/types/generic_preview_object.rb
723
+ - lib/schematic/types/invoice_request_body.rb
724
+ - lib/schematic/types/invoice_response_data.rb
725
+ - lib/schematic/types/invoice_status.rb
726
+ - lib/schematic/types/issue_temporary_access_token_response_data.rb
727
+ - lib/schematic/types/keys_request_body.rb
728
+ - lib/schematic/types/limit_time_series_point_response_data.rb
729
+ - lib/schematic/types/manage_plan_preview_response_response_data.rb
730
+ - lib/schematic/types/manage_plan_request.rb
731
+ - lib/schematic/types/manage_plan_response_response_data.rb
732
+ - lib/schematic/types/meter_request_body.rb
733
+ - lib/schematic/types/ordered_plans_in_group.rb
734
+ - lib/schematic/types/payment_method_request_body.rb
735
+ - lib/schematic/types/payment_method_response_data.rb
736
+ - lib/schematic/types/plan_bundle_action.rb
737
+ - lib/schematic/types/plan_bundle_credit_grant_request_body.rb
738
+ - lib/schematic/types/plan_bundle_entitlement_request_body.rb
739
+ - lib/schematic/types/plan_bundle_response_data.rb
740
+ - lib/schematic/types/plan_change_action.rb
741
+ - lib/schematic/types/plan_change_base_plan_action.rb
742
+ - lib/schematic/types/plan_change_response_data.rb
743
+ - lib/schematic/types/plan_change_subscription_action.rb
744
+ - lib/schematic/types/plan_controlled_by_type.rb
745
+ - lib/schematic/types/plan_credit_grant_view.rb
746
+ - lib/schematic/types/plan_currency_price_request_body.rb
747
+ - lib/schematic/types/plan_currency_prices_response_data.rb
748
+ - lib/schematic/types/plan_detail_response_data.rb
749
+ - lib/schematic/types/plan_entitlement_response_data.rb
750
+ - lib/schematic/types/plan_entitlements_order.rb
751
+ - lib/schematic/types/plan_group_bundle_order.rb
752
+ - lib/schematic/types/plan_group_detail_response_data.rb
753
+ - lib/schematic/types/plan_group_plan_detail_response_data.rb
754
+ - lib/schematic/types/plan_group_plan_entitlements_order.rb
755
+ - lib/schematic/types/plan_group_response_data.rb
756
+ - lib/schematic/types/plan_issue_response_data.rb
757
+ - lib/schematic/types/plan_response_data.rb
758
+ - lib/schematic/types/plan_selection.rb
759
+ - lib/schematic/types/plan_snapshot_view.rb
760
+ - lib/schematic/types/plan_trait_response_data.rb
761
+ - lib/schematic/types/plan_type.rb
762
+ - lib/schematic/types/plan_version_company_migration_response_data.rb
763
+ - lib/schematic/types/plan_version_company_migration_status.rb
764
+ - lib/schematic/types/plan_version_migration_response_data.rb
765
+ - lib/schematic/types/plan_version_migration_status.rb
766
+ - lib/schematic/types/plan_version_migration_strategy.rb
767
+ - lib/schematic/types/plan_version_response_data.rb
768
+ - lib/schematic/types/plan_version_snapshot_view.rb
769
+ - lib/schematic/types/plan_version_status.rb
770
+ - lib/schematic/types/plan_view_public_response_data.rb
771
+ - lib/schematic/types/preview_object.rb
772
+ - lib/schematic/types/preview_object_response_data.rb
773
+ - lib/schematic/types/preview_subscription_change_response_data.rb
774
+ - lib/schematic/types/preview_subscription_finance_response_data.rb
775
+ - lib/schematic/types/preview_subscription_upcoming_invoice_line_items.rb
776
+ - lib/schematic/types/proration_behavior.rb
777
+ - lib/schematic/types/public_plans_response_data.rb
778
+ - lib/schematic/types/quickstart_resp.rb
779
+ - lib/schematic/types/raw_event_batch_response_data.rb
780
+ - lib/schematic/types/raw_event_response_data.rb
781
+ - lib/schematic/types/rule.rb
782
+ - lib/schematic/types/rule_condition_detail_response_data.rb
783
+ - lib/schematic/types/rule_condition_group_detail_response_data.rb
784
+ - lib/schematic/types/rule_condition_group_response_data.rb
785
+ - lib/schematic/types/rule_condition_response_data.rb
786
+ - lib/schematic/types/rule_detail_response_data.rb
787
+ - lib/schematic/types/rule_response_data.rb
788
+ - lib/schematic/types/rule_rule_type.rb
789
+ - lib/schematic/types/rule_view.rb
790
+ - lib/schematic/types/rules_detail_response_data.rb
791
+ - lib/schematic/types/rules_engine_schema_version.rb
792
+ - lib/schematic/types/rulesengine_check_flag_result.rb
793
+ - lib/schematic/types/rulesengine_check_flag_result_feature_usage_period.rb
794
+ - lib/schematic/types/rulesengine_check_flag_result_rule_type.rb
795
+ - lib/schematic/types/rulesengine_company.rb
796
+ - lib/schematic/types/rulesengine_company_metric.rb
797
+ - lib/schematic/types/rulesengine_company_metric_month_reset.rb
798
+ - lib/schematic/types/rulesengine_company_metric_period.rb
799
+ - lib/schematic/types/rulesengine_condition.rb
800
+ - lib/schematic/types/rulesengine_condition_condition_type.rb
801
+ - lib/schematic/types/rulesengine_condition_group.rb
802
+ - lib/schematic/types/rulesengine_condition_metric_period.rb
803
+ - lib/schematic/types/rulesengine_condition_metric_period_month_reset.rb
804
+ - lib/schematic/types/rulesengine_condition_operator.rb
805
+ - lib/schematic/types/rulesengine_entitlement_value_type.rb
806
+ - lib/schematic/types/rulesengine_entity_type.rb
807
+ - lib/schematic/types/rulesengine_feature_entitlement.rb
808
+ - lib/schematic/types/rulesengine_feature_entitlement_metric_period.rb
809
+ - lib/schematic/types/rulesengine_feature_entitlement_month_reset.rb
810
+ - lib/schematic/types/rulesengine_flag.rb
811
+ - lib/schematic/types/rulesengine_rule.rb
812
+ - lib/schematic/types/rulesengine_rule_rule_type.rb
813
+ - lib/schematic/types/rulesengine_subscription.rb
814
+ - lib/schematic/types/rulesengine_trait.rb
815
+ - lib/schematic/types/rulesengine_trait_definition.rb
816
+ - lib/schematic/types/rulesengine_trait_definition_comparable_type.rb
817
+ - lib/schematic/types/rulesengine_user.rb
818
+ - lib/schematic/types/scheduled_checkout_response_data.rb
819
+ - lib/schematic/types/scheduled_checkout_status.rb
820
+ - lib/schematic/types/scheduled_downgrade_config_behavior.rb
821
+ - lib/schematic/types/scheduled_downgrade_response_data.rb
822
+ - lib/schematic/types/segment_status_resp.rb
823
+ - lib/schematic/types/skipped_entitlement_error_response_data.rb
824
+ - lib/schematic/types/skipped_entitlement_response_data.rb
825
+ - lib/schematic/types/sort_direction.rb
826
+ - lib/schematic/types/stripe_embed_info.rb
827
+ - lib/schematic/types/subscription_status.rb
828
+ - lib/schematic/types/subscription_trait_update.rb
829
+ - lib/schematic/types/subscription_type.rb
830
+ - lib/schematic/types/temporary_access_token_resource_type.rb
831
+ - lib/schematic/types/temporary_access_token_response_data.rb
832
+ - lib/schematic/types/time_series_granularity.rb
833
+ - lib/schematic/types/trait_definition.rb
834
+ - lib/schematic/types/trait_definition_comparable_type.rb
835
+ - lib/schematic/types/trait_type.rb
836
+ - lib/schematic/types/update_add_on_request_body.rb
837
+ - lib/schematic/types/update_billing_plan_credit_grant_request_body.rb
838
+ - lib/schematic/types/update_credit_bundle_request_body.rb
839
+ - lib/schematic/types/update_entitlement_req_common.rb
840
+ - lib/schematic/types/update_entitlement_req_common_metric_period.rb
841
+ - lib/schematic/types/update_entitlement_req_common_metric_period_month_reset.rb
842
+ - lib/schematic/types/update_pay_in_advance_request_body.rb
843
+ - lib/schematic/types/update_plan_request_body.rb
844
+ - lib/schematic/types/update_plan_trait_trait_request_body.rb
845
+ - lib/schematic/types/update_rule_request_body.rb
846
+ - lib/schematic/types/upsert_billing_product_request_body.rb
847
+ - lib/schematic/types/upsert_company_request_body.rb
848
+ - lib/schematic/types/upsert_trait_request_body.rb
849
+ - lib/schematic/types/upsert_user_request_body.rb
850
+ - lib/schematic/types/upsert_user_sub_request_body.rb
851
+ - lib/schematic/types/usage_based_entitlement_request_body.rb
852
+ - lib/schematic/types/usage_based_entitlement_response_data.rb
853
+ - lib/schematic/types/usage_time_series_point_response_data.rb
854
+ - lib/schematic/types/user_detail_response_data.rb
855
+ - lib/schematic/types/user_response_data.rb
856
+ - lib/schematic/types/web_feature_usage_webhook_output.rb
857
+ - lib/schematic/types/web_scheduled_downgrade_webhook_output.rb
858
+ - lib/schematic/types/webhook_event_detail_response_data.rb
859
+ - lib/schematic/types/webhook_event_response_data.rb
860
+ - lib/schematic/types/webhook_event_status.rb
861
+ - lib/schematic/types/webhook_request_type.rb
862
+ - lib/schematic/types/webhook_response_data.rb
863
+ - lib/schematic/types/webhook_status.rb
864
+ - lib/schematic/types/who_am_i_response_data.rb
865
+ - lib/schematic/version.rb
866
+ - lib/schematic/wasm/rulesengine.wasm
867
+ - lib/schematic/webhook_verification.rb
868
+ - lib/schematic/webhooks/client.rb
869
+ - lib/schematic/webhooks/types/count_webhook_events_params.rb
870
+ - lib/schematic/webhooks/types/count_webhook_events_request.rb
871
+ - lib/schematic/webhooks/types/count_webhook_events_response.rb
872
+ - lib/schematic/webhooks/types/count_webhooks_params.rb
873
+ - lib/schematic/webhooks/types/count_webhooks_request.rb
874
+ - lib/schematic/webhooks/types/count_webhooks_response.rb
875
+ - lib/schematic/webhooks/types/create_webhook_request_body.rb
876
+ - lib/schematic/webhooks/types/create_webhook_response.rb
877
+ - lib/schematic/webhooks/types/delete_webhook_response.rb
878
+ - lib/schematic/webhooks/types/get_webhook_event_response.rb
879
+ - lib/schematic/webhooks/types/get_webhook_response.rb
880
+ - lib/schematic/webhooks/types/list_webhook_events_params.rb
881
+ - lib/schematic/webhooks/types/list_webhook_events_request.rb
882
+ - lib/schematic/webhooks/types/list_webhook_events_response.rb
883
+ - lib/schematic/webhooks/types/list_webhooks_params.rb
884
+ - lib/schematic/webhooks/types/list_webhooks_request.rb
885
+ - lib/schematic/webhooks/types/list_webhooks_response.rb
886
+ - lib/schematic/webhooks/types/update_webhook_request_body.rb
887
+ - lib/schematic/webhooks/types/update_webhook_response.rb
888
+ - lib/schematichq.rb
889
+ - reference.md
890
+ - scripts/download-wasm.sh
891
+ - scripts/webhook_test_server.rb
892
+ - testapp/Gemfile
893
+ - testapp/app.rb
894
+ homepage: https://github.com/SchematicHQ/schematic-ruby
895
+ licenses: []
896
+ metadata:
897
+ rubygems_mfa_required: 'true'
898
+ post_install_message:
899
+ rdoc_options: []
900
+ require_paths:
901
+ - lib
902
+ required_ruby_version: !ruby/object:Gem::Requirement
903
+ requirements:
904
+ - - ">="
905
+ - !ruby/object:Gem::Version
906
+ version: 3.3.0
907
+ required_rubygems_version: !ruby/object:Gem::Requirement
908
+ requirements:
909
+ - - ">="
910
+ - !ruby/object:Gem::Version
911
+ version: '0'
912
+ requirements: []
913
+ rubygems_version: 3.5.22
914
+ signing_key:
915
+ specification_version: 4
916
+ summary: Ruby client library for the Schematic API
917
+ test_files: []