schematichq 1.4.3 → 1.4.5
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.
- checksums.yaml +4 -4
- data/.fern/metadata.json +2 -2
- data/.fern/replay.lock +501 -2
- data/WASM_VERSION +1 -1
- data/lib/schematic/accounts/client.rb +44 -0
- data/lib/schematic/accounts/types/count_account_members_params.rb +15 -0
- data/lib/schematic/accounts/types/count_account_members_request.rb +14 -0
- data/lib/schematic/accounts/types/count_account_members_response.rb +12 -0
- data/lib/schematic/client.rb +1 -1
- data/lib/schematic/credits/client.rb +0 -104
- data/lib/schematic/integrationsapi/client.rb +99 -3
- data/lib/schematic/integrationsapi/types/assume_stripe_installed_response.rb +12 -0
- data/lib/schematic/integrationsapi/types/install_integration_response.rb +12 -0
- data/lib/schematic/integrationsapi/types/install_stripe_response.rb +12 -0
- data/lib/schematic/integrationsapi/types/{load_sample_data_set_v_2_response.rb → load_sample_data_set_response.rb} +1 -1
- data/lib/schematic/plangroups/types/create_plan_group_request_body.rb +4 -0
- data/lib/schematic/plangroups/types/update_plan_group_request_body.rb +4 -0
- data/lib/schematic/plans/types/publish_plan_version_request_body.rb +0 -1
- data/lib/schematic/plans/types/retry_custom_plan_billing_request_body.rb +0 -1
- data/lib/schematic/types/account_member_response_data.rb +2 -0
- data/lib/schematic/types/billing_credit_grant_reason.rb +1 -0
- data/lib/schematic/types/billing_credit_grant_response_data.rb +3 -0
- data/lib/schematic/types/billing_credit_grant_zeroed_out_reason.rb +1 -0
- data/lib/schematic/types/billing_credit_ledger_authority.rb +13 -0
- data/lib/schematic/types/billing_credit_view.rb +1 -0
- data/lib/schematic/types/billing_plan_credit_grant_response_data.rb +1 -0
- data/lib/schematic/types/billing_provider_type.rb +1 -0
- data/lib/schematic/types/change_subscription_internal_request_body.rb +2 -0
- data/lib/schematic/types/change_subscription_request_body.rb +2 -0
- data/lib/schematic/types/checkout_data_response_data.rb +1 -0
- data/lib/schematic/types/checkout_field_input.rb +14 -0
- data/lib/schematic/types/checkout_field_response_data.rb +18 -0
- data/lib/schematic/types/checkout_field_value.rb +10 -0
- data/lib/schematic/types/checkout_field_with_value.rb +15 -0
- data/lib/schematic/types/checkout_settings_response_data.rb +3 -0
- data/lib/schematic/types/company_credit_balance_response_data.rb +2 -0
- data/lib/schematic/types/company_plan_credit_grant_view.rb +1 -0
- data/lib/schematic/types/component_hydrate_response_data.rb +1 -0
- data/lib/schematic/types/component_preview_response_data.rb +1 -0
- data/lib/schematic/types/create_billing_plan_credit_grant_request_body.rb +1 -0
- data/lib/schematic/types/credit_company_grant_view.rb +3 -0
- data/lib/schematic/types/credit_event_ledger_response_data.rb +1 -0
- data/lib/schematic/types/credit_usage_reason.rb +15 -0
- data/lib/schematic/types/event_detail_response_data.rb +1 -0
- data/lib/schematic/types/event_response_data.rb +1 -0
- data/lib/schematic/types/feature_entitlement.rb +2 -0
- data/lib/schematic/types/install_integration_request_body.rb +14 -0
- data/lib/schematic/types/integration_config.rb +1 -0
- data/lib/schematic/types/integration_install_config.rb +18 -0
- data/lib/schematic/types/integration_install_response_data.rb +11 -0
- data/lib/schematic/types/integration_type.rb +1 -0
- data/lib/schematic/types/manage_plan_request.rb +1 -0
- data/lib/schematic/types/metronome_integration_config.rb +7 -0
- data/lib/schematic/types/migration_error_code.rb +1 -0
- data/lib/schematic/types/plan_change_response_data.rb +1 -0
- data/lib/schematic/types/plan_credit_grant_view.rb +1 -0
- data/lib/schematic/types/plan_group_detail_response_data.rb +1 -0
- data/lib/schematic/types/preview_subscription_change_response_data.rb +3 -0
- data/lib/schematic/types/rulesengine_feature_entitlement.rb +2 -0
- data/lib/schematic/types/update_billing_plan_credit_grant_request_body.rb +1 -0
- data/lib/schematic/version.rb +1 -1
- data/lib/schematic/wasm/rulesengine.wasm +0 -0
- data/lib/schematic.rb +23 -15
- data/reference.md +386 -293
- metadata +19 -11
- data/lib/schematic/credits/types/count_credit_ledger_params.rb +0 -19
- data/lib/schematic/credits/types/count_credit_ledger_request.rb +0 -18
- data/lib/schematic/credits/types/count_credit_ledger_response.rb +0 -12
- data/lib/schematic/credits/types/get_enriched_credit_ledger_params.rb +0 -19
- data/lib/schematic/credits/types/get_enriched_credit_ledger_request.rb +0 -18
- data/lib/schematic/credits/types/get_enriched_credit_ledger_response.rb +0 -12
- data/lib/schematic/types/credit_ledger_enriched_entry_response_data.rb +0 -30
- data/lib/schematic/types/credit_ledger_period.rb +0 -14
|
@@ -14,6 +14,7 @@ module Schematic
|
|
|
14
14
|
field :feature_ids, -> { Internal::Types::Array[String] }, optional: false, nullable: false
|
|
15
15
|
field :id, -> { String }, optional: false, nullable: false
|
|
16
16
|
field :idempotency_key, -> { String }, optional: true, nullable: false
|
|
17
|
+
field :lease_id, -> { String }, optional: true, nullable: false
|
|
17
18
|
field :loaded_at, -> { String }, optional: true, nullable: false
|
|
18
19
|
field :processed_at, -> { String }, optional: true, nullable: false
|
|
19
20
|
field :quantity, -> { Integer }, optional: false, nullable: false
|
|
@@ -6,6 +6,8 @@ module Schematic
|
|
|
6
6
|
field :allocation, -> { Integer }, optional: true, nullable: false
|
|
7
7
|
field :credit_id, -> { String }, optional: true, nullable: false
|
|
8
8
|
field :credit_remaining, -> { Integer }, optional: true, nullable: false
|
|
9
|
+
field :credit_reserved, -> { Integer }, optional: true, nullable: false
|
|
10
|
+
field :credit_settled, -> { Integer }, optional: true, nullable: false
|
|
9
11
|
field :credit_total, -> { Integer }, optional: true, nullable: false
|
|
10
12
|
field :credit_used, -> { Integer }, optional: true, nullable: false
|
|
11
13
|
field :event_name, -> { String }, optional: true, nullable: false
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Schematic
|
|
4
|
+
module Types
|
|
5
|
+
class InstallIntegrationRequestBody < Internal::Types::Model
|
|
6
|
+
field :company_matching_criteria, -> { Schematic::Types::CompanyMatchingCriteria }, optional: true, nullable: false
|
|
7
|
+
field :company_matching_field, -> { String }, optional: true, nullable: false
|
|
8
|
+
field :config, -> { Internal::Types::Hash[String, Object] }, optional: true, nullable: false
|
|
9
|
+
field :is_sandbox, -> { Internal::Types::Boolean }, optional: true, nullable: false
|
|
10
|
+
field :live_mode, -> { Internal::Types::Boolean }, optional: true, nullable: false
|
|
11
|
+
field :type, -> { Schematic::Types::IntegrationType }, optional: false, nullable: false
|
|
12
|
+
end
|
|
13
|
+
end
|
|
14
|
+
end
|
|
@@ -8,6 +8,7 @@ module Schematic
|
|
|
8
8
|
discriminant :type
|
|
9
9
|
|
|
10
10
|
member -> { Schematic::Types::ClerkIntegrationConfig }, key: "CLERK"
|
|
11
|
+
member -> { Schematic::Types::MetronomeIntegrationConfig }, key: "METRONOME"
|
|
11
12
|
member -> { Schematic::Types::OrbIntegrationConfig }, key: "ORB"
|
|
12
13
|
member -> { Schematic::Types::StripeIntegrationConfig }, key: "STRIPE"
|
|
13
14
|
member -> { Schematic::Types::WorkOsIntegrationConfig }, key: "WORKOS"
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Schematic
|
|
4
|
+
module Types
|
|
5
|
+
class IntegrationInstallConfig < Internal::Types::Model
|
|
6
|
+
field :company_matching_criteria, -> { Schematic::Types::CompanyMatchingCriteria }, optional: true, nullable: false
|
|
7
|
+
field :company_matching_field, -> { String }, optional: true, nullable: false
|
|
8
|
+
field :config, -> { Schematic::Types::IntegrationConfig }, optional: true, nullable: false
|
|
9
|
+
field :created_at, -> { String }, optional: false, nullable: false
|
|
10
|
+
field :id, -> { String }, optional: false, nullable: false
|
|
11
|
+
field :integration_id, -> { String }, optional: false, nullable: false
|
|
12
|
+
field :is_app_install, -> { Internal::Types::Boolean }, optional: false, nullable: false
|
|
13
|
+
field :is_connect_install, -> { Internal::Types::Boolean }, optional: false, nullable: false
|
|
14
|
+
field :live_mode, -> { Internal::Types::Boolean }, optional: false, nullable: false
|
|
15
|
+
field :updated_at, -> { String }, optional: false, nullable: false
|
|
16
|
+
end
|
|
17
|
+
end
|
|
18
|
+
end
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Schematic
|
|
4
|
+
module Types
|
|
5
|
+
class IntegrationInstallResponseData < Internal::Types::Model
|
|
6
|
+
field :capabilities, -> { Schematic::Types::IntegrationCapabilities }, optional: false, nullable: false
|
|
7
|
+
field :config, -> { Schematic::Types::IntegrationInstallConfig }, optional: false, nullable: false
|
|
8
|
+
field :integration, -> { Schematic::Types::IntegrationResponseData }, optional: false, nullable: false
|
|
9
|
+
end
|
|
10
|
+
end
|
|
11
|
+
end
|
|
@@ -11,6 +11,7 @@ module Schematic
|
|
|
11
11
|
field :company_id, -> { String }, optional: false, nullable: false
|
|
12
12
|
field :coupon_external_id, -> { String }, optional: true, nullable: false
|
|
13
13
|
field :credit_bundles, -> { Internal::Types::Array[Schematic::Types::UpdateCreditBundleRequestBody] }, optional: false, nullable: false
|
|
14
|
+
field :custom_field_values, -> { Internal::Types::Array[Schematic::Types::CheckoutFieldValue] }, optional: false, nullable: false
|
|
14
15
|
field :pay_in_advance_entitlements, -> { Internal::Types::Array[Schematic::Types::UpdatePayInAdvanceRequestBody] }, optional: false, nullable: false
|
|
15
16
|
field :payment_method_external_id, -> { String }, optional: true, nullable: false
|
|
16
17
|
field :promo_code, -> { String }, optional: true, nullable: false
|
|
@@ -9,6 +9,7 @@ module Schematic
|
|
|
9
9
|
MULTIPLE_SUBSCRIPTIONS = "multiple_subscriptions"
|
|
10
10
|
NO_PRICE_FOR_INTERVAL = "no_price_for_interval"
|
|
11
11
|
NOT_ON_ORIGIN_VERSION = "not_on_origin_version"
|
|
12
|
+
OPERATION_ITEM_NOT_FOUND = "operation_item_not_found"
|
|
12
13
|
PERMANENT_CONFIG = "permanent_config"
|
|
13
14
|
PERMANENT_DECLINE = "permanent_decline"
|
|
14
15
|
TRANSIENT_DECLINE = "transient_decline"
|
|
@@ -17,6 +17,7 @@ module Schematic
|
|
|
17
17
|
field :created_at, -> { String }, optional: false, nullable: false
|
|
18
18
|
field :environment_id, -> { String }, optional: false, nullable: false
|
|
19
19
|
field :id, -> { String }, optional: false, nullable: false
|
|
20
|
+
field :is_version_upgrade, -> { Internal::Types::Boolean }, optional: false, nullable: false
|
|
20
21
|
field :previous_base_plan, -> { Schematic::Types::PlanSnapshotView }, optional: true, nullable: false
|
|
21
22
|
field :previous_base_plan_version, -> { Schematic::Types::PlanVersionSnapshotView }, optional: true, nullable: false
|
|
22
23
|
field :request_id, -> { String }, optional: true, nullable: false
|
|
@@ -30,6 +30,7 @@ module Schematic
|
|
|
30
30
|
field :reset_cadence, -> { Schematic::Types::BillingPlanCreditGrantResetCadence }, optional: true, nullable: false
|
|
31
31
|
field :reset_start, -> { Schematic::Types::BillingPlanCreditGrantResetStart }, optional: true, nullable: false
|
|
32
32
|
field :reset_type, -> { Schematic::Types::BillingPlanCreditGrantResetType }, optional: false, nullable: false
|
|
33
|
+
field :rollover_percentage, -> { Integer }, optional: false, nullable: false
|
|
33
34
|
field :singular_name, -> { String }, optional: true, nullable: false
|
|
34
35
|
field :updated_at, -> { String }, optional: false, nullable: false
|
|
35
36
|
end
|
|
@@ -6,6 +6,7 @@ module Schematic
|
|
|
6
6
|
field :add_ons, -> { Internal::Types::Array[Schematic::Types::PlanGroupPlanDetailResponseData] }, optional: false, nullable: false
|
|
7
7
|
field :checkout_settings, -> { Schematic::Types::CheckoutSettingsResponseData }, optional: false, nullable: false
|
|
8
8
|
field :component_settings, -> { Schematic::Types::ComponentSettingsResponseData }, optional: false, nullable: false
|
|
9
|
+
field :custom_checkout_fields, -> { Internal::Types::Array[Schematic::Types::CheckoutFieldResponseData] }, optional: false, nullable: false
|
|
9
10
|
field :custom_plan_config, -> { Schematic::Types::CustomPlanViewConfigResponseData }, optional: true, nullable: false
|
|
10
11
|
field :custom_plan_id, -> { String }, optional: true, nullable: false
|
|
11
12
|
field :default_plan, -> { Schematic::Types::PlanGroupPlanDetailResponseData }, optional: true, nullable: false
|
|
@@ -8,6 +8,9 @@ module Schematic
|
|
|
8
8
|
field :finance, -> { Schematic::Types::PreviewSubscriptionFinanceResponseData }, optional: true, nullable: false
|
|
9
9
|
field :is_scheduled_downgrade, -> { Internal::Types::Boolean }, optional: false, nullable: false
|
|
10
10
|
field :new_charges, -> { Integer }, optional: false, nullable: false
|
|
11
|
+
field :opt_in_required, -> { Internal::Types::Boolean }, optional: false, nullable: false
|
|
12
|
+
field :opt_in_text, -> { String }, optional: true, nullable: false
|
|
13
|
+
field :opt_in_title, -> { String }, optional: true, nullable: false
|
|
11
14
|
field :payment_method_required, -> { Internal::Types::Boolean }, optional: false, nullable: false
|
|
12
15
|
field :percent_off, -> { Integer }, optional: false, nullable: false
|
|
13
16
|
field :period_start, -> { String }, optional: false, nullable: false
|
|
@@ -6,6 +6,8 @@ module Schematic
|
|
|
6
6
|
field :allocation, -> { Integer }, optional: true, nullable: false
|
|
7
7
|
field :credit_id, -> { String }, optional: true, nullable: false
|
|
8
8
|
field :credit_remaining, -> { Integer }, optional: true, nullable: false
|
|
9
|
+
field :credit_reserved, -> { Integer }, optional: true, nullable: false
|
|
10
|
+
field :credit_settled, -> { Integer }, optional: true, nullable: false
|
|
9
11
|
field :credit_total, -> { Integer }, optional: true, nullable: false
|
|
10
12
|
field :credit_used, -> { Integer }, optional: true, nullable: false
|
|
11
13
|
field :event_name, -> { String }, optional: true, nullable: false
|
|
@@ -20,6 +20,7 @@ module Schematic
|
|
|
20
20
|
field :reset_cadence, -> { Schematic::Types::BillingPlanCreditGrantResetCadence }, optional: false, nullable: false
|
|
21
21
|
field :reset_start, -> { Schematic::Types::BillingPlanCreditGrantResetStart }, optional: false, nullable: false
|
|
22
22
|
field :reset_type, -> { Schematic::Types::BillingPlanCreditGrantResetType }, optional: true, nullable: false
|
|
23
|
+
field :rollover_percentage, -> { Integer }, optional: true, nullable: false
|
|
23
24
|
end
|
|
24
25
|
end
|
|
25
26
|
end
|
data/lib/schematic/version.rb
CHANGED
|
Binary file
|
data/lib/schematic.rb
CHANGED
|
@@ -41,6 +41,9 @@ require_relative "schematic/types/account_member_role"
|
|
|
41
41
|
require_relative "schematic/types/account_member_response_data"
|
|
42
42
|
require_relative "schematic/accounts/types/list_account_members_response"
|
|
43
43
|
require_relative "schematic/accounts/types/get_account_member_response"
|
|
44
|
+
require_relative "schematic/accounts/types/count_account_members_params"
|
|
45
|
+
require_relative "schematic/types/count_response"
|
|
46
|
+
require_relative "schematic/accounts/types/count_account_members_response"
|
|
44
47
|
require_relative "schematic/accounts/types/list_api_keys_params"
|
|
45
48
|
require_relative "schematic/types/integration_state"
|
|
46
49
|
require_relative "schematic/types/integration_type"
|
|
@@ -57,7 +60,6 @@ require_relative "schematic/accounts/types/update_api_key_response"
|
|
|
57
60
|
require_relative "schematic/types/delete_response"
|
|
58
61
|
require_relative "schematic/accounts/types/delete_api_key_response"
|
|
59
62
|
require_relative "schematic/accounts/types/count_api_keys_params"
|
|
60
|
-
require_relative "schematic/types/count_response"
|
|
61
63
|
require_relative "schematic/accounts/types/count_api_keys_response"
|
|
62
64
|
require_relative "schematic/types/actor_type"
|
|
63
65
|
require_relative "schematic/accounts/types/list_audit_logs_params"
|
|
@@ -179,15 +181,6 @@ require_relative "schematic/types/credit_lease_response_data"
|
|
|
179
181
|
require_relative "schematic/credits/types/acquire_credit_lease_response"
|
|
180
182
|
require_relative "schematic/credits/types/extend_credit_lease_response"
|
|
181
183
|
require_relative "schematic/credits/types/release_credit_lease_response"
|
|
182
|
-
require_relative "schematic/types/credit_ledger_period"
|
|
183
|
-
require_relative "schematic/credits/types/get_enriched_credit_ledger_params"
|
|
184
|
-
require_relative "schematic/types/billing_credit_ledger_response_data"
|
|
185
|
-
require_relative "schematic/types/company_ledger_response_data"
|
|
186
|
-
require_relative "schematic/types/feature_ledger_response_data"
|
|
187
|
-
require_relative "schematic/types/credit_ledger_enriched_entry_response_data"
|
|
188
|
-
require_relative "schematic/credits/types/get_enriched_credit_ledger_response"
|
|
189
|
-
require_relative "schematic/credits/types/count_credit_ledger_params"
|
|
190
|
-
require_relative "schematic/credits/types/count_credit_ledger_response"
|
|
191
184
|
require_relative "schematic/credits/types/list_billing_plan_credit_grants_params"
|
|
192
185
|
require_relative "schematic/types/billing_plan_credit_grant_reset_start"
|
|
193
186
|
require_relative "schematic/types/billing_plan_credit_grant_reset_type"
|
|
@@ -203,12 +196,17 @@ require_relative "schematic/credits/types/count_billing_plan_credit_grants_param
|
|
|
203
196
|
require_relative "schematic/credits/types/count_billing_plan_credit_grants_response"
|
|
204
197
|
require_relative "schematic/types/credit_event_type"
|
|
205
198
|
require_relative "schematic/credits/types/list_credit_event_ledger_params"
|
|
199
|
+
require_relative "schematic/types/billing_credit_ledger_response_data"
|
|
200
|
+
require_relative "schematic/types/company_ledger_response_data"
|
|
201
|
+
require_relative "schematic/types/credit_usage_reason"
|
|
202
|
+
require_relative "schematic/types/feature_ledger_response_data"
|
|
206
203
|
require_relative "schematic/types/credit_event_ledger_response_data"
|
|
207
204
|
require_relative "schematic/credits/types/list_credit_event_ledger_response"
|
|
208
205
|
require_relative "schematic/credits/types/count_credit_event_ledger_params"
|
|
209
206
|
require_relative "schematic/credits/types/count_credit_event_ledger_response"
|
|
210
207
|
require_relative "schematic/types/checkout_subscription"
|
|
211
208
|
require_relative "schematic/checkout/types/checkout_internal_response"
|
|
209
|
+
require_relative "schematic/types/billing_credit_ledger_authority"
|
|
212
210
|
require_relative "schematic/types/credit_currency_price"
|
|
213
211
|
require_relative "schematic/types/billing_credit_view"
|
|
214
212
|
require_relative "schematic/types/billing_linked_resource_response_data"
|
|
@@ -217,6 +215,7 @@ require_relative "schematic/types/billing_strategy"
|
|
|
217
215
|
require_relative "schematic/types/billing_subscription_discount_view"
|
|
218
216
|
require_relative "schematic/types/billing_subscription_view"
|
|
219
217
|
require_relative "schematic/types/charge_type"
|
|
218
|
+
require_relative "schematic/types/checkout_field_with_value"
|
|
220
219
|
require_relative "schematic/types/metric_period"
|
|
221
220
|
require_relative "schematic/types/metric_period_month_reset"
|
|
222
221
|
require_relative "schematic/types/company_event_period_metrics_response_data"
|
|
@@ -536,6 +535,7 @@ require_relative "schematic/integrationsapi/types/run_integration_response"
|
|
|
536
535
|
require_relative "schematic/integrationsapi/types/list_integrations_params"
|
|
537
536
|
require_relative "schematic/types/clerk_integration_config"
|
|
538
537
|
require_relative "schematic/types/integration_capabilities"
|
|
538
|
+
require_relative "schematic/types/metronome_integration_config"
|
|
539
539
|
require_relative "schematic/types/orb_integration_config"
|
|
540
540
|
require_relative "schematic/types/stripe_integration_config"
|
|
541
541
|
require_relative "schematic/types/work_os_integration_config"
|
|
@@ -544,11 +544,19 @@ require_relative "schematic/types/integrations_list_response_data"
|
|
|
544
544
|
require_relative "schematic/integrationsapi/types/list_integrations_response"
|
|
545
545
|
require_relative "schematic/types/integration_webhook_url_response_data"
|
|
546
546
|
require_relative "schematic/integrationsapi/types/get_integration_webhook_url_response"
|
|
547
|
+
require_relative "schematic/types/company_matching_criteria"
|
|
548
|
+
require_relative "schematic/types/integration_install_config"
|
|
549
|
+
require_relative "schematic/types/integration_response_data"
|
|
550
|
+
require_relative "schematic/types/integration_install_response_data"
|
|
551
|
+
require_relative "schematic/integrationsapi/types/install_integration_response"
|
|
547
552
|
require_relative "schematic/integrationsapi/types/start_data_import_response"
|
|
548
553
|
require_relative "schematic/types/integrations_data_set_response_data"
|
|
549
|
-
require_relative "schematic/integrationsapi/types/
|
|
554
|
+
require_relative "schematic/integrationsapi/types/load_sample_data_set_response"
|
|
555
|
+
require_relative "schematic/integrationsapi/types/assume_stripe_installed_response"
|
|
556
|
+
require_relative "schematic/integrationsapi/types/install_stripe_response"
|
|
550
557
|
require_relative "schematic/integrationsapi/types/uninstall_integration_response"
|
|
551
558
|
require_relative "schematic/plangroups/types/get_plan_group_params"
|
|
559
|
+
require_relative "schematic/types/checkout_field_response_data"
|
|
552
560
|
require_relative "schematic/types/checkout_settings_response_data"
|
|
553
561
|
require_relative "schematic/types/component_settings_response_data"
|
|
554
562
|
require_relative "schematic/types/custom_plan_view_config_response_data"
|
|
@@ -620,6 +628,7 @@ require_relative "schematic/types/billing_product_pricing"
|
|
|
620
628
|
require_relative "schematic/types/billing_subscription_discount"
|
|
621
629
|
require_relative "schematic/types/capture_raw_event"
|
|
622
630
|
require_relative "schematic/types/capture_raw_event_batch"
|
|
631
|
+
require_relative "schematic/types/checkout_field_value"
|
|
623
632
|
require_relative "schematic/types/update_add_on_request_body"
|
|
624
633
|
require_relative "schematic/types/update_auto_topup_override_request_body"
|
|
625
634
|
require_relative "schematic/types/update_credit_bundle_request_body"
|
|
@@ -627,7 +636,7 @@ require_relative "schematic/types/update_pay_in_advance_request_body"
|
|
|
627
636
|
require_relative "schematic/types/change_subscription_internal_request_body"
|
|
628
637
|
require_relative "schematic/types/change_subscription_request_body"
|
|
629
638
|
require_relative "schematic/types/check_flag_request_body"
|
|
630
|
-
require_relative "schematic/types/
|
|
639
|
+
require_relative "schematic/types/checkout_field_input"
|
|
631
640
|
require_relative "schematic/types/company_membership_response_data"
|
|
632
641
|
require_relative "schematic/types/component_hydrate_response_data"
|
|
633
642
|
require_relative "schematic/types/condition_group_response_data"
|
|
@@ -671,7 +680,7 @@ require_relative "schematic/types/rule_view"
|
|
|
671
680
|
require_relative "schematic/types/flag_view"
|
|
672
681
|
require_relative "schematic/types/feature_view"
|
|
673
682
|
require_relative "schematic/types/feature_usage_legacy_response_data"
|
|
674
|
-
require_relative "schematic/types/
|
|
683
|
+
require_relative "schematic/types/install_integration_request_body"
|
|
675
684
|
require_relative "schematic/types/invoice_request_body"
|
|
676
685
|
require_relative "schematic/types/keys_request_body"
|
|
677
686
|
require_relative "schematic/types/plan_selection"
|
|
@@ -728,6 +737,7 @@ require_relative "schematic/types/webhook_url"
|
|
|
728
737
|
require_relative "schematic/client"
|
|
729
738
|
require_relative "schematic/accounts/client"
|
|
730
739
|
require_relative "schematic/accounts/types/list_account_members_request"
|
|
740
|
+
require_relative "schematic/accounts/types/count_account_members_request"
|
|
731
741
|
require_relative "schematic/accounts/types/list_api_keys_request"
|
|
732
742
|
require_relative "schematic/accounts/types/create_api_key_request_body"
|
|
733
743
|
require_relative "schematic/accounts/types/update_api_key_request_body"
|
|
@@ -774,8 +784,6 @@ require_relative "schematic/credits/types/count_billing_credits_grants_request"
|
|
|
774
784
|
require_relative "schematic/credits/types/list_grants_for_credit_request"
|
|
775
785
|
require_relative "schematic/credits/types/acquire_credit_lease_request_body"
|
|
776
786
|
require_relative "schematic/credits/types/extend_credit_lease_request_body"
|
|
777
|
-
require_relative "schematic/credits/types/get_enriched_credit_ledger_request"
|
|
778
|
-
require_relative "schematic/credits/types/count_credit_ledger_request"
|
|
779
787
|
require_relative "schematic/credits/types/list_billing_plan_credit_grants_request"
|
|
780
788
|
require_relative "schematic/credits/types/delete_billing_plan_credit_grant_request"
|
|
781
789
|
require_relative "schematic/credits/types/count_billing_plan_credit_grants_request"
|