stigg-api-client 5.71.0__tar.gz → 5.100.0__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: stigg-api-client
3
- Version: 5.71.0
3
+ Version: 5.100.0
4
4
  Summary:
5
5
  License: STIGG SDK LICENSE
6
6
  Author: Stigg
@@ -21,6 +21,8 @@ Description-Content-Type: text/markdown
21
21
 
22
22
  # stigg-api-client
23
23
 
24
+ > ## ⚠️ This package has been deprecated and is no longer actively maintained. Please use [stigg-api-client-v2](https://pypi.org/project/stigg-api-client-v2/) instead.
25
+
24
26
  This library provides a Python wrapper to [Stigg's GraphQL API](https://docs.stigg.io/docs/graphql-api) based on
25
27
  the operations that are in use by the [Stigg's Node.js SDK](https://docs.stigg.io/docs/nodejs-sdk).
26
28
 
@@ -1,5 +1,7 @@
1
1
  # stigg-api-client
2
2
 
3
+ > ## ⚠️ This package has been deprecated and is no longer actively maintained. Please use [stigg-api-client-v2](https://pypi.org/project/stigg-api-client-v2/) instead.
4
+
3
5
  This library provides a Python wrapper to [Stigg's GraphQL API](https://docs.stigg.io/docs/graphql-api) based on
4
6
  the operations that are in use by the [Stigg's Node.js SDK](https://docs.stigg.io/docs/nodejs-sdk).
5
7
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "stigg-api-client"
3
- version = "5.71.0"
3
+ version = "5.100.0"
4
4
  description = ""
5
5
  authors = ["Stigg <support@stigg.io>"]
6
6
  license = "STIGG SDK LICENSE"
@@ -1607,6 +1607,7 @@ def fragment_auto_recharge_settings_fragment():
1607
1607
  _frag.target_balance()
1608
1608
  _frag.max_spend_limit()
1609
1609
  _frag.grant_expiration_period()
1610
+ _frag.current_monthly_spend()
1610
1611
  _frag.created_at()
1611
1612
  _frag.updated_at()
1612
1613
  return _frag
@@ -97,6 +97,11 @@ class ChangeType(sgqlc.types.Enum):
97
97
  __choices__ = ('ADDED', 'DELETED', 'MODIFIED', 'REORDERED')
98
98
 
99
99
 
100
+ class ChargeType(sgqlc.types.Enum):
101
+ __schema__ = schema
102
+ __choices__ = ('CREDIT', 'FEATURE')
103
+
104
+
100
105
  class ConditionOperation(sgqlc.types.Enum):
101
106
  __schema__ = schema
102
107
  __choices__ = ('CONTAINS', 'ENDS_WITH', 'EQUALS', 'GREATER_THAN', 'GREATER_THAN_OR_EQUAL', 'IN', 'IS_NOT_NULL', 'IS_NULL', 'LESS_THAN', 'LESS_THAN_OR_EQUAL', 'NOT_EQUALS', 'STARTS_WITH')
@@ -148,7 +153,7 @@ class CreditGrantStatus(sgqlc.types.Enum):
148
153
 
149
154
  class CreditGrantType(sgqlc.types.Enum):
150
155
  __schema__ = schema
151
- __choices__ = ('PAID', 'PROMOTIONAL')
156
+ __choices__ = ('PAID', 'PROMOTIONAL', 'RECURRING')
152
157
 
153
158
 
154
159
  class CreditLedgerEventType(sgqlc.types.Enum):
@@ -240,7 +245,7 @@ class EnvironmentType(sgqlc.types.Enum):
240
245
 
241
246
  class ErrorCode(sgqlc.types.Enum):
242
247
  __schema__ = schema
243
- __choices__ = ('AccessDeniedError', 'AccountNotFoundError', 'AddonDependencyMissingError', 'AddonHasToHavePriceError', 'AddonIsCompatibleWithGroup', 'AddonIsCompatibleWithPlan', 'AddonNotFound', 'AddonQuantityExceedsLimitError', 'AddonWithDraftCannotBeDeletedError', 'AddonsNotFound', 'AmountTooLarge', 'ArchivedCouponCantBeApplied', 'AuthCustomerMismatch', 'AuthCustomerReadonly', 'AwsMarketplaceIntegrationError', 'AwsMarketplaceIntegrationValidationError', 'BadUserInput', 'BillingIntegrationAlreadyExistsError', 'BillingIntegrationMissing', 'BillingPeriodMissingError', 'CanNotUpdateEntitlementsFeatureGroup', 'CannotAddOverrideEntitlementToPlan', 'CannotArchiveFeatureError', 'CannotArchiveFeatureGroupError', 'CannotArchiveProductError', 'CannotChangeBillingIntegration', 'CannotDeleteCustomerError', 'CannotDeleteDefaultIntegration', 'CannotDeleteFeatureError', 'CannotEditPackageInNonDraftMode', 'CannotRemovePaymentMethodFromCustomerError', 'CannotReportUsageForEntitlementWithMeterError', 'CannotUpdateExpireAtForExpiredCreditGrantError', 'CannotUpdateUnitTransformationError', 'CannotUpsertToPackageThatHasDraft', 'ChangingPayingCustomerIsNotSupportedError', 'CheckoutIsNotSupported', 'CouponNotFound', 'CreditGrantAlreadyVoided', 'CreditGrantNotFound', 'CustomCurrencyNotFound', 'CustomerAlreadyHaveCustomerCoupon', 'CustomerAlreadyUsesCoupon', 'CustomerHasNoEmailAddress', 'CustomerNoBillingId', 'CustomerNotFound', 'CustomerResourceNotFound', 'DeprecatedEstimateSubscriptionError', 'DowngradeBillingPeriodNotSupportedError', 'DraftAddonCantBeArchived', 'DraftAlreadyExists', 'DraftPlanCantBeArchived', 'DuplicateAddonProvisionedError', 'DuplicateIntegrationNotAllowed', 'DuplicateProductValidationError', 'DuplicatedEntityNotAllowed', 'EditAllowedOnDraftPackageOnlyError', 'EntitlementBelongsToFeatureGroupError', 'EntitlementLimitExceededError', 'EntitlementUsageOutOfRangeError', 'EntitlementsMustBelongToSamePackage', 'EntityIdDifferentFromRefIdError', 'EntityIsArchivedError', 'EnvironmentMissing', 'ExperimentAlreadyRunning', 'ExperimentNotFoundError', 'ExperimentStatusError', 'ExpireAtMustBeLaterThanEffectiveAtError', 'FailedToCreateCheckoutSessionError', 'FailedToImportCustomer', 'FailedToImportSubscriptions', 'FailedToResolveBillingIntegration', 'FeatureConfigurationExceededLimitError', 'FeatureGroupMissingFeaturesError', 'FeatureGroupNotFoundError', 'FeatureNotBelongToFeatureGroupError', 'FeatureNotFound', 'FetchAllCountriesPricesNotAllowed', 'FreePlanCantHaveCompatiblePackageGroupError', 'GraphQLAliasesLimitExceeded', 'GraphQLBatchedOperationsLimitExceeded', 'GraphQLUnsupportedDirective', 'HubspotIntegrationError', 'IdentityForbidden', 'ImportAlreadyInProgress', 'ImportSubscriptionsBulkError', 'IncompatibleSubscriptionAddon', 'InitStripePaymentMethodError', 'IntegrationNotFound', 'IntegrationValidationError', 'IntegrityViolation', 'InvalidAddressError', 'InvalidArgumentError', 'InvalidCancellationDate', 'InvalidDoggoSignatureError', 'InvalidEntitlementResetPeriod', 'InvalidMemberDelete', 'InvalidMetadataError', 'InvalidQuantity', 'InvalidSubscriptionStatus', 'InvalidUpdatePriceUnitAmountError', 'MemberInvitationError', 'MemberNotFound', 'MergeEnvironmentValidationError', 'MeterMustBeAssociatedToMeteredFeature', 'MeteringNotAvailableForFeatureType', 'MissingEntityIdError', 'MissingSubscriptionInvoiceError', 'MultiSubscriptionCantBeAutoCancellationSourceError', 'NoActiveSubscriptionForCustomer', 'NoDraftOfferFound', 'NoFeatureEntitlementError', 'NoFeatureEntitlementInSubscription', 'NoProductsAvailable', 'OfferAlreadyExists', 'OfferNotFound', 'OperationNotAllowedDuringInProgressExperiment', 'PackageAlreadyPublished', 'PackageGroupMinItemsError', 'PackageGroupNotFound', 'PackagePricingTypeNotSet', 'PaymentMethodNotFoundError', 'PlanCannotBePublishWhenBasePlanIsDraft', 'PlanCannotBePublishWhenCompatibleAddonIsDraft', 'PlanIsUsedAsDefaultStartPlan', 'PlanIsUsedAsDowngradePlan', 'PlanNotFound', 'PlanWithChildCantBeDeleted', 'PlansCircularDependencyError', 'PreparePaymentMethodFormError', 'PriceNotFound', 'ProductNotFoundError', 'PromotionCodeCustomerNotFirstPurchase', 'PromotionCodeMaxRedemptionsReached', 'PromotionCodeMinimumAmountNotReached', 'PromotionCodeNotActive', 'PromotionCodeNotForCustomer', 'PromotionCodeNotFound', 'PromotionalEntitlementNotFoundError', 'RateLimitExceeded', 'RecalculateEntitlementsError', 'RequiredSsoAuthenticationError', 'ResyncAlreadyInProgress', 'ScheduledMigrationAlreadyExistsError', 'SelectedBillingModelDoesntMatchImportedItemError', 'SingleSubscriptionCantBeAutoCancellationTargetError', 'StripeCustomerIsDeleted', 'StripeError', 'SubscriptionAlreadyCanceledOrExpired', 'SubscriptionAlreadyOnLatestPlanError', 'SubscriptionDoesNotHaveBillingPeriod', 'SubscriptionInvoiceStatusError', 'SubscriptionMustHaveSinglePlanError', 'SubscriptionNoBillingId', 'SubscriptionNotFound', 'TooManyCustomCurrencies', 'TooManySubscriptionsPerCustomer', 'TrialMustBeCancelledImmediately', 'UnPublishedPackage', 'Unauthenticated', 'UnexpectedError', 'UnsupportedFeatureType', 'UnsupportedParameter', 'UnsupportedSubscriptionScheduleType', 'UnsupportedVendorIdentifier', 'UsageMeasurementDiffOutOfRangeError', 'VendorIsNotSupported', 'VersionExceedsMaxValueError', 'WorkflowTriggerNotFound')
248
+ __choices__ = ('AccessDeniedError', 'AccountNotFoundError', 'AddonDependencyMissingError', 'AddonHasToHavePriceError', 'AddonIsCompatibleWithGroup', 'AddonIsCompatibleWithPlan', 'AddonNotFound', 'AddonQuantityExceedsLimitError', 'AddonWithDraftCannotBeDeletedError', 'AddonsNotFound', 'AmountTooLarge', 'ArchivedCouponCantBeApplied', 'AuthCustomerMismatch', 'AuthCustomerReadonly', 'AwsMarketplaceIntegrationError', 'AwsMarketplaceIntegrationValidationError', 'BadUserInput', 'BillingIntegrationAlreadyExistsError', 'BillingIntegrationMissing', 'BillingPeriodMissingError', 'CanNotUpdateEntitlementsFeatureGroup', 'CannotAddOverrideEntitlementToPlan', 'CannotArchiveFeatureError', 'CannotArchiveFeatureGroupError', 'CannotArchiveProductError', 'CannotChangeBillingIntegration', 'CannotDeleteCustomerError', 'CannotDeleteDefaultIntegration', 'CannotDeleteFeatureError', 'CannotEditPackageInNonDraftMode', 'CannotRemovePaymentMethodFromCustomerError', 'CannotReportUsageForEntitlementWithMeterError', 'CannotUnarchiveProductError', 'CannotUpdateExpireAtForExpiredCreditGrantError', 'CannotUpdateUnitTransformationError', 'CannotUpsertToPackageThatHasDraft', 'ChangingPayingCustomerIsNotSupportedError', 'CheckoutIsNotSupported', 'CouponNotFound', 'CreditGrantAlreadyVoided', 'CreditGrantNotFound', 'CustomCurrencyNotFound', 'CustomerAlreadyHaveCustomerCoupon', 'CustomerAlreadyUsesCoupon', 'CustomerHasNoEmailAddress', 'CustomerNoBillingId', 'CustomerNotFound', 'CustomerResourceNotFound', 'DeprecatedEstimateSubscriptionError', 'DowngradeBillingPeriodNotSupportedError', 'DraftAddonCantBeArchived', 'DraftAlreadyExists', 'DraftPlanCantBeArchived', 'DuplicateAddonProvisionedError', 'DuplicateIntegrationNotAllowed', 'DuplicateProductValidationError', 'DuplicatedEntityNotAllowed', 'EditAllowedOnDraftPackageOnlyError', 'EntitlementBelongsToFeatureGroupError', 'EntitlementLimitExceededError', 'EntitlementUsageOutOfRangeError', 'EntitlementsMustBelongToSamePackage', 'EntityIdDifferentFromRefIdError', 'EntityIsArchivedError', 'EnvironmentMissing', 'ExperimentAlreadyRunning', 'ExperimentNotFoundError', 'ExperimentStatusError', 'ExpireAtMustBeLaterThanEffectiveAtError', 'FailedToCreateCheckoutSessionError', 'FailedToImportCustomer', 'FailedToImportSubscriptions', 'FailedToResolveBillingIntegration', 'FeatureConfigurationExceededLimitError', 'FeatureGroupMissingFeaturesError', 'FeatureGroupNotFoundError', 'FeatureNotBelongToFeatureGroupError', 'FeatureNotFound', 'FetchAllCountriesPricesNotAllowed', 'FreePlanCantHaveCompatiblePackageGroupError', 'GraphQLAliasesLimitExceeded', 'GraphQLBatchedOperationsLimitExceeded', 'GraphQLUnsupportedDirective', 'HubspotIntegrationError', 'IdentityForbidden', 'ImportAlreadyInProgress', 'ImportSubscriptionsBulkError', 'IncompatibleSubscriptionAddon', 'InitStripePaymentMethodError', 'IntegrationNotFound', 'IntegrationValidationError', 'IntegrityViolation', 'InvalidAddressError', 'InvalidArgumentError', 'InvalidCancellationDate', 'InvalidDoggoSignatureError', 'InvalidEntitlementResetPeriod', 'InvalidMemberDelete', 'InvalidMetadataError', 'InvalidQuantity', 'InvalidSubscriptionStatus', 'InvalidTaxId', 'InvalidUpdatePriceUnitAmountError', 'MemberInvitationError', 'MemberNotFound', 'MergeEnvironmentValidationError', 'MeterMustBeAssociatedToMeteredFeature', 'MeteringNotAvailableForFeatureType', 'MissingEntityIdError', 'MissingSubscriptionInvoiceError', 'MultiSubscriptionCantBeAutoCancellationSourceError', 'NoActiveSubscriptionForCustomer', 'NoDraftOfferFound', 'NoFeatureEntitlementError', 'NoFeatureEntitlementInSubscription', 'NoProductsAvailable', 'OfferAlreadyExists', 'OfferNotFound', 'OperationNotAllowedDuringInProgressExperiment', 'PackageAlreadyPublished', 'PackageGroupMinItemsError', 'PackageGroupNotFound', 'PackagePricingTypeNotSet', 'PaymentMethodNotFoundError', 'PlanCannotBePublishWhenBasePlanIsDraft', 'PlanCannotBePublishWhenCompatibleAddonIsDraft', 'PlanIsUsedAsDefaultStartPlan', 'PlanIsUsedAsDowngradePlan', 'PlanNotFound', 'PlanWithChildCantBeDeleted', 'PlansCircularDependencyError', 'PreparePaymentMethodFormError', 'PriceNotFound', 'ProductNotFoundError', 'PromotionCodeCustomerNotFirstPurchase', 'PromotionCodeMaxRedemptionsReached', 'PromotionCodeMinimumAmountNotReached', 'PromotionCodeNotActive', 'PromotionCodeNotForCustomer', 'PromotionCodeNotFound', 'PromotionalEntitlementNotFoundError', 'RateLimitExceeded', 'RecalculateEntitlementsError', 'RequiredSsoAuthenticationError', 'ResyncAlreadyInProgress', 'ScheduledMigrationAlreadyExistsError', 'SelectedBillingModelDoesntMatchImportedItemError', 'SingleSubscriptionCantBeAutoCancellationTargetError', 'StripeCustomerIsDeleted', 'StripeError', 'SubscriptionAlreadyCanceledOrExpired', 'SubscriptionAlreadyOnLatestPlanError', 'SubscriptionDoesNotHaveBillingPeriod', 'SubscriptionInvoiceStatusError', 'SubscriptionMustHaveSinglePlanError', 'SubscriptionNoBillingId', 'SubscriptionNotFound', 'TooManyCustomCurrencies', 'TooManySubscriptionsPerCustomer', 'TrialMustBeCancelledImmediately', 'UnPublishedPackage', 'Unauthenticated', 'UnexpectedError', 'UnsupportedFeatureType', 'UnsupportedParameter', 'UnsupportedSubscriptionScheduleType', 'UnsupportedVendorIdentifier', 'UsageMeasurementDiffOutOfRangeError', 'VendorIsNotSupported', 'VersionExceedsMaxValueError', 'WorkflowTriggerNotFound')
244
249
 
245
250
 
246
251
  class EventActor(sgqlc.types.Enum):
@@ -260,7 +265,7 @@ class EventLogSortFields(sgqlc.types.Enum):
260
265
 
261
266
  class EventLogType(sgqlc.types.Enum):
262
267
  __schema__ = schema
263
- __choices__ = ('ADDON_CREATED', 'ADDON_DELETED', 'ADDON_UPDATED', 'AUTOMATIC_RECHARGE_OPERATION_ATTEMPTED', 'COUPON_ARCHIVED', 'COUPON_CREATED', 'COUPON_UPDATED', 'CREATE_SUBSCRIPTION_FAILED', 'CREDITS_AUTOMATIC_RECHARGE_LIMIT_EXCEEDED', 'CREDITS_BALANCE_DEPLETED_OLD', 'CREDITS_BALANCE_LOW_OLD', 'CREDITS_GRANT_BALANCE_LOW_OLD', 'CREDITS_GRANT_DEPLETED_OLD', 'CREDITS_GRANT_EXPIRED_OLD', 'CREDITS_GRANT_GRANTED_OLD', 'CREDITS_GRANT_UPDATED_OLD', 'CREDIT_BALANCE_DEPLETED', 'CREDIT_BALANCE_LOW', 'CREDIT_BALANCE_UPDATED', 'CREDIT_GRANT_BALANCE_LOW', 'CREDIT_GRANT_CREATED', 'CREDIT_GRANT_DEPLETED', 'CREDIT_GRANT_EXPIRED', 'CREDIT_GRANT_PROCESS_COMPLETED', 'CREDIT_GRANT_UPDATED', 'CREDIT_GRANT_VOIDED', 'CUSTOMER_CREATED', 'CUSTOMER_DELETED', 'CUSTOMER_ENTITLEMENT_CALCULATION_TRIGGERED', 'CUSTOMER_PAYMENT_FAILED', 'CUSTOMER_RESOURCE_ENTITLEMENT_CALCULATION_TRIGGERED', 'CUSTOMER_UPDATED', 'EDGE_API_CLIENT_CONFIGURATION_DATA_RESYNC', 'EDGE_API_CUSTOMER_DATA_RESYNC', 'EDGE_API_DATA_RESYNC', 'EDGE_API_DOGGO_RESYNC', 'EDGE_API_PACKAGE_ENTITLEMENTS_DATA_RESYNC', 'EDGE_API_SUBSCRIPTIONS_DATA_RESYNC', 'ENTITLEMENTS_UPDATED', 'ENTITLEMENT_DENIED', 'ENTITLEMENT_GRANTED', 'ENTITLEMENT_REQUESTED', 'ENTITLEMENT_USAGE_EXCEEDED', 'ENVIRONMENT_DELETED', 'FEATURE_ARCHIVED', 'FEATURE_CREATED', 'FEATURE_DELETED', 'FEATURE_GROUP_ARCHIVED', 'FEATURE_GROUP_CREATED', 'FEATURE_GROUP_UN_ARCHIVED', 'FEATURE_GROUP_UPDATED', 'FEATURE_UPDATED', 'IMPORT_INTEGRATION_CATALOG_TRIGGERED', 'IMPORT_INTEGRATION_CUSTOMERS_TRIGGERED', 'IMPORT_SUBSCRIPTIONS_BULK_TRIGGERED', 'MEASUREMENT_REPORTED', 'PACKAGE_GROUP_CREATED', 'PACKAGE_GROUP_UPDATED', 'PACKAGE_PUBLISHED', 'PLAN_CREATED', 'PLAN_DELETED', 'PLAN_UPDATED', 'PRODUCT_CREATED', 'PRODUCT_DELETED', 'PRODUCT_UPDATED', 'PROMOTIONAL_ENTITLEMENT_ENDS_SOON', 'PROMOTIONAL_ENTITLEMENT_EXPIRED', 'PROMOTIONAL_ENTITLEMENT_GRANTED', 'PROMOTIONAL_ENTITLEMENT_REVOKED', 'PROMOTIONAL_ENTITLEMENT_UPDATED', 'RECALCULATE_ENTITLEMENTS_TRIGGERED', 'RESYNC_INTEGRATION_TRIGGERED', 'SUBSCRIPTIONS_MIGRATED', 'SUBSCRIPTIONS_MIGRATION_TRIGGERED', 'SUBSCRIPTION_BILLING_MONTH_ENDS_SOON', 'SUBSCRIPTION_CANCELED', 'SUBSCRIPTION_CREATED', 'SUBSCRIPTION_EXPIRED', 'SUBSCRIPTION_SPENT_LIMIT_EXCEEDED', 'SUBSCRIPTION_TRIAL_CONVERTED', 'SUBSCRIPTION_TRIAL_ENDS_SOON', 'SUBSCRIPTION_TRIAL_EXPIRED', 'SUBSCRIPTION_TRIAL_STARTED', 'SUBSCRIPTION_UPDATED', 'SUBSCRIPTION_USAGE_CHARGE_TRIGGERED', 'SUBSCRIPTION_USAGE_UPDATED', 'SYNC_FAILED', 'WIDGET_CONFIGURATION_UPDATED')
268
+ __choices__ = ('ADDON_CREATED', 'ADDON_DELETED', 'ADDON_UPDATED', 'AUTOMATIC_RECHARGE_CONFIGURATION_CHANGED', 'AUTOMATIC_RECHARGE_OPERATION_ATTEMPTED', 'COUPON_ARCHIVED', 'COUPON_CREATED', 'COUPON_UPDATED', 'CREATE_SUBSCRIPTION_FAILED', 'CREDITS_AUTOMATIC_RECHARGE_LIMIT_EXCEEDED', 'CREDITS_BALANCE_DEPLETED_OLD', 'CREDITS_BALANCE_LOW_OLD', 'CREDITS_GRANT_BALANCE_LOW_OLD', 'CREDITS_GRANT_DEPLETED_OLD', 'CREDITS_GRANT_EXPIRED_OLD', 'CREDITS_GRANT_GRANTED_OLD', 'CREDITS_GRANT_UPDATED_OLD', 'CREDIT_BALANCE_DEPLETED', 'CREDIT_BALANCE_LOW', 'CREDIT_BALANCE_UPDATED', 'CREDIT_GRANT_BALANCE_LOW', 'CREDIT_GRANT_CREATED', 'CREDIT_GRANT_DEPLETED', 'CREDIT_GRANT_EXPIRED', 'CREDIT_GRANT_PROCESS_COMPLETED', 'CREDIT_GRANT_UPDATED', 'CREDIT_GRANT_VOIDED', 'CUSTOMER_CREATED', 'CUSTOMER_DELETED', 'CUSTOMER_ENTITLEMENT_CALCULATION_TRIGGERED', 'CUSTOMER_PAYMENT_FAILED', 'CUSTOMER_RESOURCE_ENTITLEMENT_CALCULATION_TRIGGERED', 'CUSTOMER_UPDATED', 'EDGE_API_CLIENT_CONFIGURATION_DATA_RESYNC', 'EDGE_API_CUSTOMER_DATA_RESYNC', 'EDGE_API_DATA_RESYNC', 'EDGE_API_DOGGO_RESYNC', 'EDGE_API_PACKAGE_ENTITLEMENTS_DATA_RESYNC', 'EDGE_API_SUBSCRIPTIONS_DATA_RESYNC', 'ENTITLEMENTS_UPDATED', 'ENTITLEMENT_DENIED', 'ENTITLEMENT_GRANTED', 'ENTITLEMENT_REQUESTED', 'ENTITLEMENT_USAGE_EXCEEDED', 'ENVIRONMENT_DELETED', 'FEATURE_ARCHIVED', 'FEATURE_CREATED', 'FEATURE_DELETED', 'FEATURE_GROUP_ARCHIVED', 'FEATURE_GROUP_CREATED', 'FEATURE_GROUP_UN_ARCHIVED', 'FEATURE_GROUP_UPDATED', 'FEATURE_UPDATED', 'IMPORT_INTEGRATION_CATALOG_TRIGGERED', 'IMPORT_INTEGRATION_CUSTOMERS_TRIGGERED', 'IMPORT_SUBSCRIPTIONS_BULK_TRIGGERED', 'MEASUREMENT_REPORTED', 'PACKAGE_GROUP_CREATED', 'PACKAGE_GROUP_UPDATED', 'PACKAGE_PUBLISHED', 'PLAN_CREATED', 'PLAN_DELETED', 'PLAN_UPDATED', 'PRODUCT_CREATED', 'PRODUCT_DELETED', 'PRODUCT_UNARCHIVED', 'PRODUCT_UPDATED', 'PROMOTIONAL_ENTITLEMENT_ENDS_SOON', 'PROMOTIONAL_ENTITLEMENT_EXPIRED', 'PROMOTIONAL_ENTITLEMENT_GRANTED', 'PROMOTIONAL_ENTITLEMENT_REVOKED', 'PROMOTIONAL_ENTITLEMENT_UPDATED', 'RECALCULATE_ENTITLEMENTS_TRIGGERED', 'RESYNC_INTEGRATION_TRIGGERED', 'SUBSCRIPTIONS_MIGRATED', 'SUBSCRIPTIONS_MIGRATION_TRIGGERED', 'SUBSCRIPTION_BILLING_MONTH_ENDS_SOON', 'SUBSCRIPTION_CANCELED', 'SUBSCRIPTION_CREATED', 'SUBSCRIPTION_EXPIRED', 'SUBSCRIPTION_SPENT_LIMIT_EXCEEDED', 'SUBSCRIPTION_TRIAL_CONVERTED', 'SUBSCRIPTION_TRIAL_ENDS_SOON', 'SUBSCRIPTION_TRIAL_EXPIRED', 'SUBSCRIPTION_TRIAL_STARTED', 'SUBSCRIPTION_UPDATED', 'SUBSCRIPTION_USAGE_CHARGE_TRIGGERED', 'SUBSCRIPTION_USAGE_UPDATED', 'SYNC_FAILED', 'WIDGET_CONFIGURATION_UPDATED')
264
269
 
265
270
 
266
271
  class ExperimentSortFields(sgqlc.types.Enum):
@@ -582,7 +587,7 @@ class SubscriptionScheduleStatus(sgqlc.types.Enum):
582
587
 
583
588
  class SubscriptionScheduleType(sgqlc.types.Enum):
584
589
  __schema__ = schema
585
- __choices__ = ('AdditionalMetaData', 'Addon', 'BillingInfoMetadata', 'BillingPeriod', 'Coupon', 'Downgrade', 'MigrateToLatest', 'Plan', 'PriceOverride', 'UnitAmount')
590
+ __choices__ = ('AdditionalMetaData', 'Addon', 'BillingInfoMetadata', 'BillingPeriod', 'Coupon', 'Downgrade', 'MigrateToLatest', 'Plan', 'PriceOverride', 'RecurringCredits', 'UnitAmount')
586
591
 
587
592
 
588
593
  class SubscriptionStartSetup(sgqlc.types.Enum):
@@ -836,18 +841,32 @@ class ApiKeySort(sgqlc.types.Input):
836
841
 
837
842
  class AppStoreCredentialsInput(sgqlc.types.Input):
838
843
  __schema__ = schema
839
- __field_names__ = ('app_apple_id', 'bundle_id', 'issuer_id', 'key_id', 'private_key', 'sandbox_environment')
840
- app_apple_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='appAppleId')
841
- bundle_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='bundleId')
844
+ __field_names__ = ('issuer_id', 'key_id', 'private_key', 'sandbox_environment')
842
845
  issuer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='issuerId')
843
846
  key_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='keyId')
844
847
  private_key = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='privateKey')
845
848
  sandbox_environment = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='sandboxEnvironment')
846
849
 
847
850
 
851
+ class AppStoreSubscriptionMappingInput(sgqlc.types.Input):
852
+ __schema__ = schema
853
+ __field_names__ = ('app_store_subscription_id', 'plan_ref_id')
854
+ app_store_subscription_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='appStoreSubscriptionId')
855
+ plan_ref_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='planRefId')
856
+
857
+
858
+ class AppStoreSubscriptionsToPlansMappingInput(sgqlc.types.Input):
859
+ __schema__ = schema
860
+ __field_names__ = ('app_store_subscription_mapping', 'application_id', 'bundle_id', 'environment_id')
861
+ app_store_subscription_mapping = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(AppStoreSubscriptionMappingInput))), graphql_name='appStoreSubscriptionMapping')
862
+ application_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='applicationId')
863
+ bundle_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='bundleId')
864
+ environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
865
+
866
+
848
867
  class ApplySubscriptionInput(sgqlc.types.Input):
849
868
  __schema__ = schema
850
- __field_names__ = ('additional_meta_data', 'addons', 'applied_coupon', 'await_payment_confirmation', 'billable_features', 'billing_country_code', 'billing_id', 'billing_information', 'billing_period', 'budget', 'customer_id', 'environment_id', 'minimum_spend', 'paying_customer_id', 'payment_collection_method', 'payment_method_id', 'plan_id', 'price_overrides', 'promotion_code', 'resource_id', 'salesforce_id', 'schedule_strategy', 'skip_trial', 'start_date', 'subscription_entitlements', 'trial_override_configuration', 'unit_quantity')
869
+ __field_names__ = ('additional_meta_data', 'addons', 'applied_coupon', 'await_payment_confirmation', 'billable_features', 'billing_country_code', 'billing_id', 'billing_information', 'billing_period', 'budget', 'charges', 'customer_id', 'environment_id', 'minimum_spend', 'paying_customer_id', 'payment_collection_method', 'payment_method_id', 'plan_id', 'price_overrides', 'promotion_code', 'resource_id', 'salesforce_id', 'schedule_strategy', 'skip_trial', 'start_date', 'subscription_entitlements', 'trial_override_configuration', 'unit_quantity')
851
870
  additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
852
871
  addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonInput')), graphql_name='addons')
853
872
  applied_coupon = sgqlc.types.Field('SubscriptionCouponInput', graphql_name='appliedCoupon')
@@ -858,6 +877,7 @@ class ApplySubscriptionInput(sgqlc.types.Input):
858
877
  billing_information = sgqlc.types.Field('SubscriptionBillingInfo', graphql_name='billingInformation')
859
878
  billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
860
879
  budget = sgqlc.types.Field('BudgetConfigurationInput', graphql_name='budget')
880
+ charges = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ChargeInput')), graphql_name='charges')
861
881
  customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
862
882
  environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
863
883
  minimum_spend = sgqlc.types.Field('SubscriptionMinimumSpendValueInput', graphql_name='minimumSpend')
@@ -1084,6 +1104,14 @@ class BudgetConfigurationInput(sgqlc.types.Input):
1084
1104
  limit = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='limit')
1085
1105
 
1086
1106
 
1107
+ class ChargeInput(sgqlc.types.Input):
1108
+ __schema__ = schema
1109
+ __field_names__ = ('id', 'quantity', 'type')
1110
+ id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id')
1111
+ quantity = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='quantity')
1112
+ type = sgqlc.types.Field(sgqlc.types.non_null(ChargeType), graphql_name='type')
1113
+
1114
+
1087
1115
  class ChargeSubscriptionUsageInput(sgqlc.types.Input):
1088
1116
  __schema__ = schema
1089
1117
  __field_names__ = ('environment_id', 'subscription_id', 'until_date')
@@ -2128,13 +2156,14 @@ class EnvironmentSort(sgqlc.types.Input):
2128
2156
 
2129
2157
  class EstimateSubscriptionInput(sgqlc.types.Input):
2130
2158
  __schema__ = schema
2131
- __field_names__ = ('addons', 'applied_coupon', 'billable_features', 'billing_country_code', 'billing_information', 'billing_period', 'customer_id', 'environment_id', 'paying_customer_id', 'plan_id', 'price_unit_amount', 'promotion_code', 'resource_id', 'skip_trial', 'start_date', 'trial_override_configuration', 'unit_quantity')
2159
+ __field_names__ = ('addons', 'applied_coupon', 'billable_features', 'billing_country_code', 'billing_information', 'billing_period', 'charges', 'customer_id', 'environment_id', 'paying_customer_id', 'plan_id', 'price_unit_amount', 'promotion_code', 'resource_id', 'skip_trial', 'start_date', 'trial_override_configuration', 'unit_quantity')
2132
2160
  addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonInput')), graphql_name='addons')
2133
2161
  applied_coupon = sgqlc.types.Field('SubscriptionCouponInput', graphql_name='appliedCoupon')
2134
2162
  billable_features = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(BillableFeatureInput)), graphql_name='billableFeatures')
2135
2163
  billing_country_code = sgqlc.types.Field(String, graphql_name='billingCountryCode')
2136
2164
  billing_information = sgqlc.types.Field('SubscriptionBillingInfo', graphql_name='billingInformation')
2137
2165
  billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
2166
+ charges = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ChargeInput)), graphql_name='charges')
2138
2167
  customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
2139
2168
  environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
2140
2169
  paying_customer_id = sgqlc.types.Field(String, graphql_name='payingCustomerId')
@@ -2150,10 +2179,11 @@ class EstimateSubscriptionInput(sgqlc.types.Input):
2150
2179
 
2151
2180
  class EstimateSubscriptionUpdateInput(sgqlc.types.Input):
2152
2181
  __schema__ = schema
2153
- __field_names__ = ('addons', 'applied_coupon', 'billable_features', 'environment_id', 'promotion_code', 'subscription_id', 'unit_quantity')
2182
+ __field_names__ = ('addons', 'applied_coupon', 'billable_features', 'charges', 'environment_id', 'promotion_code', 'subscription_id', 'unit_quantity')
2154
2183
  addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonInput')), graphql_name='addons')
2155
2184
  applied_coupon = sgqlc.types.Field('SubscriptionCouponInput', graphql_name='appliedCoupon')
2156
2185
  billable_features = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(BillableFeatureInput)), graphql_name='billableFeatures')
2186
+ charges = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ChargeInput)), graphql_name='charges')
2157
2187
  environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
2158
2188
  promotion_code = sgqlc.types.Field(String, graphql_name='promotionCode')
2159
2189
  subscription_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='subscriptionId')
@@ -2204,7 +2234,7 @@ class EventLogFilter(sgqlc.types.Input):
2204
2234
  created_at = sgqlc.types.Field(EventLogCreatedAtFilterComparison, graphql_name='createdAt')
2205
2235
  entity_id = sgqlc.types.Field(EventLogEntityIdFilterComparison, graphql_name='entityId')
2206
2236
  entity_type = sgqlc.types.Field(EventLogEntityTypeFilterComparison, graphql_name='entityType')
2207
- environment_id = sgqlc.types.Field(sgqlc.types.non_null(EventLogEnvironmentIdFilterComparison), graphql_name='environmentId')
2237
+ environment_id = sgqlc.types.Field(EventLogEnvironmentIdFilterComparison, graphql_name='environmentId')
2208
2238
  event_log_type = sgqlc.types.Field(EventLogEventLogTypeFilterComparison, graphql_name='eventLogType')
2209
2239
  id = sgqlc.types.Field('EventLogIdFilterComparison', graphql_name='id')
2210
2240
  or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('EventLogFilter')), graphql_name='or')
@@ -2220,9 +2250,10 @@ class EventLogIdFilterComparison(sgqlc.types.Input):
2220
2250
 
2221
2251
  class EventLogParentEntityIdFilterComparison(sgqlc.types.Input):
2222
2252
  __schema__ = schema
2223
- __field_names__ = ('eq', 'in_')
2253
+ __field_names__ = ('eq', 'in_', 'like')
2224
2254
  eq = sgqlc.types.Field(String, graphql_name='eq')
2225
2255
  in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='in')
2256
+ like = sgqlc.types.Field(String, graphql_name='like')
2226
2257
 
2227
2258
 
2228
2259
  class EventLogSort(sgqlc.types.Input):
@@ -2738,12 +2769,13 @@ class ImportIntegrationTaskSort(sgqlc.types.Input):
2738
2769
 
2739
2770
  class ImportSubscriptionInput(sgqlc.types.Input):
2740
2771
  __schema__ = schema
2741
- __field_names__ = ('additional_meta_data', 'addons', 'billable_features', 'billing_id', 'billing_period', 'customer_id', 'end_date', 'plan_id', 'resource_id', 'salesforce_id', 'start_date', 'subscription_entitlements', 'subscription_id', 'unit_quantity', 'updated_at')
2772
+ __field_names__ = ('additional_meta_data', 'addons', 'billable_features', 'billing_id', 'billing_period', 'charges', 'customer_id', 'end_date', 'plan_id', 'resource_id', 'salesforce_id', 'start_date', 'subscription_entitlements', 'subscription_id', 'unit_quantity', 'updated_at')
2742
2773
  additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
2743
2774
  addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonInput')), graphql_name='addons')
2744
2775
  billable_features = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(BillableFeatureInput)), graphql_name='billableFeatures')
2745
2776
  billing_id = sgqlc.types.Field(String, graphql_name='billingId')
2746
2777
  billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
2778
+ charges = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ChargeInput)), graphql_name='charges')
2747
2779
  customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
2748
2780
  end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
2749
2781
  plan_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='planId')
@@ -2841,6 +2873,19 @@ class LinkFeatureGroupToPackageInput(sgqlc.types.Input):
2841
2873
  package_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='packageId')
2842
2874
 
2843
2875
 
2876
+ class ListAppStoreApplicationsInput(sgqlc.types.Input):
2877
+ __schema__ = schema
2878
+ __field_names__ = ('environment_id',)
2879
+ environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
2880
+
2881
+
2882
+ class ListAppStoreSubscriptionsInput(sgqlc.types.Input):
2883
+ __schema__ = schema
2884
+ __field_names__ = ('application_id', 'environment_id')
2885
+ application_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='applicationId')
2886
+ environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
2887
+
2888
+
2844
2889
  class ListAwsProductDimensionsInput(sgqlc.types.Input):
2845
2890
  __schema__ = schema
2846
2891
  __field_names__ = ('environment_id', 'product_id')
@@ -3534,13 +3579,14 @@ class PreviewNextInvoiceInput(sgqlc.types.Input):
3534
3579
 
3535
3580
  class PreviewSubscriptionInput(sgqlc.types.Input):
3536
3581
  __schema__ = schema
3537
- __field_names__ = ('addons', 'applied_coupon', 'billable_features', 'billing_country_code', 'billing_information', 'billing_period', 'customer_id', 'environment_id', 'paying_customer_id', 'plan_id', 'promotion_code', 'resource_id', 'schedule_strategy', 'start_date', 'trial_override_configuration', 'unit_quantity')
3582
+ __field_names__ = ('addons', 'applied_coupon', 'billable_features', 'billing_country_code', 'billing_information', 'billing_period', 'charges', 'customer_id', 'environment_id', 'paying_customer_id', 'plan_id', 'promotion_code', 'resource_id', 'schedule_strategy', 'start_date', 'trial_override_configuration', 'unit_quantity')
3538
3583
  addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonInput')), graphql_name='addons')
3539
3584
  applied_coupon = sgqlc.types.Field('SubscriptionCouponInput', graphql_name='appliedCoupon')
3540
3585
  billable_features = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(BillableFeatureInput)), graphql_name='billableFeatures')
3541
3586
  billing_country_code = sgqlc.types.Field(String, graphql_name='billingCountryCode')
3542
3587
  billing_information = sgqlc.types.Field('SubscriptionBillingInfo', graphql_name='billingInformation')
3543
3588
  billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
3589
+ charges = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ChargeInput)), graphql_name='charges')
3544
3590
  customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
3545
3591
  environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
3546
3592
  paying_customer_id = sgqlc.types.Field(String, graphql_name='payingCustomerId')
@@ -3846,7 +3892,7 @@ class ProvisionCustomerInput(sgqlc.types.Input):
3846
3892
 
3847
3893
  class ProvisionCustomerSubscriptionInput(sgqlc.types.Input):
3848
3894
  __schema__ = schema
3849
- __field_names__ = ('additional_meta_data', 'addons', 'applied_coupon', 'await_payment_confirmation', 'billable_features', 'billing_country_code', 'billing_id', 'billing_information', 'billing_period', 'budget', 'minimum_spend', 'payment_collection_method', 'plan_id', 'price_overrides', 'price_unit_amount', 'promotion_code', 'ref_id', 'resource_id', 'salesforce_id', 'start_date', 'subscription_entitlements', 'subscription_id', 'trial_override_configuration', 'unit_quantity')
3895
+ __field_names__ = ('additional_meta_data', 'addons', 'applied_coupon', 'await_payment_confirmation', 'billable_features', 'billing_country_code', 'billing_id', 'billing_information', 'billing_period', 'budget', 'charges', 'minimum_spend', 'payment_collection_method', 'plan_id', 'price_overrides', 'price_unit_amount', 'promotion_code', 'ref_id', 'resource_id', 'salesforce_id', 'start_date', 'subscription_entitlements', 'subscription_id', 'trial_override_configuration', 'unit_quantity')
3850
3896
  additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
3851
3897
  addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonInput')), graphql_name='addons')
3852
3898
  applied_coupon = sgqlc.types.Field('SubscriptionCouponInput', graphql_name='appliedCoupon')
@@ -3857,6 +3903,7 @@ class ProvisionCustomerSubscriptionInput(sgqlc.types.Input):
3857
3903
  billing_information = sgqlc.types.Field('SubscriptionBillingInfo', graphql_name='billingInformation')
3858
3904
  billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
3859
3905
  budget = sgqlc.types.Field(BudgetConfigurationInput, graphql_name='budget')
3906
+ charges = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ChargeInput)), graphql_name='charges')
3860
3907
  minimum_spend = sgqlc.types.Field('SubscriptionMinimumSpendValueInput', graphql_name='minimumSpend')
3861
3908
  payment_collection_method = sgqlc.types.Field(PaymentCollectionMethod, graphql_name='paymentCollectionMethod')
3862
3909
  plan_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='planId')
@@ -3882,7 +3929,7 @@ class ProvisionSandboxInput(sgqlc.types.Input):
3882
3929
 
3883
3930
  class ProvisionSubscription(sgqlc.types.Input):
3884
3931
  __schema__ = schema
3885
- __field_names__ = ('additional_meta_data', 'addons', 'applied_coupon', 'await_payment_confirmation', 'billable_features', 'billing_country_code', 'billing_id', 'billing_information', 'billing_period', 'budget', 'checkout_options', 'customer_id', 'minimum_spend', 'paying_customer_id', 'payment_collection_method', 'plan_id', 'price_overrides', 'price_unit_amount', 'promotion_code', 'ref_id', 'resource_id', 'salesforce_id', 'schedule_strategy', 'skip_trial', 'start_date', 'subscription_entitlements', 'subscription_id', 'trial_override_configuration', 'unit_quantity')
3932
+ __field_names__ = ('additional_meta_data', 'addons', 'applied_coupon', 'await_payment_confirmation', 'billable_features', 'billing_country_code', 'billing_id', 'billing_information', 'billing_period', 'budget', 'charges', 'checkout_options', 'customer_id', 'minimum_spend', 'paying_customer_id', 'payment_collection_method', 'plan_id', 'price_overrides', 'price_unit_amount', 'promotion_code', 'ref_id', 'resource_id', 'salesforce_id', 'schedule_strategy', 'skip_trial', 'start_date', 'subscription_entitlements', 'subscription_id', 'trial_override_configuration', 'unit_quantity')
3886
3933
  additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
3887
3934
  addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonInput')), graphql_name='addons')
3888
3935
  applied_coupon = sgqlc.types.Field('SubscriptionCouponInput', graphql_name='appliedCoupon')
@@ -3893,6 +3940,7 @@ class ProvisionSubscription(sgqlc.types.Input):
3893
3940
  billing_information = sgqlc.types.Field('SubscriptionBillingInfo', graphql_name='billingInformation')
3894
3941
  billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
3895
3942
  budget = sgqlc.types.Field(BudgetConfigurationInput, graphql_name='budget')
3943
+ charges = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ChargeInput)), graphql_name='charges')
3896
3944
  checkout_options = sgqlc.types.Field(CheckoutOptions, graphql_name='checkoutOptions')
3897
3945
  customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
3898
3946
  minimum_spend = sgqlc.types.Field('SubscriptionMinimumSpendValueInput', graphql_name='minimumSpend')
@@ -3916,7 +3964,7 @@ class ProvisionSubscription(sgqlc.types.Input):
3916
3964
 
3917
3965
  class ProvisionSubscriptionInput(sgqlc.types.Input):
3918
3966
  __schema__ = schema
3919
- __field_names__ = ('additional_meta_data', 'addons', 'applied_coupon', 'await_payment_confirmation', 'billable_features', 'billing_country_code', 'billing_id', 'billing_information', 'billing_period', 'budget', 'checkout_options', 'customer_id', 'minimum_spend', 'paying_customer_id', 'payment_collection_method', 'plan_id', 'price_overrides', 'price_unit_amount', 'promotion_code', 'ref_id', 'resource_id', 'salesforce_id', 'schedule_strategy', 'skip_trial', 'start_date', 'subscription_entitlements', 'subscription_id', 'trial_override_configuration', 'unit_quantity')
3967
+ __field_names__ = ('additional_meta_data', 'addons', 'applied_coupon', 'await_payment_confirmation', 'billable_features', 'billing_country_code', 'billing_id', 'billing_information', 'billing_period', 'budget', 'charges', 'checkout_options', 'customer_id', 'minimum_spend', 'paying_customer_id', 'payment_collection_method', 'plan_id', 'price_overrides', 'price_unit_amount', 'promotion_code', 'ref_id', 'resource_id', 'salesforce_id', 'schedule_strategy', 'skip_trial', 'start_date', 'subscription_entitlements', 'subscription_id', 'trial_override_configuration', 'unit_quantity')
3920
3968
  additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
3921
3969
  addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonInput')), graphql_name='addons')
3922
3970
  applied_coupon = sgqlc.types.Field('SubscriptionCouponInput', graphql_name='appliedCoupon')
@@ -3927,6 +3975,7 @@ class ProvisionSubscriptionInput(sgqlc.types.Input):
3927
3975
  billing_information = sgqlc.types.Field('SubscriptionBillingInfo', graphql_name='billingInformation')
3928
3976
  billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
3929
3977
  budget = sgqlc.types.Field(BudgetConfigurationInput, graphql_name='budget')
3978
+ charges = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ChargeInput)), graphql_name='charges')
3930
3979
  checkout_options = sgqlc.types.Field(CheckoutOptions, graphql_name='checkoutOptions')
3931
3980
  customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
3932
3981
  minimum_spend = sgqlc.types.Field('SubscriptionMinimumSpendValueInput', graphql_name='minimumSpend')
@@ -4336,7 +4385,7 @@ class SubscriptionAddonSort(sgqlc.types.Input):
4336
4385
 
4337
4386
  class SubscriptionBillingInfo(sgqlc.types.Input):
4338
4387
  __schema__ = schema
4339
- __field_names__ = ('billing_address', 'charge_on_behalf_of_account', 'coupon_id', 'integration_id', 'invoice_days_until_due', 'is_backdated', 'is_invoice_paid', 'metadata', 'proration_behavior', 'tax_percentage', 'tax_rate_ids')
4388
+ __field_names__ = ('billing_address', 'charge_on_behalf_of_account', 'coupon_id', 'integration_id', 'invoice_days_until_due', 'is_backdated', 'is_invoice_paid', 'metadata', 'proration_behavior', 'tax_ids', 'tax_percentage', 'tax_rate_ids')
4340
4389
  billing_address = sgqlc.types.Field(BillingAddress, graphql_name='billingAddress')
4341
4390
  charge_on_behalf_of_account = sgqlc.types.Field(String, graphql_name='chargeOnBehalfOfAccount')
4342
4391
  coupon_id = sgqlc.types.Field(String, graphql_name='couponId')
@@ -4346,6 +4395,7 @@ class SubscriptionBillingInfo(sgqlc.types.Input):
4346
4395
  is_invoice_paid = sgqlc.types.Field(Boolean, graphql_name='isInvoicePaid')
4347
4396
  metadata = sgqlc.types.Field(JSON, graphql_name='metadata')
4348
4397
  proration_behavior = sgqlc.types.Field(SubscriptionProrationBehavior, graphql_name='prorationBehavior')
4398
+ tax_ids = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('TaxExempt')), graphql_name='taxIds')
4349
4399
  tax_percentage = sgqlc.types.Field(Float, graphql_name='taxPercentage')
4350
4400
  tax_rate_ids = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='taxRateIds')
4351
4401
 
@@ -4494,7 +4544,7 @@ class SubscriptionEntitlementSort(sgqlc.types.Input):
4494
4544
 
4495
4545
  class SubscriptionInput(sgqlc.types.Input):
4496
4546
  __schema__ = schema
4497
- __field_names__ = ('additional_meta_data', 'addons', 'applied_coupon', 'await_payment_confirmation', 'billable_features', 'billing_country_code', 'billing_id', 'billing_information', 'billing_period', 'budget', 'crm_id', 'customer_id', 'end_date', 'environment_id', 'is_custom_price_subscription', 'is_overriding_trial_config', 'is_trial', 'minimum_spend', 'paying_customer_id', 'payment_collection_method', 'plan_id', 'price_overrides', 'price_unit_amount', 'promotion_code', 'ref_id', 'resource_id', 'salesforce_id', 'schedule_strategy', 'start_date', 'subscription_entitlements', 'subscription_id', 'trial_end_behavior', 'unit_quantity')
4547
+ __field_names__ = ('additional_meta_data', 'addons', 'applied_coupon', 'await_payment_confirmation', 'billable_features', 'billing_country_code', 'billing_id', 'billing_information', 'billing_period', 'budget', 'charges', 'crm_id', 'customer_id', 'end_date', 'environment_id', 'is_custom_price_subscription', 'is_overriding_trial_config', 'is_trial', 'minimum_spend', 'paying_customer_id', 'payment_collection_method', 'plan_id', 'price_overrides', 'price_unit_amount', 'promotion_code', 'ref_id', 'resource_id', 'salesforce_id', 'schedule_strategy', 'start_date', 'subscription_entitlements', 'subscription_id', 'trial_end_behavior', 'unit_quantity')
4498
4548
  additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
4499
4549
  addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(SubscriptionAddonInput)), graphql_name='addons')
4500
4550
  applied_coupon = sgqlc.types.Field(SubscriptionCouponInput, graphql_name='appliedCoupon')
@@ -4505,6 +4555,7 @@ class SubscriptionInput(sgqlc.types.Input):
4505
4555
  billing_information = sgqlc.types.Field(SubscriptionBillingInfo, graphql_name='billingInformation')
4506
4556
  billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
4507
4557
  budget = sgqlc.types.Field(BudgetConfigurationInput, graphql_name='budget')
4558
+ charges = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ChargeInput)), graphql_name='charges')
4508
4559
  crm_id = sgqlc.types.Field(String, graphql_name='crmId')
4509
4560
  customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
4510
4561
  end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
@@ -4942,6 +4993,13 @@ class UnArchivePlanInput(sgqlc.types.Input):
4942
4993
  id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id')
4943
4994
 
4944
4995
 
4996
+ class UnArchiveProductInput(sgqlc.types.Input):
4997
+ __schema__ = schema
4998
+ __field_names__ = ('environment_id', 'ref_id')
4999
+ environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
5000
+ ref_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='refId')
5001
+
5002
+
4945
5003
  class UnarchiveCustomerInput(sgqlc.types.Input):
4946
5004
  __schema__ = schema
4947
5005
  __field_names__ = ('customer_id', 'environment_id')
@@ -5200,7 +5258,7 @@ class UpdateSubscriptionEntitlementInput(sgqlc.types.Input):
5200
5258
 
5201
5259
  class UpdateSubscriptionInput(sgqlc.types.Input):
5202
5260
  __schema__ = schema
5203
- __field_names__ = ('additional_meta_data', 'addons', 'applied_coupon', 'await_payment_confirmation', 'billable_features', 'billing_information', 'billing_period', 'budget', 'environment_id', 'minimum_spend', 'price_overrides', 'promotion_code', 'ref_id', 'schedule_strategy', 'subscription_entitlements', 'subscription_id', 'trial_end_date', 'unit_quantity')
5261
+ __field_names__ = ('additional_meta_data', 'addons', 'applied_coupon', 'await_payment_confirmation', 'billable_features', 'billing_information', 'billing_period', 'budget', 'charges', 'environment_id', 'minimum_spend', 'price_overrides', 'promotion_code', 'ref_id', 'schedule_strategy', 'subscription_entitlements', 'subscription_id', 'trial_end_date', 'unit_quantity')
5204
5262
  additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
5205
5263
  addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(SubscriptionAddonInput)), graphql_name='addons')
5206
5264
  applied_coupon = sgqlc.types.Field(SubscriptionCouponInput, graphql_name='appliedCoupon')
@@ -5209,6 +5267,7 @@ class UpdateSubscriptionInput(sgqlc.types.Input):
5209
5267
  billing_information = sgqlc.types.Field(SubscriptionBillingInfo, graphql_name='billingInformation')
5210
5268
  billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
5211
5269
  budget = sgqlc.types.Field(BudgetConfigurationInput, graphql_name='budget')
5270
+ charges = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ChargeInput)), graphql_name='charges')
5212
5271
  environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
5213
5272
  minimum_spend = sgqlc.types.Field(SubscriptionMinimumSpendValueInput, graphql_name='minimumSpend')
5214
5273
  price_overrides = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(PriceOverrideInput)), graphql_name='priceOverrides')
@@ -5685,17 +5744,36 @@ class ApiKey(sgqlc.types.Type):
5685
5744
  token = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='token')
5686
5745
 
5687
5746
 
5747
+ class AppStoreApplication(sgqlc.types.Type):
5748
+ __schema__ = schema
5749
+ __field_names__ = ('bundle_id', 'id', 'name', 'sku')
5750
+ bundle_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='bundleId')
5751
+ id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id')
5752
+ name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name')
5753
+ sku = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='sku')
5754
+
5755
+
5688
5756
  class AppStoreCredentials(sgqlc.types.Type):
5689
5757
  __schema__ = schema
5690
5758
  __field_names__ = ('app_apple_id', 'bundle_id', 'issuer_id', 'key_id', 'private_key', 'sandbox_environment')
5691
- app_apple_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='appAppleId')
5692
- bundle_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='bundleId')
5759
+ app_apple_id = sgqlc.types.Field(String, graphql_name='appAppleId')
5760
+ bundle_id = sgqlc.types.Field(String, graphql_name='bundleId')
5693
5761
  issuer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='issuerId')
5694
5762
  key_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='keyId')
5695
5763
  private_key = sgqlc.types.Field(String, graphql_name='privateKey')
5696
5764
  sandbox_environment = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='sandboxEnvironment')
5697
5765
 
5698
5766
 
5767
+ class AppStoreSubscription(sgqlc.types.Type):
5768
+ __schema__ = schema
5769
+ __field_names__ = ('id', 'name', 'product_id', 'subscription_group_name', 'subscription_period')
5770
+ id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id')
5771
+ name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name')
5772
+ product_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='productId')
5773
+ subscription_group_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='subscriptionGroupName')
5774
+ subscription_period = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='subscriptionPeriod')
5775
+
5776
+
5699
5777
  class ApplySubscription(sgqlc.types.Type):
5700
5778
  __schema__ = schema
5701
5779
  __field_names__ = ('entitlements', 'subscription')
@@ -6942,13 +7020,14 @@ class DefaultTrialConfigChange(sgqlc.types.Type):
6942
7020
 
6943
7021
  class DowngradeChangeVariables(sgqlc.types.Type):
6944
7022
  __schema__ = schema
6945
- __field_names__ = ('addon_ref_ids', 'addons', 'billable_features', 'billing_period', 'downgrade_plan_ref_id', 'price_overrides')
7023
+ __field_names__ = ('addon_ref_ids', 'addons', 'billable_features', 'billing_period', 'downgrade_plan_ref_id', 'price_overrides', 'recurring_credits')
6946
7024
  addon_ref_ids = sgqlc.types.Field(String, graphql_name='addonRefIds')
6947
7025
  addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PlanChangeAddon')), graphql_name='addons')
6948
7026
  billable_features = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(BillableFeature)), graphql_name='billableFeatures')
6949
7027
  billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
6950
7028
  downgrade_plan_ref_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='downgradePlanRefId')
6951
7029
  price_overrides = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PriceOverrideChangeVariables')), graphql_name='priceOverrides')
7030
+ recurring_credits = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('RecurringCredits')), graphql_name='recurringCredits')
6952
7031
 
6953
7032
 
6954
7033
  class DumpEnvironmentForMergeComparison(sgqlc.types.Type):
@@ -8013,6 +8092,18 @@ class InvoiceLine(sgqlc.types.Type):
8013
8092
  quantity = sgqlc.types.Field(Int, graphql_name='quantity')
8014
8093
 
8015
8094
 
8095
+ class ListAppStoreApplicationsResult(sgqlc.types.Type):
8096
+ __schema__ = schema
8097
+ __field_names__ = ('applications',)
8098
+ applications = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(AppStoreApplication))), graphql_name='applications')
8099
+
8100
+
8101
+ class ListAppStoreSubscriptionsResult(sgqlc.types.Type):
8102
+ __schema__ = schema
8103
+ __field_names__ = ('subscriptions',)
8104
+ subscriptions = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(AppStoreSubscription))), graphql_name='subscriptions')
8105
+
8106
+
8016
8107
  class ListAwsProductDimensionsDTO(sgqlc.types.Type):
8017
8108
  __schema__ = schema
8018
8109
  __field_names__ = ('dimensions',)
@@ -8025,6 +8116,12 @@ class ListAwsProductsResult(sgqlc.types.Type):
8025
8116
  products = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(AwsProduct))), graphql_name='products')
8026
8117
 
8027
8118
 
8119
+ class MapAppStoreSubscriptionsToPlansResult(sgqlc.types.Type):
8120
+ __schema__ = schema
8121
+ __field_names__ = ('success',)
8122
+ success = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='success')
8123
+
8124
+
8028
8125
  class Member(sgqlc.types.Type):
8029
8126
  __schema__ = schema
8030
8127
  __field_names__ = ('access_roles', 'account', 'created_at', 'cubejs_token', 'customer_token', 'email', 'hide_getting_started_page', 'id', 'member_status', 'service_api_key', 'user', 'user_id')
@@ -8188,7 +8285,7 @@ class MonthlyResetPeriodConfig(sgqlc.types.Type):
8188
8285
 
8189
8286
  class Mutation(sgqlc.types.Type):
8190
8287
  __schema__ = schema
8191
- __field_names__ = ('add_compatible_addons_to_plan', 'apply_subscription', 'archive_addon', 'archive_customer', 'archive_environment', 'archive_feature', 'archive_feature_group', 'archive_one_coupon', 'archive_one_product', 'archive_package_group', 'archive_plan', 'attach_customer_payment_method', 'cancel_schedule', 'cancel_subscription', 'charge_subscription_usage', 'create_account', 'create_addon_draft', 'create_credit_grant', 'create_custom_currency', 'create_empty_addon_draft', 'create_empty_plan_draft', 'create_feature', 'create_feature_group', 'create_many_package_entitlements', 'create_many_promotional_entitlements', 'create_offer', 'create_offer_draft', 'create_one_addon', 'create_one_coupon', 'create_one_customer', 'create_one_environment', 'create_one_experiment', 'create_one_hook', 'create_one_integration', 'create_one_plan', 'create_one_product', 'create_or_update_aws_marketplace_product', 'create_package_group', 'create_payment_session', 'create_plan_draft', 'create_subscription', 'create_usage_measurement', 'create_workflow_trigger', 'delegate_subscription_to_customer', 'delete_feature', 'delete_one_feature', 'delete_one_hook', 'delete_one_integration', 'delete_one_package_entitlement', 'delete_one_price', 'delete_one_product', 'delete_one_promotional_entitlement', 'delete_workflow_trigger', 'detach_customer_payment_method', 'duplicate_product', 'edit_package_group', 'estimate_subscription', 'estimate_subscription_update', 'grant_promotional_entitlements', 'grant_promotional_entitlements_group', 'hide_getting_started_page', 'import_customers_bulk', 'import_one_customer', 'import_subscriptions_bulk', 'init_add_stripe_customer_payment_method', 'invite_members', 'link_feature_group_to_package', 'mark_invoice_as_paid', 'merge_environment', 'migrate_package_feature_groups_to_latest', 'migrate_subscription_to_latest', 'prepare_payment_method_form', 'preview_credit_grant', 'preview_next_invoice', 'preview_subscription', 'provision_customer', 'provision_sandbox', 'provision_subscription', 'provision_subscription_v2', 'publish_addon', 'publish_offer', 'publish_plan', 'purge_customer_cache', 'recalculate_entitlements', 'register_member', 'remove_addon_draft', 'remove_base_plan_from_plan', 'remove_compatible_addons_from_plan', 'remove_coupon_from_customer', 'remove_experiment_from_customer', 'remove_experiment_from_customer_subscription', 'remove_feature_group_from_package', 'remove_member', 'remove_offer_draft', 'remove_plan_draft', 'report_entitlement_check_requested', 'report_event', 'report_usage', 'report_usage_bulk', 'resend_email_verification', 'resync_integration', 'revoke_promotional_entitlement', 'revoke_promotional_entitlements_group', 'save_auto_recharge_settings', 'set_access_roles', 'set_as_default', 'set_base_plan_on_plan', 'set_compatible_addons_on_plan', 'set_compatible_package_groups', 'set_coupon_on_customer', 'set_experiment_on_customer', 'set_experiment_on_customer_subscription', 'set_package_group_addons', 'set_package_pricing', 'set_widget_configuration', 'start_experiment', 'stop_experiment', 'subscription_maximum_spend', 'sync_tax_rates', 'transfer_subscription', 'transfer_subscription_to_resource', 'trigger_import_catalog', 'trigger_import_customers', 'trigger_plan_subscription_migration', 'trigger_rbacsync', 'trigger_subscription_billing_month_ends_soon_webhook', 'trigger_subscription_usage_sync', 'trigger_workflow', 'unarchive_addon', 'unarchive_customer', 'unarchive_environment', 'unarchive_feature', 'unarchive_feature_group', 'unarchive_plan', 'unlink_feature_group_from_package', 'unlink_promotional_entitlements_group', 'update_account', 'update_credit_grant', 'update_custom_currency', 'update_entitlements_order', 'update_feature', 'update_offer', 'update_one_addon', 'update_one_coupon', 'update_one_customer', 'update_one_environment', 'update_one_experiment', 'update_one_hook', 'update_one_integration', 'update_one_package_entitlement', 'update_one_plan', 'update_one_product', 'update_one_promotional_entitlement', 'update_one_subscription', 'update_user', 'void_credit_grant', 'workflows_login')
8288
+ __field_names__ = ('add_compatible_addons_to_plan', 'apply_subscription', 'archive_addon', 'archive_customer', 'archive_environment', 'archive_feature', 'archive_feature_group', 'archive_one_coupon', 'archive_one_product', 'archive_package_group', 'archive_plan', 'attach_customer_payment_method', 'cancel_schedule', 'cancel_subscription', 'charge_subscription_usage', 'create_account', 'create_addon_draft', 'create_credit_grant', 'create_custom_currency', 'create_empty_addon_draft', 'create_empty_plan_draft', 'create_feature', 'create_feature_group', 'create_many_package_entitlements', 'create_many_promotional_entitlements', 'create_offer', 'create_offer_draft', 'create_one_addon', 'create_one_coupon', 'create_one_customer', 'create_one_environment', 'create_one_experiment', 'create_one_hook', 'create_one_integration', 'create_one_plan', 'create_one_product', 'create_or_update_aws_marketplace_product', 'create_package_group', 'create_payment_session', 'create_plan_draft', 'create_subscription', 'create_usage_measurement', 'create_workflow_trigger', 'delegate_subscription_to_customer', 'delete_feature', 'delete_one_feature', 'delete_one_hook', 'delete_one_integration', 'delete_one_package_entitlement', 'delete_one_price', 'delete_one_product', 'delete_one_promotional_entitlement', 'delete_workflow_trigger', 'detach_customer_payment_method', 'duplicate_product', 'edit_package_group', 'estimate_subscription', 'estimate_subscription_update', 'grant_promotional_entitlements', 'grant_promotional_entitlements_group', 'hide_getting_started_page', 'import_customers_bulk', 'import_one_customer', 'import_subscriptions_bulk', 'init_add_stripe_customer_payment_method', 'invite_members', 'link_feature_group_to_package', 'map_app_store_subscriptions_to_plans', 'mark_invoice_as_paid', 'merge_environment', 'migrate_package_feature_groups_to_latest', 'migrate_subscription_to_latest', 'prepare_payment_method_form', 'preview_credit_grant', 'preview_next_invoice', 'preview_subscription', 'provision_customer', 'provision_sandbox', 'provision_subscription', 'provision_subscription_v2', 'publish_addon', 'publish_offer', 'publish_plan', 'purge_customer_cache', 'recalculate_entitlements', 'register_member', 'remove_addon_draft', 'remove_base_plan_from_plan', 'remove_compatible_addons_from_plan', 'remove_coupon_from_customer', 'remove_experiment_from_customer', 'remove_experiment_from_customer_subscription', 'remove_feature_group_from_package', 'remove_member', 'remove_offer_draft', 'remove_plan_draft', 'report_entitlement_check_requested', 'report_event', 'report_usage', 'report_usage_bulk', 'resend_email_verification', 'resync_integration', 'revoke_promotional_entitlement', 'revoke_promotional_entitlements_group', 'save_auto_recharge_settings', 'set_access_roles', 'set_as_default', 'set_base_plan_on_plan', 'set_compatible_addons_on_plan', 'set_compatible_package_groups', 'set_coupon_on_customer', 'set_experiment_on_customer', 'set_experiment_on_customer_subscription', 'set_package_group_addons', 'set_package_pricing', 'set_widget_configuration', 'start_experiment', 'stop_experiment', 'subscription_maximum_spend', 'sync_tax_rates', 'transfer_subscription', 'transfer_subscription_to_resource', 'trigger_import_catalog', 'trigger_import_customers', 'trigger_plan_subscription_migration', 'trigger_rbacsync', 'trigger_subscription_billing_month_ends_soon_webhook', 'trigger_subscription_usage_sync', 'trigger_workflow', 'unarchive_addon', 'unarchive_customer', 'unarchive_environment', 'unarchive_feature', 'unarchive_feature_group', 'unarchive_one_product', 'unarchive_plan', 'unlink_feature_group_from_package', 'unlink_promotional_entitlements_group', 'update_account', 'update_credit_grant', 'update_custom_currency', 'update_entitlements_order', 'update_feature', 'update_offer', 'update_one_addon', 'update_one_coupon', 'update_one_customer', 'update_one_environment', 'update_one_experiment', 'update_one_hook', 'update_one_integration', 'update_one_package_entitlement', 'update_one_plan', 'update_one_product', 'update_one_promotional_entitlement', 'update_one_subscription', 'update_user', 'void_credit_grant', 'workflows_login')
8192
8289
  add_compatible_addons_to_plan = sgqlc.types.Field(sgqlc.types.non_null('Plan'), graphql_name='addCompatibleAddonsToPlan', args=sgqlc.types.ArgDict((
8193
8290
  ('input', sgqlc.types.Arg(sgqlc.types.non_null(AddCompatibleAddonsToPlanInput), graphql_name='input', default=None)),
8194
8291
  ))
@@ -8455,6 +8552,10 @@ class Mutation(sgqlc.types.Type):
8455
8552
  )
8456
8553
  link_feature_group_to_package = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('PackageEntitlement'))), graphql_name='linkFeatureGroupToPackage', args=sgqlc.types.ArgDict((
8457
8554
  ('input', sgqlc.types.Arg(sgqlc.types.non_null(LinkFeatureGroupToPackageInput), graphql_name='input', default=None)),
8555
+ ))
8556
+ )
8557
+ map_app_store_subscriptions_to_plans = sgqlc.types.Field(sgqlc.types.non_null(MapAppStoreSubscriptionsToPlansResult), graphql_name='mapAppStoreSubscriptionsToPlans', args=sgqlc.types.ArgDict((
8558
+ ('input', sgqlc.types.Arg(sgqlc.types.non_null(AppStoreSubscriptionsToPlansMappingInput), graphql_name='input', default=None)),
8458
8559
  ))
8459
8560
  )
8460
8561
  mark_invoice_as_paid = sgqlc.types.Field(String, graphql_name='markInvoiceAsPaid', args=sgqlc.types.ArgDict((
@@ -8710,6 +8811,10 @@ class Mutation(sgqlc.types.Type):
8710
8811
  )
8711
8812
  unarchive_feature_group = sgqlc.types.Field(sgqlc.types.non_null(FeatureGroup), graphql_name='unarchiveFeatureGroup', args=sgqlc.types.ArgDict((
8712
8813
  ('input', sgqlc.types.Arg(sgqlc.types.non_null(UnArchiveFeatureGroupInput), graphql_name='input', default=None)),
8814
+ ))
8815
+ )
8816
+ unarchive_one_product = sgqlc.types.Field(sgqlc.types.non_null('Product'), graphql_name='unarchiveOneProduct', args=sgqlc.types.ArgDict((
8817
+ ('input', sgqlc.types.Arg(sgqlc.types.non_null(UnArchiveProductInput), graphql_name='input', default=None)),
8713
8818
  ))
8714
8819
  )
8715
8820
  unarchive_plan = sgqlc.types.Field(sgqlc.types.non_null('Plan'), graphql_name='unarchivePlan', args=sgqlc.types.ArgDict((
@@ -9519,13 +9624,14 @@ class PlanChangeAddon(sgqlc.types.Type):
9519
9624
 
9520
9625
  class PlanChangeVariables(sgqlc.types.Type):
9521
9626
  __schema__ = schema
9522
- __field_names__ = ('addons', 'billable_features', 'billing_period', 'change_type', 'plan_ref_id', 'price_overrides')
9627
+ __field_names__ = ('addons', 'billable_features', 'billing_period', 'change_type', 'plan_ref_id', 'price_overrides', 'recurring_credits')
9523
9628
  addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(PlanChangeAddon)), graphql_name='addons')
9524
9629
  billable_features = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(BillableFeature)), graphql_name='billableFeatures')
9525
9630
  billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
9526
9631
  change_type = sgqlc.types.Field(sgqlc.types.non_null(PlanChangeType), graphql_name='changeType')
9527
9632
  plan_ref_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='planRefId')
9528
9633
  price_overrides = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PriceOverrideChangeVariables')), graphql_name='priceOverrides')
9634
+ recurring_credits = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('RecurringCredits')), graphql_name='recurringCredits')
9529
9635
 
9530
9636
 
9531
9637
  class PlanCompatibleAddonChange(sgqlc.types.Type):
@@ -10156,7 +10262,7 @@ class PublishPackageResult(sgqlc.types.Type):
10156
10262
 
10157
10263
  class Query(sgqlc.types.Type):
10158
10264
  __schema__ = schema
10159
- __field_names__ = ('addon_associated_entities', 'addons', 'aggregated_events_by_customer', 'billing_products', 'cached_entitlements', 'checkout_state', 'coupon', 'coupons', 'credit_balance_summary', 'credit_grants', 'credit_usage', 'credits_ledger', 'current_environment', 'current_user', 'custom_currencies', 'customer_portal', 'customer_resources', 'customer_subscriptions', 'customers', 'does_feature_exist', 'dump_environment_for_merge_comparison', 'dump_environment_product_catalog', 'entitlement', 'entitlements', 'entitlements_state', 'environments', 'event_logs', 'events_fields', 'experiment', 'experiments', 'feature_associated_latest_packages', 'feature_group', 'feature_group_associated_latest_packages', 'feature_groups', 'features', 'fetch_account', 'get_active_subscriptions', 'get_addon_by_ref_id', 'get_auth0_applications', 'get_auto_recharge_settings', 'get_aws_external_id', 'get_customer_by_ref_id', 'get_experiment_stats', 'get_offer', 'get_package_group', 'get_paywall', 'get_plan_by_ref_id', 'get_subscription', 'hook', 'hooks', 'import_integration_tasks', 'integrations', 'is_account_email_domain_taken', 'list_aws_product_dimensions', 'list_aws_products', 'members', 'mock_paywall', 'offers', 'package_entitlements', 'package_group', 'package_groups', 'paywall', 'plans', 'products', 'promotional_entitlements', 'sdk_configuration', 'send_test_hook', 'stripe_customers', 'stripe_products', 'stripe_subscriptions', 'subscription_entitlements', 'subscription_migration_tasks', 'subscriptions', 'test_hook_data', 'trigger_workflow_with_test_event', 'usage_events', 'usage_history', 'usage_history_v2', 'usage_measurements', 'validate_merge_environment', 'verified_account_domains', 'widget_configuration', 'workflow_triggers')
10265
+ __field_names__ = ('addon_associated_entities', 'addons', 'aggregated_events_by_customer', 'billing_products', 'cached_entitlements', 'checkout_state', 'coupon', 'coupons', 'credit_balance_summary', 'credit_grants', 'credit_usage', 'credits_ledger', 'current_environment', 'current_user', 'custom_currencies', 'customer_portal', 'customer_resources', 'customer_subscriptions', 'customers', 'does_feature_exist', 'dump_environment_for_merge_comparison', 'dump_environment_product_catalog', 'entitlement', 'entitlements', 'entitlements_state', 'environments', 'event_logs', 'events_fields', 'experiment', 'experiments', 'feature_associated_latest_packages', 'feature_group', 'feature_group_associated_latest_packages', 'feature_groups', 'features', 'fetch_account', 'get_active_subscriptions', 'get_addon_by_ref_id', 'get_auth0_applications', 'get_auto_recharge_settings', 'get_aws_external_id', 'get_customer_by_ref_id', 'get_experiment_stats', 'get_offer', 'get_package_group', 'get_paywall', 'get_plan_by_ref_id', 'get_subscription', 'hook', 'hooks', 'import_integration_tasks', 'integrations', 'is_account_email_domain_taken', 'list_app_store_applications', 'list_app_store_subscriptions', 'list_aws_product_dimensions', 'list_aws_products', 'members', 'mock_paywall', 'offers', 'package_entitlements', 'package_group', 'package_groups', 'paywall', 'plans', 'products', 'promotional_entitlements', 'sdk_configuration', 'send_test_hook', 'stripe_customers', 'stripe_products', 'stripe_subscriptions', 'subscription_entitlements', 'subscription_migration_tasks', 'subscriptions', 'test_hook_data', 'trigger_workflow_with_test_event', 'usage_events', 'usage_history', 'usage_history_v2', 'usage_measurements', 'validate_merge_environment', 'verified_account_domains', 'widget_configuration', 'workflow_triggers')
10160
10266
  addon_associated_entities = sgqlc.types.Field(sgqlc.types.non_null(AddonAssociatedEntities), graphql_name='addonAssociatedEntities', args=sgqlc.types.ArgDict((
10161
10267
  ('input', sgqlc.types.Arg(sgqlc.types.non_null(AddonAssociatedEntitiesInput), graphql_name='input', default=None)),
10162
10268
  ))
@@ -10268,7 +10374,7 @@ class Query(sgqlc.types.Type):
10268
10374
  ))
10269
10375
  )
10270
10376
  event_logs = sgqlc.types.Field(sgqlc.types.non_null(EventLogConnection), graphql_name='eventLogs', args=sgqlc.types.ArgDict((
10271
- ('filter', sgqlc.types.Arg(sgqlc.types.non_null(EventLogFilter), graphql_name='filter', default=None)),
10377
+ ('filter', sgqlc.types.Arg(EventLogFilter, graphql_name='filter', default={})),
10272
10378
  ('paging', sgqlc.types.Arg(CursorPaging, graphql_name='paging', default={'first': 10})),
10273
10379
  ('sorting', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(EventLogSort)), graphql_name='sorting', default=[{'direction': 'DESC', 'field': 'createdAt'}])),
10274
10380
  ))
@@ -10381,6 +10487,14 @@ class Query(sgqlc.types.Type):
10381
10487
  )
10382
10488
  is_account_email_domain_taken = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='isAccountEmailDomainTaken', args=sgqlc.types.ArgDict((
10383
10489
  ('domain', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='domain', default=None)),
10490
+ ))
10491
+ )
10492
+ list_app_store_applications = sgqlc.types.Field(sgqlc.types.non_null(ListAppStoreApplicationsResult), graphql_name='listAppStoreApplications', args=sgqlc.types.ArgDict((
10493
+ ('input', sgqlc.types.Arg(sgqlc.types.non_null(ListAppStoreApplicationsInput), graphql_name='input', default=None)),
10494
+ ))
10495
+ )
10496
+ list_app_store_subscriptions = sgqlc.types.Field(sgqlc.types.non_null(ListAppStoreSubscriptionsResult), graphql_name='listAppStoreSubscriptions', args=sgqlc.types.ArgDict((
10497
+ ('input', sgqlc.types.Arg(sgqlc.types.non_null(ListAppStoreSubscriptionsInput), graphql_name='input', default=None)),
10384
10498
  ))
10385
10499
  )
10386
10500
  list_aws_product_dimensions = sgqlc.types.Field(sgqlc.types.non_null(ListAwsProductDimensionsDTO), graphql_name='listAwsProductDimensions', args=sgqlc.types.ArgDict((
@@ -10527,6 +10641,20 @@ class RecalculateEntitlementsResult(sgqlc.types.Type):
10527
10641
  task_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='taskId')
10528
10642
 
10529
10643
 
10644
+ class RecurringCredits(sgqlc.types.Type):
10645
+ __schema__ = schema
10646
+ __field_names__ = ('custom_currency_id', 'quantity')
10647
+ custom_currency_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customCurrencyId')
10648
+ quantity = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='quantity')
10649
+
10650
+
10651
+ class RecurringCreditsChangeVariables(sgqlc.types.Type):
10652
+ __schema__ = schema
10653
+ __field_names__ = ('custom_currency_id', 'new_quantity')
10654
+ custom_currency_id = sgqlc.types.Field(String, graphql_name='customCurrencyId')
10655
+ new_quantity = sgqlc.types.Field(Float, graphql_name='newQuantity')
10656
+
10657
+
10530
10658
  class ResyncIntegrationResult(sgqlc.types.Type):
10531
10659
  __schema__ = schema
10532
10660
  __field_names__ = ('integration_id', 'task_id')
@@ -11155,9 +11283,10 @@ class SubscriptionPreviewV2(sgqlc.types.Type):
11155
11283
 
11156
11284
  class SubscriptionPrice(sgqlc.types.Type):
11157
11285
  __schema__ = schema
11158
- __field_names__ = ('billing_model', 'created_at', 'feature_id', 'has_soft_limit', 'id', 'price', 'subscription', 'updated_at', 'usage_limit')
11286
+ __field_names__ = ('billing_model', 'created_at', 'credits_quantity', 'feature_id', 'has_soft_limit', 'id', 'price', 'subscription', 'updated_at', 'usage_limit')
11159
11287
  billing_model = sgqlc.types.Field(BillingModel, graphql_name='billingModel')
11160
11288
  created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
11289
+ credits_quantity = sgqlc.types.Field(Float, graphql_name='creditsQuantity')
11161
11290
  feature_id = sgqlc.types.Field(String, graphql_name='featureId')
11162
11291
  has_soft_limit = sgqlc.types.Field(Boolean, graphql_name='hasSoftLimit')
11163
11292
  id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
@@ -11872,7 +12001,7 @@ class ResetPeriodConfiguration(sgqlc.types.Union):
11872
12001
 
11873
12002
  class ScheduleVariables(sgqlc.types.Union):
11874
12003
  __schema__ = schema
11875
- __types__ = (AddonChangeVariables, AddonPriceOverrideChangeVariables, BillingPeriodChangeVariables, CouponChangeVariables, DowngradeChangeVariables, PlanChangeVariables, PlanPriceOverrideChangeVariables, UnitAmountChangeVariables)
12004
+ __types__ = (AddonChangeVariables, AddonPriceOverrideChangeVariables, BillingPeriodChangeVariables, CouponChangeVariables, DowngradeChangeVariables, PlanChangeVariables, PlanPriceOverrideChangeVariables, RecurringCreditsChangeVariables, UnitAmountChangeVariables)
11876
12005
 
11877
12006
 
11878
12007
  class SyncRevisionData(sgqlc.types.Union):