stigg-api-client 3.13.0__py3-none-any.whl → 5.99.0__py3-none-any.whl
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.
- stigg/client.py +10 -3
- stigg/generated/operations.py +347 -1
- stigg/generated/schema.py +1413 -155
- {stigg_api_client-3.13.0.dist-info → stigg_api_client-5.99.0.dist-info}/METADATA +3 -1
- stigg_api_client-5.99.0.dist-info/RECORD +9 -0
- stigg_api_client-3.13.0.dist-info/RECORD +0 -9
- {stigg_api_client-3.13.0.dist-info → stigg_api_client-5.99.0.dist-info}/LICENSE +0 -0
- {stigg_api_client-3.13.0.dist-info → stigg_api_client-5.99.0.dist-info}/WHEEL +0 -0
stigg/generated/schema.py
CHANGED
|
@@ -17,7 +17,7 @@ schema -= sgqlc.types.relay.PageInfo
|
|
|
17
17
|
########################################################################
|
|
18
18
|
class AccessDeniedReason(sgqlc.types.Enum):
|
|
19
19
|
__schema__ = schema
|
|
20
|
-
__choices__ = ('BudgetExceeded', 'CustomerIsArchived', 'CustomerNotFound', 'CustomerResourceNotFound', 'FeatureNotFound', 'FeatureTypeMismatch', 'NoActiveSubscription', 'NoFeatureEntitlementInSubscription', 'RequestedUsageExceedingLimit', 'RequestedValuesMismatch', 'Unknown')
|
|
20
|
+
__choices__ = ('BudgetExceeded', 'CustomerIsArchived', 'CustomerNotFound', 'CustomerResourceNotFound', 'FeatureNotFound', 'FeatureTypeMismatch', 'InsufficientCredits', 'NoActiveSubscription', 'NoFeatureEntitlementInSubscription', 'RequestedUsageExceedingLimit', 'RequestedValuesMismatch', 'Revoked', 'Unknown')
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
class AccountAccessMethod(sgqlc.types.Enum):
|
|
@@ -77,7 +77,7 @@ class BillingCadence(sgqlc.types.Enum):
|
|
|
77
77
|
|
|
78
78
|
class BillingModel(sgqlc.types.Enum):
|
|
79
79
|
__schema__ = schema
|
|
80
|
-
__choices__ = ('FLAT_FEE', 'MINIMUM_SPEND', 'PER_UNIT', 'USAGE_BASED')
|
|
80
|
+
__choices__ = ('CREDIT_BASED', 'FLAT_FEE', 'MINIMUM_SPEND', 'PER_UNIT', 'USAGE_BASED')
|
|
81
81
|
|
|
82
82
|
|
|
83
83
|
class BillingPeriod(sgqlc.types.Enum):
|
|
@@ -87,7 +87,7 @@ class BillingPeriod(sgqlc.types.Enum):
|
|
|
87
87
|
|
|
88
88
|
class BillingVendorIdentifier(sgqlc.types.Enum):
|
|
89
89
|
__schema__ = schema
|
|
90
|
-
__choices__ = ('STRIPE',)
|
|
90
|
+
__choices__ = ('STRIPE', 'ZUORA')
|
|
91
91
|
|
|
92
92
|
|
|
93
93
|
Boolean = sgqlc.types.Boolean
|
|
@@ -97,9 +97,14 @@ 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
|
-
__choices__ = ('EQUALS', 'GREATER_THAN', 'GREATER_THAN_OR_EQUAL', 'IS_NOT_NULL', 'IS_NULL', 'LESS_THAN', 'LESS_THAN_OR_EQUAL', 'NOT_EQUALS')
|
|
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')
|
|
103
108
|
|
|
104
109
|
|
|
105
110
|
class ConnectionCursor(sgqlc.types.Scalar):
|
|
@@ -126,9 +131,39 @@ class CouponType(sgqlc.types.Enum):
|
|
|
126
131
|
__choices__ = ('FIXED', 'PERCENTAGE')
|
|
127
132
|
|
|
128
133
|
|
|
134
|
+
class CreditGrantCadence(sgqlc.types.Enum):
|
|
135
|
+
__schema__ = schema
|
|
136
|
+
__choices__ = ('BEGINNING_OF_BILLING_PERIOD', 'MONTHLY')
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
class CreditGrantInvoiceBillingReason(sgqlc.types.Enum):
|
|
140
|
+
__schema__ = schema
|
|
141
|
+
__choices__ = ('MANUAL', 'OTHER')
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
class CreditGrantInvoiceStatus(sgqlc.types.Enum):
|
|
145
|
+
__schema__ = schema
|
|
146
|
+
__choices__ = ('OPEN', 'PAID')
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
class CreditGrantStatus(sgqlc.types.Enum):
|
|
150
|
+
__schema__ = schema
|
|
151
|
+
__choices__ = ('ACTIVE', 'EXPIRED', 'PAYMENT_PENDING', 'SCHEDULED', 'VOIDED')
|
|
152
|
+
|
|
153
|
+
|
|
129
154
|
class CreditGrantType(sgqlc.types.Enum):
|
|
130
155
|
__schema__ = schema
|
|
131
|
-
__choices__ = ('PAID', 'PROMOTIONAL')
|
|
156
|
+
__choices__ = ('PAID', 'PROMOTIONAL', 'RECURRING')
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
class CreditLedgerEventType(sgqlc.types.Enum):
|
|
160
|
+
__schema__ = schema
|
|
161
|
+
__choices__ = ('CREDITS_CONSUMED', 'CREDITS_EXPIRED', 'CREDITS_GRANTED', 'CREDITS_VOIDED')
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
class CreditUsageTimeRange(sgqlc.types.Enum):
|
|
165
|
+
__schema__ = schema
|
|
166
|
+
__choices__ = ('LAST_DAY', 'LAST_MONTH', 'LAST_WEEK', 'LAST_YEAR')
|
|
132
167
|
|
|
133
168
|
|
|
134
169
|
class Currency(sgqlc.types.Enum):
|
|
@@ -143,7 +178,7 @@ class CustomerResourceSortFields(sgqlc.types.Enum):
|
|
|
143
178
|
|
|
144
179
|
class CustomerSortFields(sgqlc.types.Enum):
|
|
145
180
|
__schema__ = schema
|
|
146
|
-
__choices__ = ('billingId', 'createdAt', 'crmHubspotCompanyId', 'crmHubspotCompanyUrl', 'crmId', 'customerId', 'deletedAt', 'email', 'environmentId', 'id', 'name', 'refId', 'salesforceId', 'searchQuery', 'updatedAt')
|
|
181
|
+
__choices__ = ('awsMarketplaceCustomerId', 'billingId', 'createdAt', 'crmHubspotCompanyId', 'crmHubspotCompanyUrl', 'crmId', 'customerId', 'deletedAt', 'email', 'environmentId', 'id', 'name', 'refId', 'salesforceId', 'searchQuery', 'updatedAt')
|
|
147
182
|
|
|
148
183
|
|
|
149
184
|
class CustomerSubscriptionSortFields(sgqlc.types.Enum):
|
|
@@ -178,6 +213,11 @@ class EntitlementResetPeriod(sgqlc.types.Enum):
|
|
|
178
213
|
__choices__ = ('DAY', 'HOUR', 'MONTH', 'WEEK', 'YEAR')
|
|
179
214
|
|
|
180
215
|
|
|
216
|
+
class EntitlementsStateAccessDeniedReason(sgqlc.types.Enum):
|
|
217
|
+
__schema__ = schema
|
|
218
|
+
__choices__ = ('CustomerNotFound', 'NoActiveSubscription')
|
|
219
|
+
|
|
220
|
+
|
|
181
221
|
class EntitySelectionMode(sgqlc.types.Enum):
|
|
182
222
|
__schema__ = schema
|
|
183
223
|
__choices__ = ('BLACK_LIST', 'WHITE_LIST')
|
|
@@ -205,7 +245,7 @@ class EnvironmentType(sgqlc.types.Enum):
|
|
|
205
245
|
|
|
206
246
|
class ErrorCode(sgqlc.types.Enum):
|
|
207
247
|
__schema__ = schema
|
|
208
|
-
__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', 'CannotChangeBillingIntegration', 'CannotDeleteCustomerError', 'CannotDeleteDefaultIntegration', 'CannotDeleteFeatureError', '
|
|
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')
|
|
209
249
|
|
|
210
250
|
|
|
211
251
|
class EventActor(sgqlc.types.Enum):
|
|
@@ -215,17 +255,17 @@ class EventActor(sgqlc.types.Enum):
|
|
|
215
255
|
|
|
216
256
|
class EventEntityType(sgqlc.types.Enum):
|
|
217
257
|
__schema__ = schema
|
|
218
|
-
__choices__ = ('ADDON', 'COUPON', 'CUSTOMER', 'ENTITLEMENT', 'FEATURE', 'IMPORT', 'MEASUREMENT', 'PACKAGE', 'PACKAGE_GROUP', 'PLAN', 'PRODUCT', 'PROMOTIONAL_ENTITLEMENT', 'SUBSCRIPTION')
|
|
258
|
+
__choices__ = ('ADDON', 'COUPON', 'CREDIT', 'CUSTOMER', 'ENTITLEMENT', 'FEATURE', 'FEATURE_GROUP', 'IMPORT', 'MEASUREMENT', 'PACKAGE', 'PACKAGE_GROUP', 'PLAN', 'PRODUCT', 'PROMOTIONAL_ENTITLEMENT', 'SUBSCRIPTION')
|
|
219
259
|
|
|
220
260
|
|
|
221
261
|
class EventLogSortFields(sgqlc.types.Enum):
|
|
222
262
|
__schema__ = schema
|
|
223
|
-
__choices__ = ('createdAt', 'entityId', 'environmentId', 'eventLogType', 'id', 'parentEntityId')
|
|
263
|
+
__choices__ = ('createdAt', 'entityId', 'entityType', 'environmentId', 'eventLogType', 'id', 'parentEntityId', 'traceId')
|
|
224
264
|
|
|
225
265
|
|
|
226
266
|
class EventLogType(sgqlc.types.Enum):
|
|
227
267
|
__schema__ = schema
|
|
228
|
-
__choices__ = ('ADDON_CREATED', 'ADDON_DELETED', 'ADDON_UPDATED', 'COUPON_ARCHIVED', 'COUPON_CREATED', 'COUPON_UPDATED', 'CREATE_SUBSCRIPTION_FAILED', '
|
|
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')
|
|
229
269
|
|
|
230
270
|
|
|
231
271
|
class ExperimentSortFields(sgqlc.types.Enum):
|
|
@@ -270,6 +310,11 @@ class FontWeight(sgqlc.types.Enum):
|
|
|
270
310
|
__choices__ = ('BOLD', 'NORMAL')
|
|
271
311
|
|
|
272
312
|
|
|
313
|
+
class GrantExpirationPeriod(sgqlc.types.Enum):
|
|
314
|
+
__schema__ = schema
|
|
315
|
+
__choices__ = ('OneMonth', 'OneYear')
|
|
316
|
+
|
|
317
|
+
|
|
273
318
|
class HookSortFields(sgqlc.types.Enum):
|
|
274
319
|
__schema__ = schema
|
|
275
320
|
__choices__ = ('createdAt', 'endpoint', 'environmentId', 'id', 'status')
|
|
@@ -323,6 +368,16 @@ class MonthlyAccordingTo(sgqlc.types.Enum):
|
|
|
323
368
|
__choices__ = ('StartOfTheMonth', 'SubscriptionStart')
|
|
324
369
|
|
|
325
370
|
|
|
371
|
+
class OfferSortFields(sgqlc.types.Enum):
|
|
372
|
+
__schema__ = schema
|
|
373
|
+
__choices__ = ('createdAt', 'environmentId', 'id', 'isDefault', 'isLatest', 'offerId', 'status', 'version')
|
|
374
|
+
|
|
375
|
+
|
|
376
|
+
class OfferStatus(sgqlc.types.Enum):
|
|
377
|
+
__schema__ = schema
|
|
378
|
+
__choices__ = ('ARCHIVED', 'DRAFT', 'PUBLISHED')
|
|
379
|
+
|
|
380
|
+
|
|
326
381
|
class OverageBillingPeriod(sgqlc.types.Enum):
|
|
327
382
|
__schema__ = schema
|
|
328
383
|
__choices__ = ('MONTHLY', 'ON_SUBSCRIPTION_RENEWAL')
|
|
@@ -390,7 +445,12 @@ class PricingType(sgqlc.types.Enum):
|
|
|
390
445
|
|
|
391
446
|
class ProductSortFields(sgqlc.types.Enum):
|
|
392
447
|
__schema__ = schema
|
|
393
|
-
__choices__ = ('awsMarketplaceProductCode', 'awsMarketplaceProductId', 'createdAt', 'description', 'displayName', 'environmentId', 'id', 'isDefaultProduct', 'multipleSubscriptions', 'refId', 'updatedAt')
|
|
448
|
+
__choices__ = ('awsMarketplaceProductCode', 'awsMarketplaceProductId', 'createdAt', 'description', 'displayName', 'environmentId', 'id', 'isDefaultProduct', 'multipleSubscriptions', 'refId', 'status', 'updatedAt')
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+
class ProductStatus(sgqlc.types.Enum):
|
|
452
|
+
__schema__ = schema
|
|
453
|
+
__choices__ = ('ARCHIVED', 'PUBLISHED')
|
|
394
454
|
|
|
395
455
|
|
|
396
456
|
class PromotionalEntitlementPeriod(sgqlc.types.Enum):
|
|
@@ -413,11 +473,6 @@ class ProrationBehavior(sgqlc.types.Enum):
|
|
|
413
473
|
__choices__ = ('CREATE_PRORATIONS', 'INVOICE_IMMEDIATELY')
|
|
414
474
|
|
|
415
475
|
|
|
416
|
-
class ProrationBehaviorExtended(sgqlc.types.Enum):
|
|
417
|
-
__schema__ = schema
|
|
418
|
-
__choices__ = ('CREATE_PRORATIONS', 'INVOICE_IMMEDIATELY', 'NONE')
|
|
419
|
-
|
|
420
|
-
|
|
421
476
|
class ProvisionSubscriptionStatus(sgqlc.types.Enum):
|
|
422
477
|
__schema__ = schema
|
|
423
478
|
__choices__ = ('PAYMENT_REQUIRED', 'SUCCESS')
|
|
@@ -515,9 +570,14 @@ class SubscriptionPriceSortFields(sgqlc.types.Enum):
|
|
|
515
570
|
__choices__ = ('billingModel', 'createdAt', 'featureId', 'hasSoftLimit', 'id', 'updatedAt', 'usageLimit')
|
|
516
571
|
|
|
517
572
|
|
|
573
|
+
class SubscriptionProrationBehavior(sgqlc.types.Enum):
|
|
574
|
+
__schema__ = schema
|
|
575
|
+
__choices__ = ('CREATE_PRORATIONS', 'INVOICE_IMMEDIATELY', 'NONE')
|
|
576
|
+
|
|
577
|
+
|
|
518
578
|
class SubscriptionQuerySortFields(sgqlc.types.Enum):
|
|
519
579
|
__schema__ = schema
|
|
520
|
-
__choices__ = ('createdAt', 'customerId', 'environmentId', 'productId', 'resourceId', 'status')
|
|
580
|
+
__choices__ = ('billingId', 'cancellationDate', 'createdAt', 'customerId', 'endDate', 'environmentId', 'paymentCollection', 'pricingType', 'productId', 'resourceId', 'salesforceId', 'startDate', 'status', 'subscriptionId')
|
|
521
581
|
|
|
522
582
|
|
|
523
583
|
class SubscriptionScheduleStatus(sgqlc.types.Enum):
|
|
@@ -527,7 +587,7 @@ class SubscriptionScheduleStatus(sgqlc.types.Enum):
|
|
|
527
587
|
|
|
528
588
|
class SubscriptionScheduleType(sgqlc.types.Enum):
|
|
529
589
|
__schema__ = schema
|
|
530
|
-
__choices__ = ('AdditionalMetaData', 'Addon', 'BillingInfoMetadata', 'BillingPeriod', 'Coupon', 'Downgrade', 'MigrateToLatest', 'Plan', 'PriceOverride', 'UnitAmount')
|
|
590
|
+
__choices__ = ('AdditionalMetaData', 'Addon', 'BillingInfoMetadata', 'BillingPeriod', 'Coupon', 'Downgrade', 'MigrateToLatest', 'Plan', 'PriceOverride', 'RecurringCredits', 'UnitAmount')
|
|
531
591
|
|
|
532
592
|
|
|
533
593
|
class SubscriptionStartSetup(sgqlc.types.Enum):
|
|
@@ -560,6 +620,11 @@ class TaskType(sgqlc.types.Enum):
|
|
|
560
620
|
__choices__ = ('IMPORT_INTEGRATION_CATALOG', 'IMPORT_INTEGRATION_CUSTOMERS', 'IMPORT_SUBSCRIPTIONS_BULK', 'RECALCULATE_BATCH_ENTITLEMENTS', 'RECALCULATE_ENTITLEMENTS', 'RESYNC_INTEGRATION', 'SUBSCRIPTION_MIGRATION', 'SUBSCRIPTION_MIGRATION_V2')
|
|
561
621
|
|
|
562
622
|
|
|
623
|
+
class ThresholdType(sgqlc.types.Enum):
|
|
624
|
+
__schema__ = schema
|
|
625
|
+
__choices__ = ('CreditAmount', 'DollarAmount')
|
|
626
|
+
|
|
627
|
+
|
|
563
628
|
class TiersMode(sgqlc.types.Enum):
|
|
564
629
|
__schema__ = schema
|
|
565
630
|
__choices__ = ('GRADUATED', 'VOLUME')
|
|
@@ -601,7 +666,7 @@ class UsageUpdateBehavior(sgqlc.types.Enum):
|
|
|
601
666
|
|
|
602
667
|
class VendorIdentifier(sgqlc.types.Enum):
|
|
603
668
|
__schema__ = schema
|
|
604
|
-
__choices__ = ('AUTH0', 'AWS_MARKETPLACE', 'BIG_QUERY', 'HUBSPOT', 'OPEN_FGA', 'SALESFORCE', 'SNOWFLAKE', 'STRIPE', 'ZUORA')
|
|
669
|
+
__choices__ = ('APP_STORE', 'AUTH0', 'AWS_MARKETPLACE', 'BIG_QUERY', 'HUBSPOT', 'OPEN_FGA', 'SALESFORCE', 'SNOWFLAKE', 'STRIPE', 'ZUORA')
|
|
605
670
|
|
|
606
671
|
|
|
607
672
|
class VendorType(sgqlc.types.Enum):
|
|
@@ -674,7 +739,7 @@ class AddonCreateInput(sgqlc.types.Input):
|
|
|
674
739
|
|
|
675
740
|
class AddonFilter(sgqlc.types.Input):
|
|
676
741
|
__schema__ = schema
|
|
677
|
-
__field_names__ = ('and_', 'billing_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'is_latest', 'or_', 'pricing_type', 'product_id', 'ref_id', 'status', 'updated_at', 'version_number')
|
|
742
|
+
__field_names__ = ('and_', 'billing_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'is_latest', 'offer', 'or_', 'pricing_type', 'product_id', 'ref_id', 'status', 'updated_at', 'version_number')
|
|
678
743
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('AddonFilter')), graphql_name='and')
|
|
679
744
|
billing_id = sgqlc.types.Field('StringFieldComparison', graphql_name='billingId')
|
|
680
745
|
created_at = sgqlc.types.Field('DateFieldComparison', graphql_name='createdAt')
|
|
@@ -683,6 +748,7 @@ class AddonFilter(sgqlc.types.Input):
|
|
|
683
748
|
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
684
749
|
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
685
750
|
is_latest = sgqlc.types.Field('BooleanFieldComparison', graphql_name='isLatest')
|
|
751
|
+
offer = sgqlc.types.Field('AddonFilterOfferFilter', graphql_name='offer')
|
|
686
752
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('AddonFilter')), graphql_name='or')
|
|
687
753
|
pricing_type = sgqlc.types.Field('PricingTypeFilterComparison', graphql_name='pricingType')
|
|
688
754
|
product_id = sgqlc.types.Field('StringFieldComparison', graphql_name='productId')
|
|
@@ -692,6 +758,21 @@ class AddonFilter(sgqlc.types.Input):
|
|
|
692
758
|
version_number = sgqlc.types.Field('IntFieldComparison', graphql_name='versionNumber')
|
|
693
759
|
|
|
694
760
|
|
|
761
|
+
class AddonFilterOfferFilter(sgqlc.types.Input):
|
|
762
|
+
__schema__ = schema
|
|
763
|
+
__field_names__ = ('and_', 'created_at', 'environment_id', 'id', 'is_default', 'is_latest', 'offer_id', 'or_', 'status', 'version')
|
|
764
|
+
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('AddonFilterOfferFilter')), graphql_name='and')
|
|
765
|
+
created_at = sgqlc.types.Field('DateFieldComparison', graphql_name='createdAt')
|
|
766
|
+
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
767
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
768
|
+
is_default = sgqlc.types.Field('BooleanFieldComparison', graphql_name='isDefault')
|
|
769
|
+
is_latest = sgqlc.types.Field('BooleanFieldComparison', graphql_name='isLatest')
|
|
770
|
+
offer_id = sgqlc.types.Field('StringFieldComparison', graphql_name='offerId')
|
|
771
|
+
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('AddonFilterOfferFilter')), graphql_name='or')
|
|
772
|
+
status = sgqlc.types.Field('OfferStatusFilterComparison', graphql_name='status')
|
|
773
|
+
version = sgqlc.types.Field('IntFieldComparison', graphql_name='version')
|
|
774
|
+
|
|
775
|
+
|
|
695
776
|
class AddonSort(sgqlc.types.Input):
|
|
696
777
|
__schema__ = schema
|
|
697
778
|
__field_names__ = ('direction', 'field', 'nulls')
|
|
@@ -758,9 +839,34 @@ class ApiKeySort(sgqlc.types.Input):
|
|
|
758
839
|
nulls = sgqlc.types.Field(SortNulls, graphql_name='nulls')
|
|
759
840
|
|
|
760
841
|
|
|
842
|
+
class AppStoreCredentialsInput(sgqlc.types.Input):
|
|
843
|
+
__schema__ = schema
|
|
844
|
+
__field_names__ = ('issuer_id', 'key_id', 'private_key', 'sandbox_environment')
|
|
845
|
+
issuer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='issuerId')
|
|
846
|
+
key_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='keyId')
|
|
847
|
+
private_key = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='privateKey')
|
|
848
|
+
sandbox_environment = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='sandboxEnvironment')
|
|
849
|
+
|
|
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
|
+
|
|
761
867
|
class ApplySubscriptionInput(sgqlc.types.Input):
|
|
762
868
|
__schema__ = schema
|
|
763
|
-
__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')
|
|
764
870
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
765
871
|
addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonInput')), graphql_name='addons')
|
|
766
872
|
applied_coupon = sgqlc.types.Field('SubscriptionCouponInput', graphql_name='appliedCoupon')
|
|
@@ -771,6 +877,7 @@ class ApplySubscriptionInput(sgqlc.types.Input):
|
|
|
771
877
|
billing_information = sgqlc.types.Field('SubscriptionBillingInfo', graphql_name='billingInformation')
|
|
772
878
|
billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
|
|
773
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')
|
|
774
881
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
775
882
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
776
883
|
minimum_spend = sgqlc.types.Field('SubscriptionMinimumSpendValueInput', graphql_name='minimumSpend')
|
|
@@ -834,9 +941,17 @@ class ArchivePackageGroup(sgqlc.types.Input):
|
|
|
834
941
|
|
|
835
942
|
class ArchivePlanInput(sgqlc.types.Input):
|
|
836
943
|
__schema__ = schema
|
|
837
|
-
__field_names__ = ('environment_id', 'id')
|
|
944
|
+
__field_names__ = ('environment_id', 'id', 'ref_id')
|
|
838
945
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
839
|
-
id = sgqlc.types.Field(
|
|
946
|
+
id = sgqlc.types.Field(String, graphql_name='id')
|
|
947
|
+
ref_id = sgqlc.types.Field(String, graphql_name='refId')
|
|
948
|
+
|
|
949
|
+
|
|
950
|
+
class ArchiveProductInput(sgqlc.types.Input):
|
|
951
|
+
__schema__ = schema
|
|
952
|
+
__field_names__ = ('environment_id', 'ref_id')
|
|
953
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
954
|
+
ref_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='refId')
|
|
840
955
|
|
|
841
956
|
|
|
842
957
|
class AttachCustomerPaymentMethodInput(sgqlc.types.Input):
|
|
@@ -967,6 +1082,14 @@ class BillingPeriodFilterComparison(sgqlc.types.Input):
|
|
|
967
1082
|
not_like = sgqlc.types.Field(BillingPeriod, graphql_name='notLike')
|
|
968
1083
|
|
|
969
1084
|
|
|
1085
|
+
class BillingProductsInput(sgqlc.types.Input):
|
|
1086
|
+
__schema__ = schema
|
|
1087
|
+
__field_names__ = ('integration_id', 'next_page', 'product_name_or_id')
|
|
1088
|
+
integration_id = sgqlc.types.Field(String, graphql_name='integrationId')
|
|
1089
|
+
next_page = sgqlc.types.Field(String, graphql_name='nextPage')
|
|
1090
|
+
product_name_or_id = sgqlc.types.Field(String, graphql_name='productNameOrId')
|
|
1091
|
+
|
|
1092
|
+
|
|
970
1093
|
class BooleanFieldComparison(sgqlc.types.Input):
|
|
971
1094
|
__schema__ = schema
|
|
972
1095
|
__field_names__ = ('is_', 'is_not')
|
|
@@ -981,6 +1104,14 @@ class BudgetConfigurationInput(sgqlc.types.Input):
|
|
|
981
1104
|
limit = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='limit')
|
|
982
1105
|
|
|
983
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
|
+
|
|
984
1115
|
class ChargeSubscriptionUsageInput(sgqlc.types.Input):
|
|
985
1116
|
__schema__ = schema
|
|
986
1117
|
__field_names__ = ('environment_id', 'subscription_id', 'until_date')
|
|
@@ -1065,8 +1196,9 @@ class CouponFilter(sgqlc.types.Input):
|
|
|
1065
1196
|
|
|
1066
1197
|
class CouponFilterCustomerFilter(sgqlc.types.Input):
|
|
1067
1198
|
__schema__ = schema
|
|
1068
|
-
__field_names__ = ('and_', 'billing_id', 'created_at', 'crm_hubspot_company_id', 'crm_hubspot_company_url', 'crm_id', 'customer_id', 'deleted_at', 'email', 'environment_id', 'id', 'name', 'or_', 'ref_id', 'salesforce_id', 'search_query', 'updated_at')
|
|
1199
|
+
__field_names__ = ('and_', 'aws_marketplace_customer_id', 'billing_id', 'created_at', 'crm_hubspot_company_id', 'crm_hubspot_company_url', 'crm_id', 'customer_id', 'deleted_at', 'email', 'environment_id', 'id', 'name', 'or_', 'ref_id', 'salesforce_id', 'search_query', 'updated_at')
|
|
1069
1200
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('CouponFilterCustomerFilter')), graphql_name='and')
|
|
1201
|
+
aws_marketplace_customer_id = sgqlc.types.Field('StringFieldComparison', graphql_name='awsMarketplaceCustomerId')
|
|
1070
1202
|
billing_id = sgqlc.types.Field('StringFieldComparison', graphql_name='billingId')
|
|
1071
1203
|
created_at = sgqlc.types.Field('DateFieldComparison', graphql_name='createdAt')
|
|
1072
1204
|
crm_hubspot_company_id = sgqlc.types.Field('StringFieldComparison', graphql_name='crmHubspotCompanyId')
|
|
@@ -1212,7 +1344,8 @@ class CreateHook(sgqlc.types.Input):
|
|
|
1212
1344
|
|
|
1213
1345
|
class CreateIntegrationInput(sgqlc.types.Input):
|
|
1214
1346
|
__schema__ = schema
|
|
1215
|
-
__field_names__ = ('auth0_credentials', 'aws_marketplace_credentials', 'big_query_credentials', 'environment_id', 'hubspot_credentials', 'integration_id', 'is_default', 'open_fgacredentials', 'salesforce_credentials', 'snowflake_credentials', 'stripe_credentials', 'vendor_identifier', 'zuora_credentials')
|
|
1347
|
+
__field_names__ = ('app_store_credentials', 'auth0_credentials', 'aws_marketplace_credentials', 'big_query_credentials', 'environment_id', 'hubspot_credentials', 'integration_id', 'is_default', 'open_fgacredentials', 'salesforce_credentials', 'snowflake_credentials', 'stripe_credentials', 'vendor_identifier', 'zuora_credentials')
|
|
1348
|
+
app_store_credentials = sgqlc.types.Field(AppStoreCredentialsInput, graphql_name='appStoreCredentials')
|
|
1216
1349
|
auth0_credentials = sgqlc.types.Field(Auth0CredentialsInput, graphql_name='auth0Credentials')
|
|
1217
1350
|
aws_marketplace_credentials = sgqlc.types.Field(AwsMarketplaceCredentialsInput, graphql_name='awsMarketplaceCredentials')
|
|
1218
1351
|
big_query_credentials = sgqlc.types.Field(BigQueryCredentialsInput, graphql_name='bigQueryCredentials')
|
|
@@ -1247,6 +1380,23 @@ class CreateMeter(sgqlc.types.Input):
|
|
|
1247
1380
|
filters = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('MeterFilterDefinitionInput'))), graphql_name='filters')
|
|
1248
1381
|
|
|
1249
1382
|
|
|
1383
|
+
class CreateOfferDraftInput(sgqlc.types.Input):
|
|
1384
|
+
__schema__ = schema
|
|
1385
|
+
__field_names__ = ('environment_id', 'offer_id')
|
|
1386
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
1387
|
+
offer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='offerId')
|
|
1388
|
+
|
|
1389
|
+
|
|
1390
|
+
class CreateOfferInput(sgqlc.types.Input):
|
|
1391
|
+
__schema__ = schema
|
|
1392
|
+
__field_names__ = ('additional_meta_data', 'description', 'environment_id', 'name', 'offer_id')
|
|
1393
|
+
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
1394
|
+
description = sgqlc.types.Field(String, graphql_name='description')
|
|
1395
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
1396
|
+
name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name')
|
|
1397
|
+
offer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='offerId')
|
|
1398
|
+
|
|
1399
|
+
|
|
1250
1400
|
class CreateOneEnvironmentInput(sgqlc.types.Input):
|
|
1251
1401
|
__schema__ = schema
|
|
1252
1402
|
__field_names__ = ('environment', 'options')
|
|
@@ -1318,11 +1468,27 @@ class CreditBalanceSummaryInput(sgqlc.types.Input):
|
|
|
1318
1468
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
1319
1469
|
|
|
1320
1470
|
|
|
1471
|
+
class CreditGrantBillingInfoInput(sgqlc.types.Input):
|
|
1472
|
+
__schema__ = schema
|
|
1473
|
+
__field_names__ = ('tax_percentage', 'tax_rate_ids')
|
|
1474
|
+
tax_percentage = sgqlc.types.Field(Float, graphql_name='taxPercentage')
|
|
1475
|
+
tax_rate_ids = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='taxRateIds')
|
|
1476
|
+
|
|
1477
|
+
|
|
1478
|
+
class CreditGrantCouponInput(sgqlc.types.Input):
|
|
1479
|
+
__schema__ = schema
|
|
1480
|
+
__field_names__ = ('billing_coupon_id', 'coupon_id', 'promotion_code')
|
|
1481
|
+
billing_coupon_id = sgqlc.types.Field(String, graphql_name='billingCouponId')
|
|
1482
|
+
coupon_id = sgqlc.types.Field(String, graphql_name='couponId')
|
|
1483
|
+
promotion_code = sgqlc.types.Field(String, graphql_name='promotionCode')
|
|
1484
|
+
|
|
1485
|
+
|
|
1321
1486
|
class CreditGrantInput(sgqlc.types.Input):
|
|
1322
1487
|
__schema__ = schema
|
|
1323
|
-
__field_names__ = ('additional_meta_data', 'amount', 'comment', 'cost', 'currency_id', 'customer_id', 'display_name', 'effective_at', 'environment_id', 'expire_at', 'grant_type', 'priority', 'resource_id')
|
|
1488
|
+
__field_names__ = ('additional_meta_data', 'amount', 'await_payment_confirmation', 'comment', 'cost', 'currency_id', 'customer_id', 'display_name', 'effective_at', 'environment_id', 'expire_at', 'grant_type', 'payment_collection_method', 'priority', 'resource_id')
|
|
1324
1489
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
1325
1490
|
amount = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='amount')
|
|
1491
|
+
await_payment_confirmation = sgqlc.types.Field(Boolean, graphql_name='awaitPaymentConfirmation')
|
|
1326
1492
|
comment = sgqlc.types.Field(String, graphql_name='comment')
|
|
1327
1493
|
cost = sgqlc.types.Field('MoneyInputDTO', graphql_name='cost')
|
|
1328
1494
|
currency_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='currencyId')
|
|
@@ -1332,10 +1498,40 @@ class CreditGrantInput(sgqlc.types.Input):
|
|
|
1332
1498
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
1333
1499
|
expire_at = sgqlc.types.Field(DateTime, graphql_name='expireAt')
|
|
1334
1500
|
grant_type = sgqlc.types.Field(sgqlc.types.non_null(CreditGrantType), graphql_name='grantType')
|
|
1501
|
+
payment_collection_method = sgqlc.types.Field(PaymentCollectionMethod, graphql_name='paymentCollectionMethod')
|
|
1335
1502
|
priority = sgqlc.types.Field(Float, graphql_name='priority')
|
|
1336
1503
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
1337
1504
|
|
|
1338
1505
|
|
|
1506
|
+
class CreditLedgerInput(sgqlc.types.Input):
|
|
1507
|
+
__schema__ = schema
|
|
1508
|
+
__field_names__ = ('currency_id', 'customer_id', 'environment_id', 'paging', 'resource_id')
|
|
1509
|
+
currency_id = sgqlc.types.Field(String, graphql_name='currencyId')
|
|
1510
|
+
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
1511
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
1512
|
+
paging = sgqlc.types.Field('CursorPaging', graphql_name='paging')
|
|
1513
|
+
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
1514
|
+
|
|
1515
|
+
|
|
1516
|
+
class CreditRateInput(sgqlc.types.Input):
|
|
1517
|
+
__schema__ = schema
|
|
1518
|
+
__field_names__ = ('amount', 'cost_formula', 'currency_id', 'custom_currency_id')
|
|
1519
|
+
amount = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='amount')
|
|
1520
|
+
cost_formula = sgqlc.types.Field(String, graphql_name='costFormula')
|
|
1521
|
+
currency_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='currencyId')
|
|
1522
|
+
custom_currency_id = sgqlc.types.Field(UUID, graphql_name='customCurrencyId')
|
|
1523
|
+
|
|
1524
|
+
|
|
1525
|
+
class CreditUsageInput(sgqlc.types.Input):
|
|
1526
|
+
__schema__ = schema
|
|
1527
|
+
__field_names__ = ('currency_id', 'customer_id', 'environment_id', 'resource_id', 'time_range')
|
|
1528
|
+
currency_id = sgqlc.types.Field(String, graphql_name='currencyId')
|
|
1529
|
+
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
1530
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
1531
|
+
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
1532
|
+
time_range = sgqlc.types.Field(CreditUsageTimeRange, graphql_name='timeRange')
|
|
1533
|
+
|
|
1534
|
+
|
|
1339
1535
|
class CursorPaging(sgqlc.types.Input):
|
|
1340
1536
|
__schema__ = schema
|
|
1341
1537
|
__field_names__ = ('after', 'before', 'first', 'last')
|
|
@@ -1347,12 +1543,14 @@ class CursorPaging(sgqlc.types.Input):
|
|
|
1347
1543
|
|
|
1348
1544
|
class CustomCurrencyInput(sgqlc.types.Input):
|
|
1349
1545
|
__schema__ = schema
|
|
1350
|
-
__field_names__ = ('additional_meta_data', 'currency_id', 'display_name', 'environment_id', 'symbol')
|
|
1546
|
+
__field_names__ = ('additional_meta_data', 'currency_id', 'description', 'display_name', 'environment_id', 'symbol', 'units')
|
|
1351
1547
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
1352
1548
|
currency_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='currencyId')
|
|
1549
|
+
description = sgqlc.types.Field(String, graphql_name='description')
|
|
1353
1550
|
display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='displayName')
|
|
1354
1551
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
1355
|
-
symbol = sgqlc.types.Field(
|
|
1552
|
+
symbol = sgqlc.types.Field(String, graphql_name='symbol')
|
|
1553
|
+
units = sgqlc.types.Field('UnitsInput', graphql_name='units')
|
|
1356
1554
|
|
|
1357
1555
|
|
|
1358
1556
|
class CustomerBillingInfo(sgqlc.types.Input):
|
|
@@ -1373,8 +1571,9 @@ class CustomerBillingInfo(sgqlc.types.Input):
|
|
|
1373
1571
|
|
|
1374
1572
|
class CustomerFilter(sgqlc.types.Input):
|
|
1375
1573
|
__schema__ = schema
|
|
1376
|
-
__field_names__ = ('and_', 'billing_id', 'created_at', 'crm_hubspot_company_id', 'crm_hubspot_company_url', 'crm_id', 'customer_id', 'deleted_at', 'email', 'environment_id', 'id', 'name', 'or_', 'promotional_entitlements', 'ref_id', 'salesforce_id', 'search_query', 'subscriptions', 'updated_at')
|
|
1574
|
+
__field_names__ = ('and_', 'aws_marketplace_customer_id', 'billing_id', 'created_at', 'crm_hubspot_company_id', 'crm_hubspot_company_url', 'crm_id', 'customer_id', 'deleted_at', 'email', 'environment_id', 'id', 'name', 'or_', 'promotional_entitlements', 'ref_id', 'salesforce_id', 'search_query', 'subscriptions', 'updated_at')
|
|
1377
1575
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('CustomerFilter')), graphql_name='and')
|
|
1576
|
+
aws_marketplace_customer_id = sgqlc.types.Field('StringFieldComparison', graphql_name='awsMarketplaceCustomerId')
|
|
1378
1577
|
billing_id = sgqlc.types.Field('StringFieldComparison', graphql_name='billingId')
|
|
1379
1578
|
created_at = sgqlc.types.Field('DateFieldComparison', graphql_name='createdAt')
|
|
1380
1579
|
crm_hubspot_company_id = sgqlc.types.Field('StringFieldComparison', graphql_name='crmHubspotCompanyId')
|
|
@@ -1500,8 +1699,9 @@ class CustomerResourceFilter(sgqlc.types.Input):
|
|
|
1500
1699
|
|
|
1501
1700
|
class CustomerResourceFilterCustomerFilter(sgqlc.types.Input):
|
|
1502
1701
|
__schema__ = schema
|
|
1503
|
-
__field_names__ = ('and_', 'billing_id', 'created_at', 'crm_hubspot_company_id', 'crm_hubspot_company_url', 'crm_id', 'customer_id', 'deleted_at', 'email', 'environment_id', 'id', 'name', 'or_', 'ref_id', 'salesforce_id', 'search_query', 'updated_at')
|
|
1702
|
+
__field_names__ = ('and_', 'aws_marketplace_customer_id', 'billing_id', 'created_at', 'crm_hubspot_company_id', 'crm_hubspot_company_url', 'crm_id', 'customer_id', 'deleted_at', 'email', 'environment_id', 'id', 'name', 'or_', 'ref_id', 'salesforce_id', 'search_query', 'updated_at')
|
|
1504
1703
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('CustomerResourceFilterCustomerFilter')), graphql_name='and')
|
|
1704
|
+
aws_marketplace_customer_id = sgqlc.types.Field('StringFieldComparison', graphql_name='awsMarketplaceCustomerId')
|
|
1505
1705
|
billing_id = sgqlc.types.Field('StringFieldComparison', graphql_name='billingId')
|
|
1506
1706
|
created_at = sgqlc.types.Field('DateFieldComparison', graphql_name='createdAt')
|
|
1507
1707
|
crm_hubspot_company_id = sgqlc.types.Field('StringFieldComparison', graphql_name='crmHubspotCompanyId')
|
|
@@ -1615,8 +1815,9 @@ class CustomerSubscriptionFilter(sgqlc.types.Input):
|
|
|
1615
1815
|
|
|
1616
1816
|
class CustomerSubscriptionFilterCustomerFilter(sgqlc.types.Input):
|
|
1617
1817
|
__schema__ = schema
|
|
1618
|
-
__field_names__ = ('and_', 'billing_id', 'created_at', 'crm_hubspot_company_id', 'crm_hubspot_company_url', 'crm_id', 'customer_id', 'deleted_at', 'email', 'environment_id', 'id', 'name', 'or_', 'ref_id', 'salesforce_id', 'search_query', 'updated_at')
|
|
1818
|
+
__field_names__ = ('and_', 'aws_marketplace_customer_id', 'billing_id', 'created_at', 'crm_hubspot_company_id', 'crm_hubspot_company_url', 'crm_id', 'customer_id', 'deleted_at', 'email', 'environment_id', 'id', 'name', 'or_', 'ref_id', 'salesforce_id', 'search_query', 'updated_at')
|
|
1619
1819
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('CustomerSubscriptionFilterCustomerFilter')), graphql_name='and')
|
|
1820
|
+
aws_marketplace_customer_id = sgqlc.types.Field('StringFieldComparison', graphql_name='awsMarketplaceCustomerId')
|
|
1620
1821
|
billing_id = sgqlc.types.Field('StringFieldComparison', graphql_name='billingId')
|
|
1621
1822
|
created_at = sgqlc.types.Field('DateFieldComparison', graphql_name='createdAt')
|
|
1622
1823
|
crm_hubspot_company_id = sgqlc.types.Field('StringFieldComparison', graphql_name='crmHubspotCompanyId')
|
|
@@ -1955,13 +2156,14 @@ class EnvironmentSort(sgqlc.types.Input):
|
|
|
1955
2156
|
|
|
1956
2157
|
class EstimateSubscriptionInput(sgqlc.types.Input):
|
|
1957
2158
|
__schema__ = schema
|
|
1958
|
-
__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')
|
|
1959
2160
|
addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonInput')), graphql_name='addons')
|
|
1960
2161
|
applied_coupon = sgqlc.types.Field('SubscriptionCouponInput', graphql_name='appliedCoupon')
|
|
1961
2162
|
billable_features = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(BillableFeatureInput)), graphql_name='billableFeatures')
|
|
1962
2163
|
billing_country_code = sgqlc.types.Field(String, graphql_name='billingCountryCode')
|
|
1963
2164
|
billing_information = sgqlc.types.Field('SubscriptionBillingInfo', graphql_name='billingInformation')
|
|
1964
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')
|
|
1965
2167
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
1966
2168
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
1967
2169
|
paying_customer_id = sgqlc.types.Field(String, graphql_name='payingCustomerId')
|
|
@@ -1977,10 +2179,11 @@ class EstimateSubscriptionInput(sgqlc.types.Input):
|
|
|
1977
2179
|
|
|
1978
2180
|
class EstimateSubscriptionUpdateInput(sgqlc.types.Input):
|
|
1979
2181
|
__schema__ = schema
|
|
1980
|
-
__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')
|
|
1981
2183
|
addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonInput')), graphql_name='addons')
|
|
1982
2184
|
applied_coupon = sgqlc.types.Field('SubscriptionCouponInput', graphql_name='appliedCoupon')
|
|
1983
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')
|
|
1984
2187
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
1985
2188
|
promotion_code = sgqlc.types.Field(String, graphql_name='promotionCode')
|
|
1986
2189
|
subscription_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='subscriptionId')
|
|
@@ -1996,9 +2199,17 @@ class EventLogCreatedAtFilterComparison(sgqlc.types.Input):
|
|
|
1996
2199
|
|
|
1997
2200
|
class EventLogEntityIdFilterComparison(sgqlc.types.Input):
|
|
1998
2201
|
__schema__ = schema
|
|
1999
|
-
__field_names__ = ('eq', 'in_')
|
|
2202
|
+
__field_names__ = ('eq', 'in_', 'like')
|
|
2000
2203
|
eq = sgqlc.types.Field(String, graphql_name='eq')
|
|
2001
2204
|
in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='in')
|
|
2205
|
+
like = sgqlc.types.Field(String, graphql_name='like')
|
|
2206
|
+
|
|
2207
|
+
|
|
2208
|
+
class EventLogEntityTypeFilterComparison(sgqlc.types.Input):
|
|
2209
|
+
__schema__ = schema
|
|
2210
|
+
__field_names__ = ('eq', 'in_')
|
|
2211
|
+
eq = sgqlc.types.Field(EventEntityType, graphql_name='eq')
|
|
2212
|
+
in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(EventEntityType)), graphql_name='in')
|
|
2002
2213
|
|
|
2003
2214
|
|
|
2004
2215
|
class EventLogEnvironmentIdFilterComparison(sgqlc.types.Input):
|
|
@@ -2018,15 +2229,17 @@ class EventLogEventLogTypeFilterComparison(sgqlc.types.Input):
|
|
|
2018
2229
|
|
|
2019
2230
|
class EventLogFilter(sgqlc.types.Input):
|
|
2020
2231
|
__schema__ = schema
|
|
2021
|
-
__field_names__ = ('and_', 'created_at', 'entity_id', 'environment_id', 'event_log_type', 'id', 'or_', 'parent_entity_id')
|
|
2232
|
+
__field_names__ = ('and_', 'created_at', 'entity_id', 'entity_type', 'environment_id', 'event_log_type', 'id', 'or_', 'parent_entity_id', 'trace_id')
|
|
2022
2233
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('EventLogFilter')), graphql_name='and')
|
|
2023
2234
|
created_at = sgqlc.types.Field(EventLogCreatedAtFilterComparison, graphql_name='createdAt')
|
|
2024
2235
|
entity_id = sgqlc.types.Field(EventLogEntityIdFilterComparison, graphql_name='entityId')
|
|
2025
|
-
|
|
2236
|
+
entity_type = sgqlc.types.Field(EventLogEntityTypeFilterComparison, graphql_name='entityType')
|
|
2237
|
+
environment_id = sgqlc.types.Field(EventLogEnvironmentIdFilterComparison, graphql_name='environmentId')
|
|
2026
2238
|
event_log_type = sgqlc.types.Field(EventLogEventLogTypeFilterComparison, graphql_name='eventLogType')
|
|
2027
2239
|
id = sgqlc.types.Field('EventLogIdFilterComparison', graphql_name='id')
|
|
2028
2240
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('EventLogFilter')), graphql_name='or')
|
|
2029
2241
|
parent_entity_id = sgqlc.types.Field('EventLogParentEntityIdFilterComparison', graphql_name='parentEntityId')
|
|
2242
|
+
trace_id = sgqlc.types.Field('EventLogTraceIdFilterComparison', graphql_name='traceId')
|
|
2030
2243
|
|
|
2031
2244
|
|
|
2032
2245
|
class EventLogIdFilterComparison(sgqlc.types.Input):
|
|
@@ -2037,9 +2250,10 @@ class EventLogIdFilterComparison(sgqlc.types.Input):
|
|
|
2037
2250
|
|
|
2038
2251
|
class EventLogParentEntityIdFilterComparison(sgqlc.types.Input):
|
|
2039
2252
|
__schema__ = schema
|
|
2040
|
-
__field_names__ = ('eq', 'in_')
|
|
2253
|
+
__field_names__ = ('eq', 'in_', 'like')
|
|
2041
2254
|
eq = sgqlc.types.Field(String, graphql_name='eq')
|
|
2042
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')
|
|
2043
2257
|
|
|
2044
2258
|
|
|
2045
2259
|
class EventLogSort(sgqlc.types.Input):
|
|
@@ -2050,6 +2264,12 @@ class EventLogSort(sgqlc.types.Input):
|
|
|
2050
2264
|
nulls = sgqlc.types.Field(SortNulls, graphql_name='nulls')
|
|
2051
2265
|
|
|
2052
2266
|
|
|
2267
|
+
class EventLogTraceIdFilterComparison(sgqlc.types.Input):
|
|
2268
|
+
__schema__ = schema
|
|
2269
|
+
__field_names__ = ('eq',)
|
|
2270
|
+
eq = sgqlc.types.Field(String, graphql_name='eq')
|
|
2271
|
+
|
|
2272
|
+
|
|
2053
2273
|
class EventsFieldsInput(sgqlc.types.Input):
|
|
2054
2274
|
__schema__ = schema
|
|
2055
2275
|
__field_names__ = ('customer_id', 'environment_id', 'feature_id', 'filters', 'meter_id', 'resource_id', 'unique_values_limit')
|
|
@@ -2079,8 +2299,9 @@ class ExperimentFilter(sgqlc.types.Input):
|
|
|
2079
2299
|
|
|
2080
2300
|
class ExperimentFilterCustomerFilter(sgqlc.types.Input):
|
|
2081
2301
|
__schema__ = schema
|
|
2082
|
-
__field_names__ = ('and_', 'billing_id', 'created_at', 'crm_hubspot_company_id', 'crm_hubspot_company_url', 'crm_id', 'customer_id', 'deleted_at', 'email', 'environment_id', 'id', 'name', 'or_', 'ref_id', 'salesforce_id', 'search_query', 'updated_at')
|
|
2302
|
+
__field_names__ = ('and_', 'aws_marketplace_customer_id', 'billing_id', 'created_at', 'crm_hubspot_company_id', 'crm_hubspot_company_url', 'crm_id', 'customer_id', 'deleted_at', 'email', 'environment_id', 'id', 'name', 'or_', 'ref_id', 'salesforce_id', 'search_query', 'updated_at')
|
|
2083
2303
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ExperimentFilterCustomerFilter')), graphql_name='and')
|
|
2304
|
+
aws_marketplace_customer_id = sgqlc.types.Field('StringFieldComparison', graphql_name='awsMarketplaceCustomerId')
|
|
2084
2305
|
billing_id = sgqlc.types.Field('StringFieldComparison', graphql_name='billingId')
|
|
2085
2306
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
2086
2307
|
crm_hubspot_company_id = sgqlc.types.Field('StringFieldComparison', graphql_name='crmHubspotCompanyId')
|
|
@@ -2314,12 +2535,21 @@ class GetAuth0ApplicationsInput(sgqlc.types.Input):
|
|
|
2314
2535
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
2315
2536
|
|
|
2316
2537
|
|
|
2538
|
+
class GetAutoRechargeSettingsInput(sgqlc.types.Input):
|
|
2539
|
+
__schema__ = schema
|
|
2540
|
+
__field_names__ = ('currency_id', 'customer_id', 'environment_id')
|
|
2541
|
+
currency_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='currencyId')
|
|
2542
|
+
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
2543
|
+
environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
|
|
2544
|
+
|
|
2545
|
+
|
|
2317
2546
|
class GetCreditGrantsInput(sgqlc.types.Input):
|
|
2318
2547
|
__schema__ = schema
|
|
2319
|
-
__field_names__ = ('currency_id', 'customer_id', 'environment_id', 'resource_id')
|
|
2548
|
+
__field_names__ = ('currency_id', 'customer_id', 'environment_id', 'paging', 'resource_id')
|
|
2320
2549
|
currency_id = sgqlc.types.Field(String, graphql_name='currencyId')
|
|
2321
2550
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
2322
2551
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
2552
|
+
paging = sgqlc.types.Field(CursorPaging, graphql_name='paging')
|
|
2323
2553
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
2324
2554
|
|
|
2325
2555
|
|
|
@@ -2330,6 +2560,14 @@ class GetCustomerByRefIdInput(sgqlc.types.Input):
|
|
|
2330
2560
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
2331
2561
|
|
|
2332
2562
|
|
|
2563
|
+
class GetOfferInput(sgqlc.types.Input):
|
|
2564
|
+
__schema__ = schema
|
|
2565
|
+
__field_names__ = ('environment_id', 'offer_id', 'version')
|
|
2566
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
2567
|
+
offer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='offerId')
|
|
2568
|
+
version = sgqlc.types.Field(Float, graphql_name='version')
|
|
2569
|
+
|
|
2570
|
+
|
|
2333
2571
|
class GetPackageByRefIdInput(sgqlc.types.Input):
|
|
2334
2572
|
__schema__ = schema
|
|
2335
2573
|
__field_names__ = ('environment_id', 'ref_id', 'version_number')
|
|
@@ -2348,13 +2586,14 @@ class GetPackageGroup(sgqlc.types.Input):
|
|
|
2348
2586
|
|
|
2349
2587
|
class GetPaywallInput(sgqlc.types.Input):
|
|
2350
2588
|
__schema__ = schema
|
|
2351
|
-
__field_names__ = ('billing_country_code', 'context', 'customer_id', 'environment_id', 'fetch_all_countries_prices', 'include_hidden_plans', 'product_id', 'resource_id')
|
|
2589
|
+
__field_names__ = ('billing_country_code', 'context', 'customer_id', 'environment_id', 'fetch_all_countries_prices', 'include_hidden_plans', 'offer_id', 'product_id', 'resource_id')
|
|
2352
2590
|
billing_country_code = sgqlc.types.Field(String, graphql_name='billingCountryCode')
|
|
2353
2591
|
context = sgqlc.types.Field(WidgetType, graphql_name='context')
|
|
2354
2592
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
2355
2593
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
2356
2594
|
fetch_all_countries_prices = sgqlc.types.Field(Boolean, graphql_name='fetchAllCountriesPrices')
|
|
2357
2595
|
include_hidden_plans = sgqlc.types.Field(Boolean, graphql_name='includeHiddenPlans')
|
|
2596
|
+
offer_id = sgqlc.types.Field(String, graphql_name='offerId')
|
|
2358
2597
|
product_id = sgqlc.types.Field(String, graphql_name='productId')
|
|
2359
2598
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
2360
2599
|
|
|
@@ -2397,6 +2636,15 @@ class GrantPromotionalEntitlementInput(sgqlc.types.Input):
|
|
|
2397
2636
|
yearly_reset_period_configuration = sgqlc.types.Field('YearlyResetPeriodConfigInput', graphql_name='yearlyResetPeriodConfiguration')
|
|
2398
2637
|
|
|
2399
2638
|
|
|
2639
|
+
class GrantPromotionalEntitlementsGroupInput(sgqlc.types.Input):
|
|
2640
|
+
__schema__ = schema
|
|
2641
|
+
__field_names__ = ('customer_id', 'environment_id', 'feature_group_id', 'promotional_entitlements')
|
|
2642
|
+
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
2643
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
2644
|
+
feature_group_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='featureGroupId')
|
|
2645
|
+
promotional_entitlements = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(GrantPromotionalEntitlementInput))), graphql_name='promotionalEntitlements')
|
|
2646
|
+
|
|
2647
|
+
|
|
2400
2648
|
class GrantPromotionalEntitlementsInput(sgqlc.types.Input):
|
|
2401
2649
|
__schema__ = schema
|
|
2402
2650
|
__field_names__ = ('customer_id', 'environment_id', 'promotional_entitlements')
|
|
@@ -2521,12 +2769,13 @@ class ImportIntegrationTaskSort(sgqlc.types.Input):
|
|
|
2521
2769
|
|
|
2522
2770
|
class ImportSubscriptionInput(sgqlc.types.Input):
|
|
2523
2771
|
__schema__ = schema
|
|
2524
|
-
__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')
|
|
2525
2773
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
2526
2774
|
addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonInput')), graphql_name='addons')
|
|
2527
2775
|
billable_features = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(BillableFeatureInput)), graphql_name='billableFeatures')
|
|
2528
2776
|
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
2529
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')
|
|
2530
2779
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
2531
2780
|
end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
|
|
2532
2781
|
plan_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='planId')
|
|
@@ -2616,6 +2865,27 @@ class InviteMembersInput(sgqlc.types.Input):
|
|
|
2616
2865
|
production_role = sgqlc.types.Field(EnvironmentAccessRole, graphql_name='productionRole')
|
|
2617
2866
|
|
|
2618
2867
|
|
|
2868
|
+
class LinkFeatureGroupToPackageInput(sgqlc.types.Input):
|
|
2869
|
+
__schema__ = schema
|
|
2870
|
+
__field_names__ = ('environment_id', 'feature_group_id', 'package_id')
|
|
2871
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
2872
|
+
feature_group_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='featureGroupId')
|
|
2873
|
+
package_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='packageId')
|
|
2874
|
+
|
|
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
|
+
|
|
2619
2889
|
class ListAwsProductDimensionsInput(sgqlc.types.Input):
|
|
2620
2890
|
__schema__ = schema
|
|
2621
2891
|
__field_names__ = ('environment_id', 'product_id')
|
|
@@ -2686,10 +2956,11 @@ class MeterAggregation(sgqlc.types.Input):
|
|
|
2686
2956
|
|
|
2687
2957
|
class MeterConditionInput(sgqlc.types.Input):
|
|
2688
2958
|
__schema__ = schema
|
|
2689
|
-
__field_names__ = ('field', 'operation', 'value')
|
|
2959
|
+
__field_names__ = ('field', 'operation', 'value', 'values')
|
|
2690
2960
|
field = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='field')
|
|
2691
2961
|
operation = sgqlc.types.Field(sgqlc.types.non_null(ConditionOperation), graphql_name='operation')
|
|
2692
2962
|
value = sgqlc.types.Field(String, graphql_name='value')
|
|
2963
|
+
values = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='values')
|
|
2693
2964
|
|
|
2694
2965
|
|
|
2695
2966
|
class MeterFilterDefinitionInput(sgqlc.types.Input):
|
|
@@ -2770,6 +3041,48 @@ class NumberFieldComparisonBetween(sgqlc.types.Input):
|
|
|
2770
3041
|
upper = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='upper')
|
|
2771
3042
|
|
|
2772
3043
|
|
|
3044
|
+
class OfferFilter(sgqlc.types.Input):
|
|
3045
|
+
__schema__ = schema
|
|
3046
|
+
__field_names__ = ('and_', 'created_at', 'environment_id', 'id', 'is_default', 'is_latest', 'offer_id', 'or_', 'status', 'version')
|
|
3047
|
+
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('OfferFilter')), graphql_name='and')
|
|
3048
|
+
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
3049
|
+
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
3050
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
3051
|
+
is_default = sgqlc.types.Field(BooleanFieldComparison, graphql_name='isDefault')
|
|
3052
|
+
is_latest = sgqlc.types.Field(BooleanFieldComparison, graphql_name='isLatest')
|
|
3053
|
+
offer_id = sgqlc.types.Field('StringFieldComparison', graphql_name='offerId')
|
|
3054
|
+
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('OfferFilter')), graphql_name='or')
|
|
3055
|
+
status = sgqlc.types.Field('OfferStatusFilterComparison', graphql_name='status')
|
|
3056
|
+
version = sgqlc.types.Field(IntFieldComparison, graphql_name='version')
|
|
3057
|
+
|
|
3058
|
+
|
|
3059
|
+
class OfferSort(sgqlc.types.Input):
|
|
3060
|
+
__schema__ = schema
|
|
3061
|
+
__field_names__ = ('direction', 'field', 'nulls')
|
|
3062
|
+
direction = sgqlc.types.Field(sgqlc.types.non_null(SortDirection), graphql_name='direction')
|
|
3063
|
+
field = sgqlc.types.Field(sgqlc.types.non_null(OfferSortFields), graphql_name='field')
|
|
3064
|
+
nulls = sgqlc.types.Field(SortNulls, graphql_name='nulls')
|
|
3065
|
+
|
|
3066
|
+
|
|
3067
|
+
class OfferStatusFilterComparison(sgqlc.types.Input):
|
|
3068
|
+
__schema__ = schema
|
|
3069
|
+
__field_names__ = ('eq', 'gt', 'gte', 'i_like', 'in_', 'is_', 'is_not', 'like', 'lt', 'lte', 'neq', 'not_ilike', 'not_in', 'not_like')
|
|
3070
|
+
eq = sgqlc.types.Field(OfferStatus, graphql_name='eq')
|
|
3071
|
+
gt = sgqlc.types.Field(OfferStatus, graphql_name='gt')
|
|
3072
|
+
gte = sgqlc.types.Field(OfferStatus, graphql_name='gte')
|
|
3073
|
+
i_like = sgqlc.types.Field(OfferStatus, graphql_name='iLike')
|
|
3074
|
+
in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(OfferStatus)), graphql_name='in')
|
|
3075
|
+
is_ = sgqlc.types.Field(Boolean, graphql_name='is')
|
|
3076
|
+
is_not = sgqlc.types.Field(Boolean, graphql_name='isNot')
|
|
3077
|
+
like = sgqlc.types.Field(OfferStatus, graphql_name='like')
|
|
3078
|
+
lt = sgqlc.types.Field(OfferStatus, graphql_name='lt')
|
|
3079
|
+
lte = sgqlc.types.Field(OfferStatus, graphql_name='lte')
|
|
3080
|
+
neq = sgqlc.types.Field(OfferStatus, graphql_name='neq')
|
|
3081
|
+
not_ilike = sgqlc.types.Field(OfferStatus, graphql_name='notILike')
|
|
3082
|
+
not_in = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(OfferStatus)), graphql_name='notIn')
|
|
3083
|
+
not_like = sgqlc.types.Field(OfferStatus, graphql_name='notLike')
|
|
3084
|
+
|
|
3085
|
+
|
|
2773
3086
|
class OpenFGACredentialsInput(sgqlc.types.Input):
|
|
2774
3087
|
__schema__ = schema
|
|
2775
3088
|
__field_names__ = ('api_audience', 'api_token_issuer', 'api_url', 'client_id', 'client_secret', 'store_id')
|
|
@@ -2783,7 +3096,7 @@ class OpenFGACredentialsInput(sgqlc.types.Input):
|
|
|
2783
3096
|
|
|
2784
3097
|
class OverageEntitlementCreateInput(sgqlc.types.Input):
|
|
2785
3098
|
__schema__ = schema
|
|
2786
|
-
__field_names__ = ('behavior', 'description', 'display_name_override', 'enum_values', 'feature_group_id', 'feature_id', 'has_soft_limit', 'has_unlimited_usage', 'hidden_from_widgets', 'is_custom', 'monthly_reset_period_configuration', 'order', 'reset_period', 'usage_limit', 'weekly_reset_period_configuration', 'yearly_reset_period_configuration')
|
|
3099
|
+
__field_names__ = ('behavior', 'description', 'display_name_override', 'enum_values', 'feature_group_id', 'feature_id', 'has_soft_limit', 'has_unlimited_usage', 'hidden_from_widgets', 'is_custom', 'is_granted', 'monthly_reset_period_configuration', 'order', 'reset_period', 'usage_limit', 'weekly_reset_period_configuration', 'yearly_reset_period_configuration')
|
|
2787
3100
|
behavior = sgqlc.types.Field(EntitlementBehavior, graphql_name='behavior')
|
|
2788
3101
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
2789
3102
|
display_name_override = sgqlc.types.Field(String, graphql_name='displayNameOverride')
|
|
@@ -2794,6 +3107,7 @@ class OverageEntitlementCreateInput(sgqlc.types.Input):
|
|
|
2794
3107
|
has_unlimited_usage = sgqlc.types.Field(Boolean, graphql_name='hasUnlimitedUsage')
|
|
2795
3108
|
hidden_from_widgets = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(WidgetType)), graphql_name='hiddenFromWidgets')
|
|
2796
3109
|
is_custom = sgqlc.types.Field(Boolean, graphql_name='isCustom')
|
|
3110
|
+
is_granted = sgqlc.types.Field(Boolean, graphql_name='isGranted')
|
|
2797
3111
|
monthly_reset_period_configuration = sgqlc.types.Field(MonthlyResetPeriodConfigInput, graphql_name='monthlyResetPeriodConfiguration')
|
|
2798
3112
|
order = sgqlc.types.Field(Float, graphql_name='order')
|
|
2799
3113
|
reset_period = sgqlc.types.Field(EntitlementResetPeriod, graphql_name='resetPeriod')
|
|
@@ -2804,17 +3118,19 @@ class OverageEntitlementCreateInput(sgqlc.types.Input):
|
|
|
2804
3118
|
|
|
2805
3119
|
class OveragePricingModelCreateInput(sgqlc.types.Input):
|
|
2806
3120
|
__schema__ = schema
|
|
2807
|
-
__field_names__ = ('billing_cadence', 'billing_model', 'entitlement', 'feature_id', 'price_periods')
|
|
3121
|
+
__field_names__ = ('billing_cadence', 'billing_id', 'billing_model', 'entitlement', 'feature_id', 'price_periods', 'top_up_custom_currency_id')
|
|
2808
3122
|
billing_cadence = sgqlc.types.Field(BillingCadence, graphql_name='billingCadence')
|
|
3123
|
+
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
2809
3124
|
billing_model = sgqlc.types.Field(sgqlc.types.non_null(BillingModel), graphql_name='billingModel')
|
|
2810
3125
|
entitlement = sgqlc.types.Field(OverageEntitlementCreateInput, graphql_name='entitlement')
|
|
2811
3126
|
feature_id = sgqlc.types.Field(String, graphql_name='featureId')
|
|
2812
3127
|
price_periods = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('PricePeriodInput'))), graphql_name='pricePeriods')
|
|
3128
|
+
top_up_custom_currency_id = sgqlc.types.Field(String, graphql_name='topUpCustomCurrencyId')
|
|
2813
3129
|
|
|
2814
3130
|
|
|
2815
3131
|
class PackageDTOFilter(sgqlc.types.Input):
|
|
2816
3132
|
__schema__ = schema
|
|
2817
|
-
__field_names__ = ('and_', 'billing_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'is_latest', 'or_', 'pricing_type', 'product_id', 'ref_id', 'status', 'updated_at', 'version_number')
|
|
3133
|
+
__field_names__ = ('and_', 'billing_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'is_latest', 'offer', 'or_', 'pricing_type', 'product_id', 'ref_id', 'status', 'updated_at', 'version_number')
|
|
2818
3134
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PackageDTOFilter')), graphql_name='and')
|
|
2819
3135
|
billing_id = sgqlc.types.Field('StringFieldComparison', graphql_name='billingId')
|
|
2820
3136
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
@@ -2823,6 +3139,7 @@ class PackageDTOFilter(sgqlc.types.Input):
|
|
|
2823
3139
|
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
2824
3140
|
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
2825
3141
|
is_latest = sgqlc.types.Field(BooleanFieldComparison, graphql_name='isLatest')
|
|
3142
|
+
offer = sgqlc.types.Field('PackageDTOFilterOfferFilter', graphql_name='offer')
|
|
2826
3143
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PackageDTOFilter')), graphql_name='or')
|
|
2827
3144
|
pricing_type = sgqlc.types.Field('PricingTypeFilterComparison', graphql_name='pricingType')
|
|
2828
3145
|
product_id = sgqlc.types.Field('StringFieldComparison', graphql_name='productId')
|
|
@@ -2832,6 +3149,21 @@ class PackageDTOFilter(sgqlc.types.Input):
|
|
|
2832
3149
|
version_number = sgqlc.types.Field(IntFieldComparison, graphql_name='versionNumber')
|
|
2833
3150
|
|
|
2834
3151
|
|
|
3152
|
+
class PackageDTOFilterOfferFilter(sgqlc.types.Input):
|
|
3153
|
+
__schema__ = schema
|
|
3154
|
+
__field_names__ = ('and_', 'created_at', 'environment_id', 'id', 'is_default', 'is_latest', 'offer_id', 'or_', 'status', 'version')
|
|
3155
|
+
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PackageDTOFilterOfferFilter')), graphql_name='and')
|
|
3156
|
+
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
3157
|
+
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
3158
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
3159
|
+
is_default = sgqlc.types.Field(BooleanFieldComparison, graphql_name='isDefault')
|
|
3160
|
+
is_latest = sgqlc.types.Field(BooleanFieldComparison, graphql_name='isLatest')
|
|
3161
|
+
offer_id = sgqlc.types.Field('StringFieldComparison', graphql_name='offerId')
|
|
3162
|
+
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PackageDTOFilterOfferFilter')), graphql_name='or')
|
|
3163
|
+
status = sgqlc.types.Field(OfferStatusFilterComparison, graphql_name='status')
|
|
3164
|
+
version = sgqlc.types.Field(IntFieldComparison, graphql_name='version')
|
|
3165
|
+
|
|
3166
|
+
|
|
2835
3167
|
class PackageDTOSort(sgqlc.types.Input):
|
|
2836
3168
|
__schema__ = schema
|
|
2837
3169
|
__field_names__ = ('direction', 'field', 'nulls')
|
|
@@ -2893,7 +3225,7 @@ class PackageEntitlementFilterPackageDTOFilter(sgqlc.types.Input):
|
|
|
2893
3225
|
|
|
2894
3226
|
class PackageEntitlementInput(sgqlc.types.Input):
|
|
2895
3227
|
__schema__ = schema
|
|
2896
|
-
__field_names__ = ('behavior', 'description', 'display_name_override', 'enum_values', 'environment_id', 'feature_group_id', 'feature_id', 'has_soft_limit', 'has_unlimited_usage', 'hidden_from_widgets', 'is_custom', 'monthly_reset_period_configuration', 'order', 'package_id', 'reset_period', 'usage_limit', 'weekly_reset_period_configuration', 'yearly_reset_period_configuration')
|
|
3228
|
+
__field_names__ = ('behavior', 'description', 'display_name_override', 'enum_values', 'environment_id', 'feature_group_id', 'feature_id', 'has_soft_limit', 'has_unlimited_usage', 'hidden_from_widgets', 'is_custom', 'is_granted', 'monthly_reset_period_configuration', 'order', 'package_id', 'reset_period', 'usage_limit', 'weekly_reset_period_configuration', 'yearly_reset_period_configuration')
|
|
2897
3229
|
behavior = sgqlc.types.Field(EntitlementBehavior, graphql_name='behavior')
|
|
2898
3230
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
2899
3231
|
display_name_override = sgqlc.types.Field(String, graphql_name='displayNameOverride')
|
|
@@ -2905,6 +3237,7 @@ class PackageEntitlementInput(sgqlc.types.Input):
|
|
|
2905
3237
|
has_unlimited_usage = sgqlc.types.Field(Boolean, graphql_name='hasUnlimitedUsage')
|
|
2906
3238
|
hidden_from_widgets = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(WidgetType)), graphql_name='hiddenFromWidgets')
|
|
2907
3239
|
is_custom = sgqlc.types.Field(Boolean, graphql_name='isCustom')
|
|
3240
|
+
is_granted = sgqlc.types.Field(Boolean, graphql_name='isGranted')
|
|
2908
3241
|
monthly_reset_period_configuration = sgqlc.types.Field(MonthlyResetPeriodConfigInput, graphql_name='monthlyResetPeriodConfiguration')
|
|
2909
3242
|
order = sgqlc.types.Field(Float, graphql_name='order')
|
|
2910
3243
|
package_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='packageId')
|
|
@@ -2924,7 +3257,7 @@ class PackageEntitlementSort(sgqlc.types.Input):
|
|
|
2924
3257
|
|
|
2925
3258
|
class PackageEntitlementUpdateInput(sgqlc.types.Input):
|
|
2926
3259
|
__schema__ = schema
|
|
2927
|
-
__field_names__ = ('behavior', 'description', 'display_name_override', 'enum_values', 'has_soft_limit', 'has_unlimited_usage', 'hidden_from_widgets', 'is_custom', 'monthly_reset_period_configuration', 'order', 'reset_period', 'usage_limit', 'weekly_reset_period_configuration', 'yearly_reset_period_configuration')
|
|
3260
|
+
__field_names__ = ('behavior', 'description', 'display_name_override', 'enum_values', 'has_soft_limit', 'has_unlimited_usage', 'hidden_from_widgets', 'is_custom', 'is_granted', 'monthly_reset_period_configuration', 'order', 'reset_period', 'usage_limit', 'weekly_reset_period_configuration', 'yearly_reset_period_configuration')
|
|
2928
3261
|
behavior = sgqlc.types.Field(EntitlementBehavior, graphql_name='behavior')
|
|
2929
3262
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
2930
3263
|
display_name_override = sgqlc.types.Field(String, graphql_name='displayNameOverride')
|
|
@@ -2933,6 +3266,7 @@ class PackageEntitlementUpdateInput(sgqlc.types.Input):
|
|
|
2933
3266
|
has_unlimited_usage = sgqlc.types.Field(Boolean, graphql_name='hasUnlimitedUsage')
|
|
2934
3267
|
hidden_from_widgets = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(WidgetType)), graphql_name='hiddenFromWidgets')
|
|
2935
3268
|
is_custom = sgqlc.types.Field(Boolean, graphql_name='isCustom')
|
|
3269
|
+
is_granted = sgqlc.types.Field(Boolean, graphql_name='isGranted')
|
|
2936
3270
|
monthly_reset_period_configuration = sgqlc.types.Field(MonthlyResetPeriodConfigInput, graphql_name='monthlyResetPeriodConfiguration')
|
|
2937
3271
|
order = sgqlc.types.Field(Float, graphql_name='order')
|
|
2938
3272
|
reset_period = sgqlc.types.Field(EntitlementResetPeriod, graphql_name='resetPeriod')
|
|
@@ -2960,7 +3294,7 @@ class PackageGroupFilter(sgqlc.types.Input):
|
|
|
2960
3294
|
|
|
2961
3295
|
class PackageGroupFilterProductFilter(sgqlc.types.Input):
|
|
2962
3296
|
__schema__ = schema
|
|
2963
|
-
__field_names__ = ('and_', 'aws_marketplace_product_code', 'aws_marketplace_product_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'is_default_product', 'multiple_subscriptions', 'or_', 'ref_id', 'updated_at')
|
|
3297
|
+
__field_names__ = ('and_', 'aws_marketplace_product_code', 'aws_marketplace_product_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'is_default_product', 'multiple_subscriptions', 'or_', 'ref_id', 'status', 'updated_at')
|
|
2964
3298
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PackageGroupFilterProductFilter')), graphql_name='and')
|
|
2965
3299
|
aws_marketplace_product_code = sgqlc.types.Field('StringFieldComparison', graphql_name='awsMarketplaceProductCode')
|
|
2966
3300
|
aws_marketplace_product_id = sgqlc.types.Field('StringFieldComparison', graphql_name='awsMarketplaceProductId')
|
|
@@ -2973,6 +3307,7 @@ class PackageGroupFilterProductFilter(sgqlc.types.Input):
|
|
|
2973
3307
|
multiple_subscriptions = sgqlc.types.Field(BooleanFieldComparison, graphql_name='multipleSubscriptions')
|
|
2974
3308
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PackageGroupFilterProductFilter')), graphql_name='or')
|
|
2975
3309
|
ref_id = sgqlc.types.Field('StringFieldComparison', graphql_name='refId')
|
|
3310
|
+
status = sgqlc.types.Field('ProductStatusFilterComparison', graphql_name='status')
|
|
2976
3311
|
updated_at = sgqlc.types.Field(DateFieldComparison, graphql_name='updatedAt')
|
|
2977
3312
|
|
|
2978
3313
|
|
|
@@ -3005,13 +3340,13 @@ class PackageGroupStatusFilterComparison(sgqlc.types.Input):
|
|
|
3005
3340
|
|
|
3006
3341
|
class PackagePricingInput(sgqlc.types.Input):
|
|
3007
3342
|
__schema__ = schema
|
|
3008
|
-
__field_names__ = ('environment_id', 'minimum_spend', 'overage_billing_period', 'overage_pricing_models', 'package_id', '
|
|
3343
|
+
__field_names__ = ('environment_id', 'minimum_spend', 'overage_billing_period', 'overage_pricing_models', 'package_id', 'price_group_package_billing_id', 'pricing_models', 'pricing_type')
|
|
3009
3344
|
environment_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='environmentId')
|
|
3010
3345
|
minimum_spend = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(MinimumSpendInput)), graphql_name='minimumSpend')
|
|
3011
3346
|
overage_billing_period = sgqlc.types.Field(OverageBillingPeriod, graphql_name='overageBillingPeriod')
|
|
3012
3347
|
overage_pricing_models = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(OveragePricingModelCreateInput)), graphql_name='overagePricingModels')
|
|
3013
3348
|
package_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='packageId')
|
|
3014
|
-
|
|
3349
|
+
price_group_package_billing_id = sgqlc.types.Field(String, graphql_name='priceGroupPackageBillingId')
|
|
3015
3350
|
pricing_models = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PricingModelCreateInput')), graphql_name='pricingModels')
|
|
3016
3351
|
pricing_type = sgqlc.types.Field(sgqlc.types.non_null(PricingType), graphql_name='pricingType')
|
|
3017
3352
|
|
|
@@ -3061,6 +3396,14 @@ class PaymentCollectionFilterComparison(sgqlc.types.Input):
|
|
|
3061
3396
|
not_like = sgqlc.types.Field(PaymentCollection, graphql_name='notLike')
|
|
3062
3397
|
|
|
3063
3398
|
|
|
3399
|
+
class PaymentSessionInput(sgqlc.types.Input):
|
|
3400
|
+
__schema__ = schema
|
|
3401
|
+
__field_names__ = ('billing_country_code', 'customer_id', 'plan_id')
|
|
3402
|
+
billing_country_code = sgqlc.types.Field(String, graphql_name='billingCountryCode')
|
|
3403
|
+
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
3404
|
+
plan_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='planId')
|
|
3405
|
+
|
|
3406
|
+
|
|
3064
3407
|
class PaywallColorsPaletteInput(sgqlc.types.Input):
|
|
3065
3408
|
__schema__ = schema
|
|
3066
3409
|
__field_names__ = ('background_color', 'border_color', 'current_plan_background', 'primary', 'text_color')
|
|
@@ -3108,7 +3451,7 @@ class PlanCreateInput(sgqlc.types.Input):
|
|
|
3108
3451
|
|
|
3109
3452
|
class PlanFilter(sgqlc.types.Input):
|
|
3110
3453
|
__schema__ = schema
|
|
3111
|
-
__field_names__ = ('and_', 'billing_id', 'compatible_addons', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'is_latest', 'or_', 'pricing_type', 'product', 'product_id', 'ref_id', 'status', 'updated_at', 'version_number')
|
|
3454
|
+
__field_names__ = ('and_', 'billing_id', 'compatible_addons', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'is_latest', 'offer', 'or_', 'pricing_type', 'product', 'product_id', 'ref_id', 'status', 'updated_at', 'version_number')
|
|
3112
3455
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PlanFilter')), graphql_name='and')
|
|
3113
3456
|
billing_id = sgqlc.types.Field('StringFieldComparison', graphql_name='billingId')
|
|
3114
3457
|
compatible_addons = sgqlc.types.Field('PlanFilterAddonFilter', graphql_name='compatibleAddons')
|
|
@@ -3118,6 +3461,7 @@ class PlanFilter(sgqlc.types.Input):
|
|
|
3118
3461
|
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
3119
3462
|
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
3120
3463
|
is_latest = sgqlc.types.Field(BooleanFieldComparison, graphql_name='isLatest')
|
|
3464
|
+
offer = sgqlc.types.Field('PlanFilterOfferFilter', graphql_name='offer')
|
|
3121
3465
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PlanFilter')), graphql_name='or')
|
|
3122
3466
|
pricing_type = sgqlc.types.Field('PricingTypeFilterComparison', graphql_name='pricingType')
|
|
3123
3467
|
product = sgqlc.types.Field('PlanFilterProductFilter', graphql_name='product')
|
|
@@ -3148,9 +3492,24 @@ class PlanFilterAddonFilter(sgqlc.types.Input):
|
|
|
3148
3492
|
version_number = sgqlc.types.Field(IntFieldComparison, graphql_name='versionNumber')
|
|
3149
3493
|
|
|
3150
3494
|
|
|
3495
|
+
class PlanFilterOfferFilter(sgqlc.types.Input):
|
|
3496
|
+
__schema__ = schema
|
|
3497
|
+
__field_names__ = ('and_', 'created_at', 'environment_id', 'id', 'is_default', 'is_latest', 'offer_id', 'or_', 'status', 'version')
|
|
3498
|
+
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PlanFilterOfferFilter')), graphql_name='and')
|
|
3499
|
+
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
3500
|
+
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
3501
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
3502
|
+
is_default = sgqlc.types.Field(BooleanFieldComparison, graphql_name='isDefault')
|
|
3503
|
+
is_latest = sgqlc.types.Field(BooleanFieldComparison, graphql_name='isLatest')
|
|
3504
|
+
offer_id = sgqlc.types.Field('StringFieldComparison', graphql_name='offerId')
|
|
3505
|
+
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PlanFilterOfferFilter')), graphql_name='or')
|
|
3506
|
+
status = sgqlc.types.Field(OfferStatusFilterComparison, graphql_name='status')
|
|
3507
|
+
version = sgqlc.types.Field(IntFieldComparison, graphql_name='version')
|
|
3508
|
+
|
|
3509
|
+
|
|
3151
3510
|
class PlanFilterProductFilter(sgqlc.types.Input):
|
|
3152
3511
|
__schema__ = schema
|
|
3153
|
-
__field_names__ = ('and_', 'aws_marketplace_product_code', 'aws_marketplace_product_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'is_default_product', 'multiple_subscriptions', 'or_', 'ref_id', 'updated_at')
|
|
3512
|
+
__field_names__ = ('and_', 'aws_marketplace_product_code', 'aws_marketplace_product_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'is_default_product', 'multiple_subscriptions', 'or_', 'ref_id', 'status', 'updated_at')
|
|
3154
3513
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PlanFilterProductFilter')), graphql_name='and')
|
|
3155
3514
|
aws_marketplace_product_code = sgqlc.types.Field('StringFieldComparison', graphql_name='awsMarketplaceProductCode')
|
|
3156
3515
|
aws_marketplace_product_id = sgqlc.types.Field('StringFieldComparison', graphql_name='awsMarketplaceProductId')
|
|
@@ -3163,6 +3522,7 @@ class PlanFilterProductFilter(sgqlc.types.Input):
|
|
|
3163
3522
|
multiple_subscriptions = sgqlc.types.Field(BooleanFieldComparison, graphql_name='multipleSubscriptions')
|
|
3164
3523
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PlanFilterProductFilter')), graphql_name='or')
|
|
3165
3524
|
ref_id = sgqlc.types.Field('StringFieldComparison', graphql_name='refId')
|
|
3525
|
+
status = sgqlc.types.Field('ProductStatusFilterComparison', graphql_name='status')
|
|
3166
3526
|
updated_at = sgqlc.types.Field(DateFieldComparison, graphql_name='updatedAt')
|
|
3167
3527
|
|
|
3168
3528
|
|
|
@@ -3197,6 +3557,19 @@ class PreparePaymentMethodFormInput(sgqlc.types.Input):
|
|
|
3197
3557
|
integration_id = sgqlc.types.Field(String, graphql_name='integrationId')
|
|
3198
3558
|
|
|
3199
3559
|
|
|
3560
|
+
class PreviewCreditGrantInput(sgqlc.types.Input):
|
|
3561
|
+
__schema__ = schema
|
|
3562
|
+
__field_names__ = ('amount', 'applied_coupon', 'billing_information', 'cost', 'currency_id', 'customer_id', 'environment_id', 'resource_id')
|
|
3563
|
+
amount = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='amount')
|
|
3564
|
+
applied_coupon = sgqlc.types.Field(CreditGrantCouponInput, graphql_name='appliedCoupon')
|
|
3565
|
+
billing_information = sgqlc.types.Field(CreditGrantBillingInfoInput, graphql_name='billingInformation')
|
|
3566
|
+
cost = sgqlc.types.Field(sgqlc.types.non_null(MoneyInputDTO), graphql_name='cost')
|
|
3567
|
+
currency_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='currencyId')
|
|
3568
|
+
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
3569
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
3570
|
+
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
3571
|
+
|
|
3572
|
+
|
|
3200
3573
|
class PreviewNextInvoiceInput(sgqlc.types.Input):
|
|
3201
3574
|
__schema__ = schema
|
|
3202
3575
|
__field_names__ = ('environment_id', 'subscription_id')
|
|
@@ -3206,13 +3579,14 @@ class PreviewNextInvoiceInput(sgqlc.types.Input):
|
|
|
3206
3579
|
|
|
3207
3580
|
class PreviewSubscriptionInput(sgqlc.types.Input):
|
|
3208
3581
|
__schema__ = schema
|
|
3209
|
-
__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')
|
|
3210
3583
|
addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonInput')), graphql_name='addons')
|
|
3211
3584
|
applied_coupon = sgqlc.types.Field('SubscriptionCouponInput', graphql_name='appliedCoupon')
|
|
3212
3585
|
billable_features = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(BillableFeatureInput)), graphql_name='billableFeatures')
|
|
3213
3586
|
billing_country_code = sgqlc.types.Field(String, graphql_name='billingCountryCode')
|
|
3214
3587
|
billing_information = sgqlc.types.Field('SubscriptionBillingInfo', graphql_name='billingInformation')
|
|
3215
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')
|
|
3216
3590
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
3217
3591
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
3218
3592
|
paying_customer_id = sgqlc.types.Field(String, graphql_name='payingCustomerId')
|
|
@@ -3262,10 +3636,12 @@ class PriceFilterPackageDTOFilter(sgqlc.types.Input):
|
|
|
3262
3636
|
|
|
3263
3637
|
class PriceOverrideInput(sgqlc.types.Input):
|
|
3264
3638
|
__schema__ = schema
|
|
3265
|
-
__field_names__ = ('addon_id', 'base_charge', 'block_size', 'feature_id', 'price', 'tiers')
|
|
3639
|
+
__field_names__ = ('addon_id', 'base_charge', 'block_size', 'credit_grant_cadence', 'credit_rate', 'feature_id', 'price', 'tiers')
|
|
3266
3640
|
addon_id = sgqlc.types.Field(String, graphql_name='addonId')
|
|
3267
3641
|
base_charge = sgqlc.types.Field(Boolean, graphql_name='baseCharge')
|
|
3268
3642
|
block_size = sgqlc.types.Field(Float, graphql_name='blockSize')
|
|
3643
|
+
credit_grant_cadence = sgqlc.types.Field(CreditGrantCadence, graphql_name='creditGrantCadence')
|
|
3644
|
+
credit_rate = sgqlc.types.Field(CreditRateInput, graphql_name='creditRate')
|
|
3269
3645
|
feature_id = sgqlc.types.Field(String, graphql_name='featureId')
|
|
3270
3646
|
price = sgqlc.types.Field(MoneyInputDTO, graphql_name='price')
|
|
3271
3647
|
tiers = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PriceTierInput')), graphql_name='tiers')
|
|
@@ -3273,10 +3649,12 @@ class PriceOverrideInput(sgqlc.types.Input):
|
|
|
3273
3649
|
|
|
3274
3650
|
class PricePeriodInput(sgqlc.types.Input):
|
|
3275
3651
|
__schema__ = schema
|
|
3276
|
-
__field_names__ = ('billing_country_code', 'billing_period', 'block_size', 'price', 'tiers')
|
|
3652
|
+
__field_names__ = ('billing_country_code', 'billing_period', 'block_size', 'credit_grant_cadence', 'credit_rate', 'price', 'tiers')
|
|
3277
3653
|
billing_country_code = sgqlc.types.Field(String, graphql_name='billingCountryCode')
|
|
3278
3654
|
billing_period = sgqlc.types.Field(sgqlc.types.non_null(BillingPeriod), graphql_name='billingPeriod')
|
|
3279
3655
|
block_size = sgqlc.types.Field(Float, graphql_name='blockSize')
|
|
3656
|
+
credit_grant_cadence = sgqlc.types.Field(CreditGrantCadence, graphql_name='creditGrantCadence')
|
|
3657
|
+
credit_rate = sgqlc.types.Field(CreditRateInput, graphql_name='creditRate')
|
|
3280
3658
|
price = sgqlc.types.Field(MoneyInputDTO, graphql_name='price')
|
|
3281
3659
|
tiers = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PriceTierInput')), graphql_name='tiers')
|
|
3282
3660
|
|
|
@@ -3299,8 +3677,9 @@ class PriceTierInput(sgqlc.types.Input):
|
|
|
3299
3677
|
|
|
3300
3678
|
class PricingModelCreateInput(sgqlc.types.Input):
|
|
3301
3679
|
__schema__ = schema
|
|
3302
|
-
__field_names__ = ('billing_cadence', 'billing_model', 'feature_id', 'max_unit_quantity', 'min_unit_quantity', 'monthly_reset_period_configuration', 'price_periods', 'reset_period', 'tiers_mode', 'weekly_reset_period_configuration', 'yearly_reset_period_configuration')
|
|
3680
|
+
__field_names__ = ('billing_cadence', 'billing_id', 'billing_model', 'feature_id', 'max_unit_quantity', 'min_unit_quantity', 'monthly_reset_period_configuration', 'price_periods', 'reset_period', 'tiers_mode', 'top_up_custom_currency_id', 'weekly_reset_period_configuration', 'yearly_reset_period_configuration')
|
|
3303
3681
|
billing_cadence = sgqlc.types.Field(BillingCadence, graphql_name='billingCadence')
|
|
3682
|
+
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
3304
3683
|
billing_model = sgqlc.types.Field(sgqlc.types.non_null(BillingModel), graphql_name='billingModel')
|
|
3305
3684
|
feature_id = sgqlc.types.Field(String, graphql_name='featureId')
|
|
3306
3685
|
max_unit_quantity = sgqlc.types.Field(Float, graphql_name='maxUnitQuantity')
|
|
@@ -3309,6 +3688,7 @@ class PricingModelCreateInput(sgqlc.types.Input):
|
|
|
3309
3688
|
price_periods = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(PricePeriodInput))), graphql_name='pricePeriods')
|
|
3310
3689
|
reset_period = sgqlc.types.Field(EntitlementResetPeriod, graphql_name='resetPeriod')
|
|
3311
3690
|
tiers_mode = sgqlc.types.Field(TiersMode, graphql_name='tiersMode')
|
|
3691
|
+
top_up_custom_currency_id = sgqlc.types.Field(String, graphql_name='topUpCustomCurrencyId')
|
|
3312
3692
|
weekly_reset_period_configuration = sgqlc.types.Field('WeeklyResetPeriodConfigInput', graphql_name='weeklyResetPeriodConfiguration')
|
|
3313
3693
|
yearly_reset_period_configuration = sgqlc.types.Field('YearlyResetPeriodConfigInput', graphql_name='yearlyResetPeriodConfiguration')
|
|
3314
3694
|
|
|
@@ -3345,7 +3725,7 @@ class ProductCreateInput(sgqlc.types.Input):
|
|
|
3345
3725
|
|
|
3346
3726
|
class ProductFilter(sgqlc.types.Input):
|
|
3347
3727
|
__schema__ = schema
|
|
3348
|
-
__field_names__ = ('and_', 'aws_marketplace_product_code', 'aws_marketplace_product_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'is_default_product', 'multiple_subscriptions', 'or_', 'ref_id', 'updated_at')
|
|
3728
|
+
__field_names__ = ('and_', 'aws_marketplace_product_code', 'aws_marketplace_product_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'is_default_product', 'multiple_subscriptions', 'or_', 'ref_id', 'status', 'updated_at')
|
|
3349
3729
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ProductFilter')), graphql_name='and')
|
|
3350
3730
|
aws_marketplace_product_code = sgqlc.types.Field('StringFieldComparison', graphql_name='awsMarketplaceProductCode')
|
|
3351
3731
|
aws_marketplace_product_id = sgqlc.types.Field('StringFieldComparison', graphql_name='awsMarketplaceProductId')
|
|
@@ -3358,6 +3738,7 @@ class ProductFilter(sgqlc.types.Input):
|
|
|
3358
3738
|
multiple_subscriptions = sgqlc.types.Field(BooleanFieldComparison, graphql_name='multipleSubscriptions')
|
|
3359
3739
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ProductFilter')), graphql_name='or')
|
|
3360
3740
|
ref_id = sgqlc.types.Field('StringFieldComparison', graphql_name='refId')
|
|
3741
|
+
status = sgqlc.types.Field('ProductStatusFilterComparison', graphql_name='status')
|
|
3361
3742
|
updated_at = sgqlc.types.Field(DateFieldComparison, graphql_name='updatedAt')
|
|
3362
3743
|
|
|
3363
3744
|
|
|
@@ -3381,6 +3762,25 @@ class ProductSort(sgqlc.types.Input):
|
|
|
3381
3762
|
nulls = sgqlc.types.Field(SortNulls, graphql_name='nulls')
|
|
3382
3763
|
|
|
3383
3764
|
|
|
3765
|
+
class ProductStatusFilterComparison(sgqlc.types.Input):
|
|
3766
|
+
__schema__ = schema
|
|
3767
|
+
__field_names__ = ('eq', 'gt', 'gte', 'i_like', 'in_', 'is_', 'is_not', 'like', 'lt', 'lte', 'neq', 'not_ilike', 'not_in', 'not_like')
|
|
3768
|
+
eq = sgqlc.types.Field(ProductStatus, graphql_name='eq')
|
|
3769
|
+
gt = sgqlc.types.Field(ProductStatus, graphql_name='gt')
|
|
3770
|
+
gte = sgqlc.types.Field(ProductStatus, graphql_name='gte')
|
|
3771
|
+
i_like = sgqlc.types.Field(ProductStatus, graphql_name='iLike')
|
|
3772
|
+
in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ProductStatus)), graphql_name='in')
|
|
3773
|
+
is_ = sgqlc.types.Field(Boolean, graphql_name='is')
|
|
3774
|
+
is_not = sgqlc.types.Field(Boolean, graphql_name='isNot')
|
|
3775
|
+
like = sgqlc.types.Field(ProductStatus, graphql_name='like')
|
|
3776
|
+
lt = sgqlc.types.Field(ProductStatus, graphql_name='lt')
|
|
3777
|
+
lte = sgqlc.types.Field(ProductStatus, graphql_name='lte')
|
|
3778
|
+
neq = sgqlc.types.Field(ProductStatus, graphql_name='neq')
|
|
3779
|
+
not_ilike = sgqlc.types.Field(ProductStatus, graphql_name='notILike')
|
|
3780
|
+
not_in = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ProductStatus)), graphql_name='notIn')
|
|
3781
|
+
not_like = sgqlc.types.Field(ProductStatus, graphql_name='notLike')
|
|
3782
|
+
|
|
3783
|
+
|
|
3384
3784
|
class ProductUpdateInput(sgqlc.types.Input):
|
|
3385
3785
|
__schema__ = schema
|
|
3386
3786
|
__field_names__ = ('additional_meta_data', 'auto_cancellation_rules', 'description', 'display_name', 'multiple_subscriptions', 'product_settings', 'usage_reset_cutoff_rule')
|
|
@@ -3407,12 +3807,13 @@ class PromotionalEntitlementFilter(sgqlc.types.Input):
|
|
|
3407
3807
|
|
|
3408
3808
|
class PromotionalEntitlementInput(sgqlc.types.Input):
|
|
3409
3809
|
__schema__ = schema
|
|
3410
|
-
__field_names__ = ('customer_id', 'description', 'end_date', 'enum_values', 'environment_id', 'feature_id', 'has_soft_limit', 'has_unlimited_usage', 'is_visible', 'monthly_reset_period_configuration', 'period', 'reset_period', 'usage_limit', 'weekly_reset_period_configuration', 'yearly_reset_period_configuration')
|
|
3810
|
+
__field_names__ = ('customer_id', 'description', 'end_date', 'enum_values', 'environment_id', 'feature_group_id', 'feature_id', 'has_soft_limit', 'has_unlimited_usage', 'is_visible', 'monthly_reset_period_configuration', 'period', 'reset_period', 'usage_limit', 'weekly_reset_period_configuration', 'yearly_reset_period_configuration')
|
|
3411
3811
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
3412
3812
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
3413
3813
|
end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
|
|
3414
3814
|
enum_values = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='enumValues')
|
|
3415
3815
|
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
3816
|
+
feature_group_id = sgqlc.types.Field(UUID, graphql_name='featureGroupId')
|
|
3416
3817
|
feature_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='featureId')
|
|
3417
3818
|
has_soft_limit = sgqlc.types.Field(Boolean, graphql_name='hasSoftLimit')
|
|
3418
3819
|
has_unlimited_usage = sgqlc.types.Field(Boolean, graphql_name='hasUnlimitedUsage')
|
|
@@ -3491,7 +3892,7 @@ class ProvisionCustomerInput(sgqlc.types.Input):
|
|
|
3491
3892
|
|
|
3492
3893
|
class ProvisionCustomerSubscriptionInput(sgqlc.types.Input):
|
|
3493
3894
|
__schema__ = schema
|
|
3494
|
-
__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')
|
|
3495
3896
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
3496
3897
|
addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonInput')), graphql_name='addons')
|
|
3497
3898
|
applied_coupon = sgqlc.types.Field('SubscriptionCouponInput', graphql_name='appliedCoupon')
|
|
@@ -3502,6 +3903,7 @@ class ProvisionCustomerSubscriptionInput(sgqlc.types.Input):
|
|
|
3502
3903
|
billing_information = sgqlc.types.Field('SubscriptionBillingInfo', graphql_name='billingInformation')
|
|
3503
3904
|
billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
|
|
3504
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')
|
|
3505
3907
|
minimum_spend = sgqlc.types.Field('SubscriptionMinimumSpendValueInput', graphql_name='minimumSpend')
|
|
3506
3908
|
payment_collection_method = sgqlc.types.Field(PaymentCollectionMethod, graphql_name='paymentCollectionMethod')
|
|
3507
3909
|
plan_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='planId')
|
|
@@ -3527,7 +3929,7 @@ class ProvisionSandboxInput(sgqlc.types.Input):
|
|
|
3527
3929
|
|
|
3528
3930
|
class ProvisionSubscription(sgqlc.types.Input):
|
|
3529
3931
|
__schema__ = schema
|
|
3530
|
-
__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')
|
|
3531
3933
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
3532
3934
|
addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonInput')), graphql_name='addons')
|
|
3533
3935
|
applied_coupon = sgqlc.types.Field('SubscriptionCouponInput', graphql_name='appliedCoupon')
|
|
@@ -3538,6 +3940,7 @@ class ProvisionSubscription(sgqlc.types.Input):
|
|
|
3538
3940
|
billing_information = sgqlc.types.Field('SubscriptionBillingInfo', graphql_name='billingInformation')
|
|
3539
3941
|
billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
|
|
3540
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')
|
|
3541
3944
|
checkout_options = sgqlc.types.Field(CheckoutOptions, graphql_name='checkoutOptions')
|
|
3542
3945
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
3543
3946
|
minimum_spend = sgqlc.types.Field('SubscriptionMinimumSpendValueInput', graphql_name='minimumSpend')
|
|
@@ -3561,7 +3964,7 @@ class ProvisionSubscription(sgqlc.types.Input):
|
|
|
3561
3964
|
|
|
3562
3965
|
class ProvisionSubscriptionInput(sgqlc.types.Input):
|
|
3563
3966
|
__schema__ = schema
|
|
3564
|
-
__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')
|
|
3565
3968
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
3566
3969
|
addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonInput')), graphql_name='addons')
|
|
3567
3970
|
applied_coupon = sgqlc.types.Field('SubscriptionCouponInput', graphql_name='appliedCoupon')
|
|
@@ -3572,6 +3975,7 @@ class ProvisionSubscriptionInput(sgqlc.types.Input):
|
|
|
3572
3975
|
billing_information = sgqlc.types.Field('SubscriptionBillingInfo', graphql_name='billingInformation')
|
|
3573
3976
|
billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
|
|
3574
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')
|
|
3575
3979
|
checkout_options = sgqlc.types.Field(CheckoutOptions, graphql_name='checkoutOptions')
|
|
3576
3980
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
3577
3981
|
minimum_spend = sgqlc.types.Field('SubscriptionMinimumSpendValueInput', graphql_name='minimumSpend')
|
|
@@ -3593,6 +3997,13 @@ class ProvisionSubscriptionInput(sgqlc.types.Input):
|
|
|
3593
3997
|
unit_quantity = sgqlc.types.Field(Float, graphql_name='unitQuantity')
|
|
3594
3998
|
|
|
3595
3999
|
|
|
4000
|
+
class PublishOfferInput(sgqlc.types.Input):
|
|
4001
|
+
__schema__ = schema
|
|
4002
|
+
__field_names__ = ('environment_id', 'offer_id')
|
|
4003
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
4004
|
+
offer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='offerId')
|
|
4005
|
+
|
|
4006
|
+
|
|
3596
4007
|
class RecalculateEntitlementsInput(sgqlc.types.Input):
|
|
3597
4008
|
__schema__ = schema
|
|
3598
4009
|
__field_names__ = ('customer_ids', 'environment_id', 'for_all_customers', 'side_effects_options')
|
|
@@ -3654,6 +4065,13 @@ class RemoveFeatureGroupFromPackageInput(sgqlc.types.Input):
|
|
|
3654
4065
|
package_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='packageId')
|
|
3655
4066
|
|
|
3656
4067
|
|
|
4068
|
+
class RemoveOfferDraftInput(sgqlc.types.Input):
|
|
4069
|
+
__schema__ = schema
|
|
4070
|
+
__field_names__ = ('environment_id', 'offer_id')
|
|
4071
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
4072
|
+
offer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='offerId')
|
|
4073
|
+
|
|
4074
|
+
|
|
3657
4075
|
class ReportUsageBaseInput(sgqlc.types.Input):
|
|
3658
4076
|
__schema__ = schema
|
|
3659
4077
|
__field_names__ = ('created_at', 'customer_id', 'dimensions', 'feature_id', 'resource_id', 'update_behavior', 'value')
|
|
@@ -3703,15 +4121,37 @@ class RevokePromotionalEntitlementInput(sgqlc.types.Input):
|
|
|
3703
4121
|
feature_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='featureId')
|
|
3704
4122
|
|
|
3705
4123
|
|
|
4124
|
+
class RevokePromotionalEntitlementsGroupInput(sgqlc.types.Input):
|
|
4125
|
+
__schema__ = schema
|
|
4126
|
+
__field_names__ = ('customer_id', 'environment_id', 'feature_group_id')
|
|
4127
|
+
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
4128
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
4129
|
+
feature_group_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='featureGroupId')
|
|
4130
|
+
|
|
4131
|
+
|
|
3706
4132
|
class SalesforceCredentialsInput(sgqlc.types.Input):
|
|
3707
4133
|
__schema__ = schema
|
|
3708
4134
|
__field_names__ = ('domain',)
|
|
3709
4135
|
domain = sgqlc.types.Field(String, graphql_name='domain')
|
|
3710
4136
|
|
|
3711
4137
|
|
|
3712
|
-
class
|
|
4138
|
+
class SaveAutoRechargeSettingsInput(sgqlc.types.Input):
|
|
3713
4139
|
__schema__ = schema
|
|
3714
|
-
__field_names__ = ('
|
|
4140
|
+
__field_names__ = ('currency_id', 'customer_id', 'environment_id', 'grant_expiration_period', 'is_enabled', 'max_spend_limit', 'target_balance', 'threshold_type', 'threshold_value')
|
|
4141
|
+
currency_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='currencyId')
|
|
4142
|
+
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
4143
|
+
environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
|
|
4144
|
+
grant_expiration_period = sgqlc.types.Field(GrantExpirationPeriod, graphql_name='grantExpirationPeriod')
|
|
4145
|
+
is_enabled = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='isEnabled')
|
|
4146
|
+
max_spend_limit = sgqlc.types.Field(Float, graphql_name='maxSpendLimit')
|
|
4147
|
+
target_balance = sgqlc.types.Field(Float, graphql_name='targetBalance')
|
|
4148
|
+
threshold_type = sgqlc.types.Field(ThresholdType, graphql_name='thresholdType')
|
|
4149
|
+
threshold_value = sgqlc.types.Field(Float, graphql_name='thresholdValue')
|
|
4150
|
+
|
|
4151
|
+
|
|
4152
|
+
class SetAccessRolesInput(sgqlc.types.Input):
|
|
4153
|
+
__schema__ = schema
|
|
4154
|
+
__field_names__ = ('account_role', 'non_production_role', 'production_role', 'user_id')
|
|
3715
4155
|
account_role = sgqlc.types.Field(sgqlc.types.non_null(AccountAccessRole), graphql_name='accountRole')
|
|
3716
4156
|
non_production_role = sgqlc.types.Field(sgqlc.types.non_null(EnvironmentAccessRole), graphql_name='nonProductionRole')
|
|
3717
4157
|
production_role = sgqlc.types.Field(sgqlc.types.non_null(EnvironmentAccessRole), graphql_name='productionRole')
|
|
@@ -3739,6 +4179,13 @@ class SetCouponOnCustomerInput(sgqlc.types.Input):
|
|
|
3739
4179
|
relation_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='relationId')
|
|
3740
4180
|
|
|
3741
4181
|
|
|
4182
|
+
class SetDefaultOfferInput(sgqlc.types.Input):
|
|
4183
|
+
__schema__ = schema
|
|
4184
|
+
__field_names__ = ('environment_id', 'offer_id')
|
|
4185
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
4186
|
+
offer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='offerId')
|
|
4187
|
+
|
|
4188
|
+
|
|
3742
4189
|
class SetExperimentOnCustomerInput(sgqlc.types.Input):
|
|
3743
4190
|
__schema__ = schema
|
|
3744
4191
|
__field_names__ = ('id', 'relation_id')
|
|
@@ -3785,10 +4232,12 @@ class SetPlanCompatiblePackageGroups(sgqlc.types.Input):
|
|
|
3785
4232
|
|
|
3786
4233
|
class SnowflakeCredentialsInput(sgqlc.types.Input):
|
|
3787
4234
|
__schema__ = schema
|
|
3788
|
-
__field_names__ = ('database', 'host', 'password', 'role', 'schema_name', 'username', 'warehouse')
|
|
4235
|
+
__field_names__ = ('database', 'host', 'passphrase', 'password', 'private_key', 'role', 'schema_name', 'username', 'warehouse')
|
|
3789
4236
|
database = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='database')
|
|
3790
4237
|
host = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='host')
|
|
3791
|
-
|
|
4238
|
+
passphrase = sgqlc.types.Field(String, graphql_name='passphrase')
|
|
4239
|
+
password = sgqlc.types.Field(String, graphql_name='password')
|
|
4240
|
+
private_key = sgqlc.types.Field(String, graphql_name='privateKey')
|
|
3792
4241
|
role = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='role')
|
|
3793
4242
|
schema_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='schemaName')
|
|
3794
4243
|
username = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='username')
|
|
@@ -3936,7 +4385,7 @@ class SubscriptionAddonSort(sgqlc.types.Input):
|
|
|
3936
4385
|
|
|
3937
4386
|
class SubscriptionBillingInfo(sgqlc.types.Input):
|
|
3938
4387
|
__schema__ = schema
|
|
3939
|
-
__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')
|
|
3940
4389
|
billing_address = sgqlc.types.Field(BillingAddress, graphql_name='billingAddress')
|
|
3941
4390
|
charge_on_behalf_of_account = sgqlc.types.Field(String, graphql_name='chargeOnBehalfOfAccount')
|
|
3942
4391
|
coupon_id = sgqlc.types.Field(String, graphql_name='couponId')
|
|
@@ -3945,7 +4394,8 @@ class SubscriptionBillingInfo(sgqlc.types.Input):
|
|
|
3945
4394
|
is_backdated = sgqlc.types.Field(Boolean, graphql_name='isBackdated')
|
|
3946
4395
|
is_invoice_paid = sgqlc.types.Field(Boolean, graphql_name='isInvoicePaid')
|
|
3947
4396
|
metadata = sgqlc.types.Field(JSON, graphql_name='metadata')
|
|
3948
|
-
proration_behavior = sgqlc.types.Field(
|
|
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')
|
|
3949
4399
|
tax_percentage = sgqlc.types.Field(Float, graphql_name='taxPercentage')
|
|
3950
4400
|
tax_rate_ids = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='taxRateIds')
|
|
3951
4401
|
|
|
@@ -3971,7 +4421,8 @@ class SubscriptionCancelReasonFilterComparison(sgqlc.types.Input):
|
|
|
3971
4421
|
|
|
3972
4422
|
class SubscriptionCancellationInput(sgqlc.types.Input):
|
|
3973
4423
|
__schema__ = schema
|
|
3974
|
-
__field_names__ = ('end_date', 'environment_id', 'prorate', 'subscription_cancellation_action', 'subscription_cancellation_time', 'subscription_ref_id')
|
|
4424
|
+
__field_names__ = ('await_subscription_cancellation', 'end_date', 'environment_id', 'prorate', 'subscription_cancellation_action', 'subscription_cancellation_time', 'subscription_ref_id')
|
|
4425
|
+
await_subscription_cancellation = sgqlc.types.Field(Boolean, graphql_name='awaitSubscriptionCancellation')
|
|
3975
4426
|
end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
|
|
3976
4427
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
3977
4428
|
prorate = sgqlc.types.Field(Boolean, graphql_name='prorate')
|
|
@@ -4093,7 +4544,7 @@ class SubscriptionEntitlementSort(sgqlc.types.Input):
|
|
|
4093
4544
|
|
|
4094
4545
|
class SubscriptionInput(sgqlc.types.Input):
|
|
4095
4546
|
__schema__ = schema
|
|
4096
|
-
__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')
|
|
4097
4548
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
4098
4549
|
addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(SubscriptionAddonInput)), graphql_name='addons')
|
|
4099
4550
|
applied_coupon = sgqlc.types.Field(SubscriptionCouponInput, graphql_name='appliedCoupon')
|
|
@@ -4104,6 +4555,7 @@ class SubscriptionInput(sgqlc.types.Input):
|
|
|
4104
4555
|
billing_information = sgqlc.types.Field(SubscriptionBillingInfo, graphql_name='billingInformation')
|
|
4105
4556
|
billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
|
|
4106
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')
|
|
4107
4559
|
crm_id = sgqlc.types.Field(String, graphql_name='crmId')
|
|
4108
4560
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
4109
4561
|
end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
|
|
@@ -4235,15 +4687,79 @@ class SubscriptionPriceSort(sgqlc.types.Input):
|
|
|
4235
4687
|
|
|
4236
4688
|
class SubscriptionQueryFilter(sgqlc.types.Input):
|
|
4237
4689
|
__schema__ = schema
|
|
4238
|
-
__field_names__ = ('and_', 'created_at', 'customer_id', 'environment_id', 'or_', 'product_id', 'resource_id', 'status')
|
|
4690
|
+
__field_names__ = ('and_', 'billing_id', 'cancellation_date', 'created_at', 'customer', 'customer_id', 'end_date', 'environment_id', 'or_', 'payment_collection', 'plan', 'pricing_type', 'product_id', 'resource', 'resource_id', 'salesforce_id', 'start_date', 'status', 'subscription_id')
|
|
4239
4691
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionQueryFilter')), graphql_name='and')
|
|
4692
|
+
billing_id = sgqlc.types.Field(StringFieldComparison, graphql_name='billingId')
|
|
4693
|
+
cancellation_date = sgqlc.types.Field(DateFieldComparison, graphql_name='cancellationDate')
|
|
4240
4694
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
4695
|
+
customer = sgqlc.types.Field('SubscriptionQueryFilterCustomerFilter', graphql_name='customer')
|
|
4241
4696
|
customer_id = sgqlc.types.Field(StringFieldComparison, graphql_name='customerId')
|
|
4697
|
+
end_date = sgqlc.types.Field(DateFieldComparison, graphql_name='endDate')
|
|
4242
4698
|
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
4243
4699
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionQueryFilter')), graphql_name='or')
|
|
4700
|
+
payment_collection = sgqlc.types.Field(PaymentCollectionFilterComparison, graphql_name='paymentCollection')
|
|
4701
|
+
plan = sgqlc.types.Field('SubscriptionQueryFilterPlanFilter', graphql_name='plan')
|
|
4702
|
+
pricing_type = sgqlc.types.Field(PricingTypeFilterComparison, graphql_name='pricingType')
|
|
4244
4703
|
product_id = sgqlc.types.Field(StringFieldComparison, graphql_name='productId')
|
|
4704
|
+
resource = sgqlc.types.Field('SubscriptionQueryFilterCustomerResourceFilter', graphql_name='resource')
|
|
4245
4705
|
resource_id = sgqlc.types.Field(StringFieldComparison, graphql_name='resourceId')
|
|
4706
|
+
salesforce_id = sgqlc.types.Field(StringFieldComparison, graphql_name='salesforceId')
|
|
4707
|
+
start_date = sgqlc.types.Field(DateFieldComparison, graphql_name='startDate')
|
|
4246
4708
|
status = sgqlc.types.Field('SubscriptionStatusFilterComparison', graphql_name='status')
|
|
4709
|
+
subscription_id = sgqlc.types.Field(StringFieldComparison, graphql_name='subscriptionId')
|
|
4710
|
+
|
|
4711
|
+
|
|
4712
|
+
class SubscriptionQueryFilterCustomerFilter(sgqlc.types.Input):
|
|
4713
|
+
__schema__ = schema
|
|
4714
|
+
__field_names__ = ('and_', 'aws_marketplace_customer_id', 'billing_id', 'created_at', 'crm_hubspot_company_id', 'crm_hubspot_company_url', 'crm_id', 'customer_id', 'deleted_at', 'email', 'environment_id', 'id', 'name', 'or_', 'ref_id', 'salesforce_id', 'search_query', 'updated_at')
|
|
4715
|
+
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionQueryFilterCustomerFilter')), graphql_name='and')
|
|
4716
|
+
aws_marketplace_customer_id = sgqlc.types.Field(StringFieldComparison, graphql_name='awsMarketplaceCustomerId')
|
|
4717
|
+
billing_id = sgqlc.types.Field(StringFieldComparison, graphql_name='billingId')
|
|
4718
|
+
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
4719
|
+
crm_hubspot_company_id = sgqlc.types.Field(StringFieldComparison, graphql_name='crmHubspotCompanyId')
|
|
4720
|
+
crm_hubspot_company_url = sgqlc.types.Field(StringFieldComparison, graphql_name='crmHubspotCompanyUrl')
|
|
4721
|
+
crm_id = sgqlc.types.Field(StringFieldComparison, graphql_name='crmId')
|
|
4722
|
+
customer_id = sgqlc.types.Field(StringFieldComparison, graphql_name='customerId')
|
|
4723
|
+
deleted_at = sgqlc.types.Field(DateFieldComparison, graphql_name='deletedAt')
|
|
4724
|
+
email = sgqlc.types.Field(StringFieldComparison, graphql_name='email')
|
|
4725
|
+
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
4726
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
4727
|
+
name = sgqlc.types.Field(StringFieldComparison, graphql_name='name')
|
|
4728
|
+
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionQueryFilterCustomerFilter')), graphql_name='or')
|
|
4729
|
+
ref_id = sgqlc.types.Field(StringFieldComparison, graphql_name='refId')
|
|
4730
|
+
salesforce_id = sgqlc.types.Field(StringFieldComparison, graphql_name='salesforceId')
|
|
4731
|
+
search_query = sgqlc.types.Field(CustomerSearchQueryFilterComparison, graphql_name='searchQuery')
|
|
4732
|
+
updated_at = sgqlc.types.Field(DateFieldComparison, graphql_name='updatedAt')
|
|
4733
|
+
|
|
4734
|
+
|
|
4735
|
+
class SubscriptionQueryFilterCustomerResourceFilter(sgqlc.types.Input):
|
|
4736
|
+
__schema__ = schema
|
|
4737
|
+
__field_names__ = ('and_', 'created_at', 'environment_id', 'or_', 'resource_id')
|
|
4738
|
+
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionQueryFilterCustomerResourceFilter')), graphql_name='and')
|
|
4739
|
+
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
4740
|
+
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
4741
|
+
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionQueryFilterCustomerResourceFilter')), graphql_name='or')
|
|
4742
|
+
resource_id = sgqlc.types.Field(StringFieldComparison, graphql_name='resourceId')
|
|
4743
|
+
|
|
4744
|
+
|
|
4745
|
+
class SubscriptionQueryFilterPlanFilter(sgqlc.types.Input):
|
|
4746
|
+
__schema__ = schema
|
|
4747
|
+
__field_names__ = ('and_', 'billing_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'is_latest', 'or_', 'pricing_type', 'product_id', 'ref_id', 'status', 'updated_at', 'version_number')
|
|
4748
|
+
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionQueryFilterPlanFilter')), graphql_name='and')
|
|
4749
|
+
billing_id = sgqlc.types.Field(StringFieldComparison, graphql_name='billingId')
|
|
4750
|
+
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
4751
|
+
description = sgqlc.types.Field(StringFieldComparison, graphql_name='description')
|
|
4752
|
+
display_name = sgqlc.types.Field(StringFieldComparison, graphql_name='displayName')
|
|
4753
|
+
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
4754
|
+
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
4755
|
+
is_latest = sgqlc.types.Field(BooleanFieldComparison, graphql_name='isLatest')
|
|
4756
|
+
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionQueryFilterPlanFilter')), graphql_name='or')
|
|
4757
|
+
pricing_type = sgqlc.types.Field(PricingTypeFilterComparison, graphql_name='pricingType')
|
|
4758
|
+
product_id = sgqlc.types.Field(StringFieldComparison, graphql_name='productId')
|
|
4759
|
+
ref_id = sgqlc.types.Field(StringFieldComparison, graphql_name='refId')
|
|
4760
|
+
status = sgqlc.types.Field(PackageStatusFilterComparison, graphql_name='status')
|
|
4761
|
+
updated_at = sgqlc.types.Field(DateFieldComparison, graphql_name='updatedAt')
|
|
4762
|
+
version_number = sgqlc.types.Field(IntFieldComparison, graphql_name='versionNumber')
|
|
4247
4763
|
|
|
4248
4764
|
|
|
4249
4765
|
class SubscriptionQuerySort(sgqlc.types.Input):
|
|
@@ -4477,6 +4993,13 @@ class UnArchivePlanInput(sgqlc.types.Input):
|
|
|
4477
4993
|
id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id')
|
|
4478
4994
|
|
|
4479
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
|
+
|
|
4480
5003
|
class UnarchiveCustomerInput(sgqlc.types.Input):
|
|
4481
5004
|
__schema__ = schema
|
|
4482
5005
|
__field_names__ = ('customer_id', 'environment_id')
|
|
@@ -4500,6 +5023,13 @@ class UnitTransformationInput(sgqlc.types.Input):
|
|
|
4500
5023
|
round = sgqlc.types.Field(UnitTransformationRound, graphql_name='round')
|
|
4501
5024
|
|
|
4502
5025
|
|
|
5026
|
+
class UnitsInput(sgqlc.types.Input):
|
|
5027
|
+
__schema__ = schema
|
|
5028
|
+
__field_names__ = ('plural', 'singular')
|
|
5029
|
+
plural = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='plural')
|
|
5030
|
+
singular = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='singular')
|
|
5031
|
+
|
|
5032
|
+
|
|
4503
5033
|
class UnlinkFeatureGroupFromPackageInput(sgqlc.types.Input):
|
|
4504
5034
|
__schema__ = schema
|
|
4505
5035
|
__field_names__ = ('environment_id', 'feature_group_id', 'package_id')
|
|
@@ -4508,13 +5038,22 @@ class UnlinkFeatureGroupFromPackageInput(sgqlc.types.Input):
|
|
|
4508
5038
|
package_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='packageId')
|
|
4509
5039
|
|
|
4510
5040
|
|
|
5041
|
+
class UnlinkPromotionalEntitlementsGroupInput(sgqlc.types.Input):
|
|
5042
|
+
__schema__ = schema
|
|
5043
|
+
__field_names__ = ('customer_id', 'environment_id', 'feature_group_id')
|
|
5044
|
+
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
5045
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
5046
|
+
feature_group_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='featureGroupId')
|
|
5047
|
+
|
|
5048
|
+
|
|
4511
5049
|
class UpdateAccountInput(sgqlc.types.Input):
|
|
4512
5050
|
__schema__ = schema
|
|
4513
|
-
__field_names__ = ('access_method', 'account_email_domain', 'default_ssoroles', 'display_name', 'subscription_billing_anchor', 'subscription_proration_behavior', 'timezone')
|
|
5051
|
+
__field_names__ = ('access_method', 'account_email_domain', 'default_ssoroles', 'display_name', 'email_domains', 'subscription_billing_anchor', 'subscription_proration_behavior', 'timezone')
|
|
4514
5052
|
access_method = sgqlc.types.Field(AccountAccessMethod, graphql_name='accessMethod')
|
|
4515
5053
|
account_email_domain = sgqlc.types.Field(String, graphql_name='accountEmailDomain')
|
|
4516
5054
|
default_ssoroles = sgqlc.types.Field(DefaultSSORolesInput, graphql_name='defaultSSORoles')
|
|
4517
5055
|
display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='displayName')
|
|
5056
|
+
email_domains = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='emailDomains')
|
|
4518
5057
|
subscription_billing_anchor = sgqlc.types.Field(BillingAnchor, graphql_name='subscriptionBillingAnchor')
|
|
4519
5058
|
subscription_proration_behavior = sgqlc.types.Field(ProrationBehavior, graphql_name='subscriptionProrationBehavior')
|
|
4520
5059
|
timezone = sgqlc.types.Field(String, graphql_name='timezone')
|
|
@@ -4545,12 +5084,14 @@ class UpdateCreditGrantInput(sgqlc.types.Input):
|
|
|
4545
5084
|
|
|
4546
5085
|
class UpdateCustomCurrencyInput(sgqlc.types.Input):
|
|
4547
5086
|
__schema__ = schema
|
|
4548
|
-
__field_names__ = ('additional_meta_data', 'currency_id', 'display_name', 'environment_id', 'symbol')
|
|
5087
|
+
__field_names__ = ('additional_meta_data', 'currency_id', 'description', 'display_name', 'environment_id', 'symbol', 'units')
|
|
4549
5088
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
4550
5089
|
currency_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='currencyId')
|
|
5090
|
+
description = sgqlc.types.Field(String, graphql_name='description')
|
|
4551
5091
|
display_name = sgqlc.types.Field(String, graphql_name='displayName')
|
|
4552
5092
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
4553
5093
|
symbol = sgqlc.types.Field(String, graphql_name='symbol')
|
|
5094
|
+
units = sgqlc.types.Field(UnitsInput, graphql_name='units')
|
|
4554
5095
|
|
|
4555
5096
|
|
|
4556
5097
|
class UpdateCustomerInput(sgqlc.types.Input):
|
|
@@ -4616,17 +5157,28 @@ class UpdateHook(sgqlc.types.Input):
|
|
|
4616
5157
|
|
|
4617
5158
|
class UpdateIntegrationInput(sgqlc.types.Input):
|
|
4618
5159
|
__schema__ = schema
|
|
4619
|
-
__field_names__ = ('auth0_credentials', 'integration_id', 'is_default', 'open_fgacredentials', 'salesforce_credentials', 'stripe_credentials', 'vendor_identifier', 'zuora_credentials')
|
|
5160
|
+
__field_names__ = ('auth0_credentials', 'integration_id', 'is_default', 'open_fgacredentials', 'salesforce_credentials', 'snowflake_credentials', 'stripe_credentials', 'vendor_identifier', 'zuora_credentials')
|
|
4620
5161
|
auth0_credentials = sgqlc.types.Field(Auth0CredentialsInput, graphql_name='auth0Credentials')
|
|
4621
5162
|
integration_id = sgqlc.types.Field(String, graphql_name='integrationId')
|
|
4622
5163
|
is_default = sgqlc.types.Field(Boolean, graphql_name='isDefault')
|
|
4623
5164
|
open_fgacredentials = sgqlc.types.Field(OpenFGACredentialsInput, graphql_name='openFGACredentials')
|
|
4624
5165
|
salesforce_credentials = sgqlc.types.Field(SalesforceCredentialsInput, graphql_name='salesforceCredentials')
|
|
5166
|
+
snowflake_credentials = sgqlc.types.Field(SnowflakeCredentialsInput, graphql_name='snowflakeCredentials')
|
|
4625
5167
|
stripe_credentials = sgqlc.types.Field('UpdateStripeCredentialsInput', graphql_name='stripeCredentials')
|
|
4626
5168
|
vendor_identifier = sgqlc.types.Field(sgqlc.types.non_null(VendorIdentifier), graphql_name='vendorIdentifier')
|
|
4627
5169
|
zuora_credentials = sgqlc.types.Field('ZuoraCredentialsInput', graphql_name='zuoraCredentials')
|
|
4628
5170
|
|
|
4629
5171
|
|
|
5172
|
+
class UpdateOfferInput(sgqlc.types.Input):
|
|
5173
|
+
__schema__ = schema
|
|
5174
|
+
__field_names__ = ('additional_meta_data', 'description', 'environment_id', 'name', 'offer_id')
|
|
5175
|
+
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
5176
|
+
description = sgqlc.types.Field(String, graphql_name='description')
|
|
5177
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
5178
|
+
name = sgqlc.types.Field(String, graphql_name='name')
|
|
5179
|
+
offer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='offerId')
|
|
5180
|
+
|
|
5181
|
+
|
|
4630
5182
|
class UpdateOneEnvironmentInput(sgqlc.types.Input):
|
|
4631
5183
|
__schema__ = schema
|
|
4632
5184
|
__field_names__ = ('id', 'update')
|
|
@@ -4706,7 +5258,7 @@ class UpdateSubscriptionEntitlementInput(sgqlc.types.Input):
|
|
|
4706
5258
|
|
|
4707
5259
|
class UpdateSubscriptionInput(sgqlc.types.Input):
|
|
4708
5260
|
__schema__ = schema
|
|
4709
|
-
__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')
|
|
4710
5262
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
4711
5263
|
addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(SubscriptionAddonInput)), graphql_name='addons')
|
|
4712
5264
|
applied_coupon = sgqlc.types.Field(SubscriptionCouponInput, graphql_name='appliedCoupon')
|
|
@@ -4715,6 +5267,7 @@ class UpdateSubscriptionInput(sgqlc.types.Input):
|
|
|
4715
5267
|
billing_information = sgqlc.types.Field(SubscriptionBillingInfo, graphql_name='billingInformation')
|
|
4716
5268
|
billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
|
|
4717
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')
|
|
4718
5271
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
4719
5272
|
minimum_spend = sgqlc.types.Field(SubscriptionMinimumSpendValueInput, graphql_name='minimumSpend')
|
|
4720
5273
|
price_overrides = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(PriceOverrideInput)), graphql_name='priceOverrides')
|
|
@@ -4815,8 +5368,9 @@ class UsageMeasurementFilter(sgqlc.types.Input):
|
|
|
4815
5368
|
|
|
4816
5369
|
class UsageMeasurementFilterCustomerFilter(sgqlc.types.Input):
|
|
4817
5370
|
__schema__ = schema
|
|
4818
|
-
__field_names__ = ('and_', 'billing_id', 'created_at', 'crm_hubspot_company_id', 'crm_hubspot_company_url', 'crm_id', 'customer_id', 'deleted_at', 'email', 'environment_id', 'id', 'name', 'or_', 'ref_id', 'salesforce_id', 'search_query', 'updated_at')
|
|
5371
|
+
__field_names__ = ('and_', 'aws_marketplace_customer_id', 'billing_id', 'created_at', 'crm_hubspot_company_id', 'crm_hubspot_company_url', 'crm_id', 'customer_id', 'deleted_at', 'email', 'environment_id', 'id', 'name', 'or_', 'ref_id', 'salesforce_id', 'search_query', 'updated_at')
|
|
4819
5372
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('UsageMeasurementFilterCustomerFilter')), graphql_name='and')
|
|
5373
|
+
aws_marketplace_customer_id = sgqlc.types.Field(StringFieldComparison, graphql_name='awsMarketplaceCustomerId')
|
|
4820
5374
|
billing_id = sgqlc.types.Field(StringFieldComparison, graphql_name='billingId')
|
|
4821
5375
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
4822
5376
|
crm_hubspot_company_id = sgqlc.types.Field(StringFieldComparison, graphql_name='crmHubspotCompanyId')
|
|
@@ -4887,6 +5441,13 @@ class VendorIdentifierFilterComparison(sgqlc.types.Input):
|
|
|
4887
5441
|
not_like = sgqlc.types.Field(VendorIdentifier, graphql_name='notLike')
|
|
4888
5442
|
|
|
4889
5443
|
|
|
5444
|
+
class VoidCreditGrantInput(sgqlc.types.Input):
|
|
5445
|
+
__schema__ = schema
|
|
5446
|
+
__field_names__ = ('environment_id', 'id')
|
|
5447
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
5448
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id')
|
|
5449
|
+
|
|
5450
|
+
|
|
4890
5451
|
class WeeklyResetPeriodConfigInput(sgqlc.types.Input):
|
|
4891
5452
|
__schema__ = schema
|
|
4892
5453
|
__field_names__ = ('according_to',)
|
|
@@ -4916,12 +5477,16 @@ class YearlyResetPeriodConfigInput(sgqlc.types.Input):
|
|
|
4916
5477
|
|
|
4917
5478
|
class ZuoraCredentialsInput(sgqlc.types.Input):
|
|
4918
5479
|
__schema__ = schema
|
|
4919
|
-
__field_names__ = ('base_url', 'client_id', 'client_secret', 'payment_gateway_id', 'payment_page_id', 'stripe_publishable_key', 'stripe_secret_key')
|
|
5480
|
+
__field_names__ = ('base_url', 'client_id', 'client_secret', 'deferred_revenue_account', 'invoice_settlement_enabled', 'payment_gateway_id', 'payment_page_id', 'publishable_key', 'recognized_revenue_account', 'stripe_publishable_key', 'stripe_secret_key')
|
|
4920
5481
|
base_url = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='baseUrl')
|
|
4921
5482
|
client_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientId')
|
|
4922
5483
|
client_secret = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientSecret')
|
|
5484
|
+
deferred_revenue_account = sgqlc.types.Field(String, graphql_name='deferredRevenueAccount')
|
|
5485
|
+
invoice_settlement_enabled = sgqlc.types.Field(Boolean, graphql_name='invoiceSettlementEnabled')
|
|
4923
5486
|
payment_gateway_id = sgqlc.types.Field(String, graphql_name='paymentGatewayId')
|
|
4924
5487
|
payment_page_id = sgqlc.types.Field(String, graphql_name='paymentPageId')
|
|
5488
|
+
publishable_key = sgqlc.types.Field(String, graphql_name='publishableKey')
|
|
5489
|
+
recognized_revenue_account = sgqlc.types.Field(String, graphql_name='recognizedRevenueAccount')
|
|
4925
5490
|
stripe_publishable_key = sgqlc.types.Field(String, graphql_name='stripePublishableKey')
|
|
4926
5491
|
stripe_secret_key = sgqlc.types.Field(String, graphql_name='stripeSecretKey')
|
|
4927
5492
|
|
|
@@ -4940,12 +5505,13 @@ class AccessRoles(sgqlc.types.Type):
|
|
|
4940
5505
|
|
|
4941
5506
|
class Account(sgqlc.types.Type):
|
|
4942
5507
|
__schema__ = schema
|
|
4943
|
-
__field_names__ = ('access_method', 'account_email_domain', 'account_status', 'default_ssoroles', 'display_name', 'id', 'saml_enabled', 'subscription_billing_anchor', 'subscription_proration_behavior', 'timezone')
|
|
5508
|
+
__field_names__ = ('access_method', 'account_email_domain', 'account_status', 'default_ssoroles', 'display_name', 'email_domains', 'id', 'saml_enabled', 'subscription_billing_anchor', 'subscription_proration_behavior', 'timezone')
|
|
4944
5509
|
access_method = sgqlc.types.Field(sgqlc.types.non_null(AccountAccessMethod), graphql_name='accessMethod')
|
|
4945
5510
|
account_email_domain = sgqlc.types.Field(String, graphql_name='accountEmailDomain')
|
|
4946
5511
|
account_status = sgqlc.types.Field(AccountStatus, graphql_name='accountStatus')
|
|
4947
5512
|
default_ssoroles = sgqlc.types.Field(AccessRoles, graphql_name='defaultSSORoles')
|
|
4948
5513
|
display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='displayName')
|
|
5514
|
+
email_domains = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('AccountEmailDomain')), graphql_name='emailDomains')
|
|
4949
5515
|
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
4950
5516
|
saml_enabled = sgqlc.types.Field(Boolean, graphql_name='samlEnabled')
|
|
4951
5517
|
subscription_billing_anchor = sgqlc.types.Field(BillingAnchor, graphql_name='subscriptionBillingAnchor')
|
|
@@ -4953,6 +5519,14 @@ class Account(sgqlc.types.Type):
|
|
|
4953
5519
|
timezone = sgqlc.types.Field(String, graphql_name='timezone')
|
|
4954
5520
|
|
|
4955
5521
|
|
|
5522
|
+
class AccountEmailDomain(sgqlc.types.Type):
|
|
5523
|
+
__schema__ = schema
|
|
5524
|
+
__field_names__ = ('account_id', 'domain', 'id')
|
|
5525
|
+
account_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='accountId')
|
|
5526
|
+
domain = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='domain')
|
|
5527
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
5528
|
+
|
|
5529
|
+
|
|
4956
5530
|
class AccountNotFoundError(sgqlc.types.Type):
|
|
4957
5531
|
__schema__ = schema
|
|
4958
5532
|
__field_names__ = ('code', 'is_validation_error')
|
|
@@ -4970,7 +5544,7 @@ class AdditionalMetaDataChange(sgqlc.types.Type):
|
|
|
4970
5544
|
|
|
4971
5545
|
class Addon(sgqlc.types.Type):
|
|
4972
5546
|
__schema__ = schema
|
|
4973
|
-
__field_names__ = ('additional_meta_data', 'billing_id', 'billing_link_url', 'created_at', 'dependencies', 'description', 'display_name', 'draft_details', 'draft_summary', 'entitlements', 'environment', 'environment_id', 'has_subscriptions', 'hidden_from_widgets', 'id', 'is_latest', 'max_quantity', 'overage_billing_period', 'overage_prices', 'prices', 'pricing_type', 'product', 'product_id', 'ref_id', 'status', 'sync_states', 'type', 'updated_at', 'version_number')
|
|
5547
|
+
__field_names__ = ('additional_meta_data', 'billing_id', 'billing_link_url', 'created_at', 'dependencies', 'description', 'display_name', 'draft_details', 'draft_summary', 'entitlements', 'environment', 'environment_id', 'has_subscriptions', 'hidden_from_widgets', 'id', 'is_latest', 'max_quantity', 'offer', 'overage_billing_period', 'overage_prices', 'prices', 'pricing_type', 'product', 'product_id', 'ref_id', 'status', 'sync_states', 'type', 'updated_at', 'version_number')
|
|
4974
5548
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
4975
5549
|
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
4976
5550
|
billing_link_url = sgqlc.types.Field(String, graphql_name='billingLinkUrl')
|
|
@@ -4988,6 +5562,7 @@ class Addon(sgqlc.types.Type):
|
|
|
4988
5562
|
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
4989
5563
|
is_latest = sgqlc.types.Field(Boolean, graphql_name='isLatest')
|
|
4990
5564
|
max_quantity = sgqlc.types.Field(Float, graphql_name='maxQuantity')
|
|
5565
|
+
offer = sgqlc.types.Field('Offer', graphql_name='offer')
|
|
4991
5566
|
overage_billing_period = sgqlc.types.Field(OverageBillingPeriod, graphql_name='overageBillingPeriod')
|
|
4992
5567
|
overage_prices = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('Price')), graphql_name='overagePrices')
|
|
4993
5568
|
prices = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('Price')), graphql_name='prices', args=sgqlc.types.ArgDict((
|
|
@@ -5169,6 +5744,36 @@ class ApiKey(sgqlc.types.Type):
|
|
|
5169
5744
|
token = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='token')
|
|
5170
5745
|
|
|
5171
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
|
+
|
|
5756
|
+
class AppStoreCredentials(sgqlc.types.Type):
|
|
5757
|
+
__schema__ = schema
|
|
5758
|
+
__field_names__ = ('app_apple_id', 'bundle_id', 'issuer_id', 'key_id', 'private_key', 'sandbox_environment')
|
|
5759
|
+
app_apple_id = sgqlc.types.Field(String, graphql_name='appAppleId')
|
|
5760
|
+
bundle_id = sgqlc.types.Field(String, graphql_name='bundleId')
|
|
5761
|
+
issuer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='issuerId')
|
|
5762
|
+
key_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='keyId')
|
|
5763
|
+
private_key = sgqlc.types.Field(String, graphql_name='privateKey')
|
|
5764
|
+
sandbox_environment = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='sandboxEnvironment')
|
|
5765
|
+
|
|
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
|
+
|
|
5172
5777
|
class ApplySubscription(sgqlc.types.Type):
|
|
5173
5778
|
__schema__ = schema
|
|
5174
5779
|
__field_names__ = ('entitlements', 'subscription')
|
|
@@ -5212,6 +5817,81 @@ class AutoCancellationRule(sgqlc.types.Type):
|
|
|
5212
5817
|
target_plan = sgqlc.types.Field(sgqlc.types.non_null('Plan'), graphql_name='targetPlan')
|
|
5213
5818
|
|
|
5214
5819
|
|
|
5820
|
+
class AutoRechargeSettingsDTO(sgqlc.types.Type):
|
|
5821
|
+
__schema__ = schema
|
|
5822
|
+
__field_names__ = ('created_at', 'currency_id', 'current_monthly_spend', 'custom_currency', 'customer', 'customer_id', 'environment_id', 'grant_expiration_period', 'id', 'is_enabled', 'max_spend_limit', 'target_balance', 'threshold_type', 'threshold_value', 'updated_at', 'validation_config')
|
|
5823
|
+
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
5824
|
+
currency_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='currencyId')
|
|
5825
|
+
current_monthly_spend = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='currentMonthlySpend')
|
|
5826
|
+
custom_currency = sgqlc.types.Field(sgqlc.types.non_null('CustomCurrency'), graphql_name='customCurrency')
|
|
5827
|
+
customer = sgqlc.types.Field(sgqlc.types.non_null('Customer'), graphql_name='customer')
|
|
5828
|
+
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
5829
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
5830
|
+
grant_expiration_period = sgqlc.types.Field(sgqlc.types.non_null(GrantExpirationPeriod), graphql_name='grantExpirationPeriod')
|
|
5831
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
5832
|
+
is_enabled = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='isEnabled')
|
|
5833
|
+
max_spend_limit = sgqlc.types.Field(Float, graphql_name='maxSpendLimit')
|
|
5834
|
+
target_balance = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='targetBalance')
|
|
5835
|
+
threshold_type = sgqlc.types.Field(sgqlc.types.non_null(ThresholdType), graphql_name='thresholdType')
|
|
5836
|
+
threshold_value = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='thresholdValue')
|
|
5837
|
+
updated_at = sgqlc.types.Field(DateTime, graphql_name='updatedAt')
|
|
5838
|
+
validation_config = sgqlc.types.Field(sgqlc.types.non_null('AutoRechargeValidationConfigDTO'), graphql_name='validationConfig')
|
|
5839
|
+
|
|
5840
|
+
|
|
5841
|
+
class AutoRechargeSettingsDTOAggregateGroupBy(sgqlc.types.Type):
|
|
5842
|
+
__schema__ = schema
|
|
5843
|
+
__field_names__ = ('currency_id', 'customer_id', 'environment_id', 'id')
|
|
5844
|
+
currency_id = sgqlc.types.Field(String, graphql_name='currencyId')
|
|
5845
|
+
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
5846
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
5847
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
5848
|
+
|
|
5849
|
+
|
|
5850
|
+
class AutoRechargeSettingsDTOCountAggregate(sgqlc.types.Type):
|
|
5851
|
+
__schema__ = schema
|
|
5852
|
+
__field_names__ = ('currency_id', 'customer_id', 'environment_id', 'id')
|
|
5853
|
+
currency_id = sgqlc.types.Field(Int, graphql_name='currencyId')
|
|
5854
|
+
customer_id = sgqlc.types.Field(Int, graphql_name='customerId')
|
|
5855
|
+
environment_id = sgqlc.types.Field(Int, graphql_name='environmentId')
|
|
5856
|
+
id = sgqlc.types.Field(Int, graphql_name='id')
|
|
5857
|
+
|
|
5858
|
+
|
|
5859
|
+
class AutoRechargeSettingsDTOEdge(sgqlc.types.Type):
|
|
5860
|
+
__schema__ = schema
|
|
5861
|
+
__field_names__ = ('cursor', 'node')
|
|
5862
|
+
cursor = sgqlc.types.Field(sgqlc.types.non_null(ConnectionCursor), graphql_name='cursor')
|
|
5863
|
+
node = sgqlc.types.Field(sgqlc.types.non_null(AutoRechargeSettingsDTO), graphql_name='node')
|
|
5864
|
+
|
|
5865
|
+
|
|
5866
|
+
class AutoRechargeSettingsDTOMaxAggregate(sgqlc.types.Type):
|
|
5867
|
+
__schema__ = schema
|
|
5868
|
+
__field_names__ = ('currency_id', 'customer_id', 'environment_id', 'id')
|
|
5869
|
+
currency_id = sgqlc.types.Field(String, graphql_name='currencyId')
|
|
5870
|
+
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
5871
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
5872
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
5873
|
+
|
|
5874
|
+
|
|
5875
|
+
class AutoRechargeSettingsDTOMinAggregate(sgqlc.types.Type):
|
|
5876
|
+
__schema__ = schema
|
|
5877
|
+
__field_names__ = ('currency_id', 'customer_id', 'environment_id', 'id')
|
|
5878
|
+
currency_id = sgqlc.types.Field(String, graphql_name='currencyId')
|
|
5879
|
+
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
5880
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
5881
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
5882
|
+
|
|
5883
|
+
|
|
5884
|
+
class AutoRechargeValidationConfigDTO(sgqlc.types.Type):
|
|
5885
|
+
__schema__ = schema
|
|
5886
|
+
__field_names__ = ('allow_unlimited_spend_limit', 'max_credit_pool_size', 'max_target_balance', 'max_threshold_amount', 'min_grant_amount', 'min_target_balance')
|
|
5887
|
+
allow_unlimited_spend_limit = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='allowUnlimitedSpendLimit')
|
|
5888
|
+
max_credit_pool_size = sgqlc.types.Field(Float, graphql_name='maxCreditPoolSize')
|
|
5889
|
+
max_target_balance = sgqlc.types.Field(Float, graphql_name='maxTargetBalance')
|
|
5890
|
+
max_threshold_amount = sgqlc.types.Field(Float, graphql_name='maxThresholdAmount')
|
|
5891
|
+
min_grant_amount = sgqlc.types.Field(Float, graphql_name='minGrantAmount')
|
|
5892
|
+
min_target_balance = sgqlc.types.Field(Float, graphql_name='minTargetBalance')
|
|
5893
|
+
|
|
5894
|
+
|
|
5215
5895
|
class AwsDimension(sgqlc.types.Type):
|
|
5216
5896
|
__schema__ = schema
|
|
5217
5897
|
__field_names__ = ('description', 'key', 'name', 'stigg_plan_id', 'stigg_plan_name', 'type', 'unit')
|
|
@@ -5285,6 +5965,45 @@ class BillingPeriodChangeVariables(sgqlc.types.Type):
|
|
|
5285
5965
|
billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
|
|
5286
5966
|
|
|
5287
5967
|
|
|
5968
|
+
class BillingProduct(sgqlc.types.Type):
|
|
5969
|
+
__schema__ = schema
|
|
5970
|
+
__field_names__ = ('description', 'id', 'name', 'plans', 'prices', 'updated_at')
|
|
5971
|
+
description = sgqlc.types.Field(String, graphql_name='description')
|
|
5972
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id')
|
|
5973
|
+
name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name')
|
|
5974
|
+
plans = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('BillingProductPlan')), graphql_name='plans')
|
|
5975
|
+
prices = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('BillingProductPrice')), graphql_name='prices')
|
|
5976
|
+
updated_at = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='updatedAt')
|
|
5977
|
+
|
|
5978
|
+
|
|
5979
|
+
class BillingProductPlan(sgqlc.types.Type):
|
|
5980
|
+
__schema__ = schema
|
|
5981
|
+
__field_names__ = ('active', 'description', 'id', 'name', 'prices')
|
|
5982
|
+
active = sgqlc.types.Field(Boolean, graphql_name='active')
|
|
5983
|
+
description = sgqlc.types.Field(String, graphql_name='description')
|
|
5984
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id')
|
|
5985
|
+
name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name')
|
|
5986
|
+
prices = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('BillingProductPrice'))), graphql_name='prices')
|
|
5987
|
+
|
|
5988
|
+
|
|
5989
|
+
class BillingProductPrice(sgqlc.types.Type):
|
|
5990
|
+
__schema__ = schema
|
|
5991
|
+
__field_names__ = ('amount', 'billing_period', 'charge_model', 'discount_percent', 'id', 'usage')
|
|
5992
|
+
amount = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='amount')
|
|
5993
|
+
billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
|
|
5994
|
+
charge_model = sgqlc.types.Field(String, graphql_name='chargeModel')
|
|
5995
|
+
discount_percent = sgqlc.types.Field(Float, graphql_name='discountPercent')
|
|
5996
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id')
|
|
5997
|
+
usage = sgqlc.types.Field(Boolean, graphql_name='usage')
|
|
5998
|
+
|
|
5999
|
+
|
|
6000
|
+
class BillingProductsResult(sgqlc.types.Type):
|
|
6001
|
+
__schema__ = schema
|
|
6002
|
+
__field_names__ = ('next_page', 'products')
|
|
6003
|
+
next_page = sgqlc.types.Field(String, graphql_name='nextPage')
|
|
6004
|
+
products = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(BillingProduct))), graphql_name='products')
|
|
6005
|
+
|
|
6006
|
+
|
|
5288
6007
|
class BudgetConfiguration(sgqlc.types.Type):
|
|
5289
6008
|
__schema__ = schema
|
|
5290
6009
|
__field_names__ = ('has_soft_limit', 'limit')
|
|
@@ -5329,7 +6048,8 @@ class ChargeSubscriptionUsage(sgqlc.types.Type):
|
|
|
5329
6048
|
|
|
5330
6049
|
class CheckoutBillingIntegration(sgqlc.types.Type):
|
|
5331
6050
|
__schema__ = schema
|
|
5332
|
-
__field_names__ = ('billing_identifier', 'credentials')
|
|
6051
|
+
__field_names__ = ('billing_credentials', 'billing_identifier', 'credentials')
|
|
6052
|
+
billing_credentials = sgqlc.types.Field(sgqlc.types.non_null('BillingCredentials'), graphql_name='billingCredentials')
|
|
5333
6053
|
billing_identifier = sgqlc.types.Field(sgqlc.types.non_null(BillingVendorIdentifier), graphql_name='billingIdentifier')
|
|
5334
6054
|
credentials = sgqlc.types.Field(sgqlc.types.non_null('CheckoutCredentials'), graphql_name='credentials')
|
|
5335
6055
|
|
|
@@ -5362,8 +6082,8 @@ class CheckoutContent(sgqlc.types.Type):
|
|
|
5362
6082
|
class CheckoutCredentials(sgqlc.types.Type):
|
|
5363
6083
|
__schema__ = schema
|
|
5364
6084
|
__field_names__ = ('account_id', 'public_key')
|
|
5365
|
-
account_id = sgqlc.types.Field(
|
|
5366
|
-
public_key = sgqlc.types.Field(
|
|
6085
|
+
account_id = sgqlc.types.Field(String, graphql_name='accountId')
|
|
6086
|
+
public_key = sgqlc.types.Field(String, graphql_name='publicKey')
|
|
5367
6087
|
|
|
5368
6088
|
|
|
5369
6089
|
class CheckoutState(sgqlc.types.Type):
|
|
@@ -5492,53 +6212,206 @@ class CouponMinAggregate(sgqlc.types.Type):
|
|
|
5492
6212
|
updated_at = sgqlc.types.Field(DateTime, graphql_name='updatedAt')
|
|
5493
6213
|
|
|
5494
6214
|
|
|
5495
|
-
class
|
|
6215
|
+
class CreditBalance(sgqlc.types.Type):
|
|
6216
|
+
__schema__ = schema
|
|
6217
|
+
__field_names__ = ('currency', 'currency_id', 'current_balance', 'customer_id', 'resource_id', 'total_consumed', 'total_granted', 'valid_until')
|
|
6218
|
+
currency = sgqlc.types.Field(sgqlc.types.non_null('SlimCustomCurrency'), graphql_name='currency')
|
|
6219
|
+
currency_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='currencyId')
|
|
6220
|
+
current_balance = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='currentBalance')
|
|
6221
|
+
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
6222
|
+
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
6223
|
+
total_consumed = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='totalConsumed')
|
|
6224
|
+
total_granted = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='totalGranted')
|
|
6225
|
+
valid_until = sgqlc.types.Field(Float, graphql_name='validUntil')
|
|
6226
|
+
|
|
6227
|
+
|
|
6228
|
+
class CreditBalanceSummary(sgqlc.types.Type):
|
|
6229
|
+
__schema__ = schema
|
|
6230
|
+
__field_names__ = ('balances', 'customer_id', 'resource_id')
|
|
6231
|
+
balances = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(CreditBalance))), graphql_name='balances')
|
|
6232
|
+
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
6233
|
+
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
6234
|
+
|
|
6235
|
+
|
|
6236
|
+
class CreditBalanceUpdated(sgqlc.types.Type):
|
|
6237
|
+
__schema__ = schema
|
|
6238
|
+
__field_names__ = ('account_id', 'currency', 'currency_id', 'current_balance', 'customer_id', 'environment_id', 'resource_id', 'total_consumed', 'total_granted', 'valid_until')
|
|
6239
|
+
account_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='accountId')
|
|
6240
|
+
currency = sgqlc.types.Field(sgqlc.types.non_null('SlimCustomCurrency'), graphql_name='currency')
|
|
6241
|
+
currency_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='currencyId')
|
|
6242
|
+
current_balance = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='currentBalance')
|
|
6243
|
+
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
6244
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='environmentId')
|
|
6245
|
+
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
6246
|
+
total_consumed = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='totalConsumed')
|
|
6247
|
+
total_granted = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='totalGranted')
|
|
6248
|
+
valid_until = sgqlc.types.Field(Float, graphql_name='validUntil')
|
|
6249
|
+
|
|
6250
|
+
|
|
6251
|
+
class CreditGrant(sgqlc.types.Type):
|
|
6252
|
+
__schema__ = schema
|
|
6253
|
+
__field_names__ = ('additional_meta_data', 'amount', 'automatic_recharge_configuration_id', 'comment', 'consumed_amount', 'cost', 'created_at', 'currency_id', 'customer_id', 'display_name', 'effective_at', 'expire_at', 'grant_id', 'grant_type', 'id', 'invoice_id', 'latest_invoice', 'payment_collection', 'priority', 'resource_id', 'status', 'updated_at', 'voided_at')
|
|
6254
|
+
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
6255
|
+
amount = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='amount')
|
|
6256
|
+
automatic_recharge_configuration_id = sgqlc.types.Field(UUID, graphql_name='automaticRechargeConfigurationId')
|
|
6257
|
+
comment = sgqlc.types.Field(String, graphql_name='comment')
|
|
6258
|
+
consumed_amount = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='consumedAmount')
|
|
6259
|
+
cost = sgqlc.types.Field(sgqlc.types.non_null('Money'), graphql_name='cost')
|
|
6260
|
+
created_at = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='createdAt')
|
|
6261
|
+
currency_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='currencyId')
|
|
6262
|
+
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
6263
|
+
display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='displayName')
|
|
6264
|
+
effective_at = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='effectiveAt')
|
|
6265
|
+
expire_at = sgqlc.types.Field(DateTime, graphql_name='expireAt')
|
|
6266
|
+
grant_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='grantId')
|
|
6267
|
+
grant_type = sgqlc.types.Field(sgqlc.types.non_null(CreditGrantType), graphql_name='grantType')
|
|
6268
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
6269
|
+
invoice_id = sgqlc.types.Field(String, graphql_name='invoiceId')
|
|
6270
|
+
latest_invoice = sgqlc.types.Field('CreditGrantInvoice', graphql_name='latestInvoice')
|
|
6271
|
+
payment_collection = sgqlc.types.Field(sgqlc.types.non_null(PaymentCollection), graphql_name='paymentCollection')
|
|
6272
|
+
priority = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='priority')
|
|
6273
|
+
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
6274
|
+
status = sgqlc.types.Field(sgqlc.types.non_null(CreditGrantStatus), graphql_name='status')
|
|
6275
|
+
updated_at = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='updatedAt')
|
|
6276
|
+
voided_at = sgqlc.types.Field(DateTime, graphql_name='voidedAt')
|
|
6277
|
+
|
|
6278
|
+
|
|
6279
|
+
class CreditGrantAlreadyVoidedError(sgqlc.types.Type):
|
|
6280
|
+
__schema__ = schema
|
|
6281
|
+
__field_names__ = ('code', 'grant_id', 'is_validation_error')
|
|
6282
|
+
code = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='code')
|
|
6283
|
+
grant_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='grantId')
|
|
6284
|
+
is_validation_error = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='isValidationError')
|
|
6285
|
+
|
|
6286
|
+
|
|
6287
|
+
class CreditGrantConnection(sgqlc.types.relay.Connection):
|
|
6288
|
+
__schema__ = schema
|
|
6289
|
+
__field_names__ = ('edges', 'page_info', 'total_count')
|
|
6290
|
+
edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('CreditGrantEdge'))), graphql_name='edges')
|
|
6291
|
+
page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo')
|
|
6292
|
+
total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount')
|
|
6293
|
+
|
|
6294
|
+
|
|
6295
|
+
class CreditGrantEdge(sgqlc.types.Type):
|
|
6296
|
+
__schema__ = schema
|
|
6297
|
+
__field_names__ = ('cursor', 'node')
|
|
6298
|
+
cursor = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='cursor')
|
|
6299
|
+
node = sgqlc.types.Field(sgqlc.types.non_null(CreditGrant), graphql_name='node')
|
|
6300
|
+
|
|
6301
|
+
|
|
6302
|
+
class CreditGrantInvoice(sgqlc.types.Type):
|
|
6303
|
+
__schema__ = schema
|
|
6304
|
+
__field_names__ = ('amount_due', 'applied_balance', 'attempt_count', 'billing_id', 'billing_reason', 'created_at', 'currency', 'due_date', 'ending_balance', 'error_message', 'lines', 'payment_secret', 'payment_url', 'pdf_url', 'requires_action', 'starting_balance', 'status', 'sub_total', 'sub_total_excluding_tax', 'tax', 'total', 'total_excluding_tax', 'updated_at')
|
|
6305
|
+
amount_due = sgqlc.types.Field(Float, graphql_name='amountDue')
|
|
6306
|
+
applied_balance = sgqlc.types.Field(Float, graphql_name='appliedBalance')
|
|
6307
|
+
attempt_count = sgqlc.types.Field(Float, graphql_name='attemptCount')
|
|
6308
|
+
billing_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='billingId')
|
|
6309
|
+
billing_reason = sgqlc.types.Field(CreditGrantInvoiceBillingReason, graphql_name='billingReason')
|
|
6310
|
+
created_at = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='createdAt')
|
|
6311
|
+
currency = sgqlc.types.Field(String, graphql_name='currency')
|
|
6312
|
+
due_date = sgqlc.types.Field(DateTime, graphql_name='dueDate')
|
|
6313
|
+
ending_balance = sgqlc.types.Field(Float, graphql_name='endingBalance')
|
|
6314
|
+
error_message = sgqlc.types.Field(String, graphql_name='errorMessage')
|
|
6315
|
+
lines = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('InvoiceLine')), graphql_name='lines')
|
|
6316
|
+
payment_secret = sgqlc.types.Field(String, graphql_name='paymentSecret')
|
|
6317
|
+
payment_url = sgqlc.types.Field(String, graphql_name='paymentUrl')
|
|
6318
|
+
pdf_url = sgqlc.types.Field(String, graphql_name='pdfUrl')
|
|
6319
|
+
requires_action = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='requiresAction')
|
|
6320
|
+
starting_balance = sgqlc.types.Field(Float, graphql_name='startingBalance')
|
|
6321
|
+
status = sgqlc.types.Field(sgqlc.types.non_null(CreditGrantInvoiceStatus), graphql_name='status')
|
|
6322
|
+
sub_total = sgqlc.types.Field(Float, graphql_name='subTotal')
|
|
6323
|
+
sub_total_excluding_tax = sgqlc.types.Field(Float, graphql_name='subTotalExcludingTax')
|
|
6324
|
+
tax = sgqlc.types.Field(Float, graphql_name='tax')
|
|
6325
|
+
total = sgqlc.types.Field(Float, graphql_name='total')
|
|
6326
|
+
total_excluding_tax = sgqlc.types.Field(Float, graphql_name='totalExcludingTax')
|
|
6327
|
+
updated_at = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='updatedAt')
|
|
6328
|
+
|
|
6329
|
+
|
|
6330
|
+
class CreditGrantPreview(sgqlc.types.Type):
|
|
6331
|
+
__schema__ = schema
|
|
6332
|
+
__field_names__ = ('credits', 'discount', 'discount_details', 'sub_total', 'tax', 'tax_details', 'total', 'total_excluding_tax')
|
|
6333
|
+
credits = sgqlc.types.Field('SubscriptionPreviewCredits', graphql_name='credits')
|
|
6334
|
+
discount = sgqlc.types.Field('Money', graphql_name='discount')
|
|
6335
|
+
discount_details = sgqlc.types.Field('SubscriptionPreviewDiscount', graphql_name='discountDetails')
|
|
6336
|
+
sub_total = sgqlc.types.Field(sgqlc.types.non_null('Money'), graphql_name='subTotal')
|
|
6337
|
+
tax = sgqlc.types.Field('Money', graphql_name='tax')
|
|
6338
|
+
tax_details = sgqlc.types.Field('SubscriptionPreviewTaxDetails', graphql_name='taxDetails')
|
|
6339
|
+
total = sgqlc.types.Field(sgqlc.types.non_null('Money'), graphql_name='total')
|
|
6340
|
+
total_excluding_tax = sgqlc.types.Field(sgqlc.types.non_null('Money'), graphql_name='totalExcludingTax')
|
|
6341
|
+
|
|
6342
|
+
|
|
6343
|
+
class CreditLedgerConnection(sgqlc.types.relay.Connection):
|
|
6344
|
+
__schema__ = schema
|
|
6345
|
+
__field_names__ = ('edges', 'page_info', 'total_count')
|
|
6346
|
+
edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('CreditLedgerEdge'))), graphql_name='edges')
|
|
6347
|
+
page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo')
|
|
6348
|
+
total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount')
|
|
6349
|
+
|
|
6350
|
+
|
|
6351
|
+
class CreditLedgerEdge(sgqlc.types.Type):
|
|
5496
6352
|
__schema__ = schema
|
|
5497
|
-
__field_names__ = ('
|
|
5498
|
-
|
|
5499
|
-
|
|
5500
|
-
total_consumed = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='totalConsumed')
|
|
5501
|
-
total_granted = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='totalGranted')
|
|
6353
|
+
__field_names__ = ('cursor', 'node')
|
|
6354
|
+
cursor = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='cursor')
|
|
6355
|
+
node = sgqlc.types.Field(sgqlc.types.non_null('CreditLedgerEvent'), graphql_name='node')
|
|
5502
6356
|
|
|
5503
6357
|
|
|
5504
|
-
class
|
|
6358
|
+
class CreditLedgerEvent(sgqlc.types.Type):
|
|
5505
6359
|
__schema__ = schema
|
|
5506
|
-
__field_names__ = ('
|
|
5507
|
-
|
|
6360
|
+
__field_names__ = ('amount', 'credit_currency_id', 'credit_grant_id', 'customer_id', 'event_id', 'event_type', 'feature_id', 'resource_id', 'timestamp')
|
|
6361
|
+
amount = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='amount')
|
|
6362
|
+
credit_currency_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='creditCurrencyId')
|
|
6363
|
+
credit_grant_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='creditGrantId')
|
|
5508
6364
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
6365
|
+
event_id = sgqlc.types.Field(String, graphql_name='eventId')
|
|
6366
|
+
event_type = sgqlc.types.Field(sgqlc.types.non_null(CreditLedgerEventType), graphql_name='eventType')
|
|
6367
|
+
feature_id = sgqlc.types.Field(String, graphql_name='featureId')
|
|
5509
6368
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
6369
|
+
timestamp = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='timestamp')
|
|
5510
6370
|
|
|
5511
6371
|
|
|
5512
|
-
class
|
|
6372
|
+
class CreditRate(sgqlc.types.Type):
|
|
5513
6373
|
__schema__ = schema
|
|
5514
|
-
__field_names__ = ('
|
|
5515
|
-
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
6374
|
+
__field_names__ = ('amount', 'cost_formula', 'currency_id', 'custom_currency_id')
|
|
5516
6375
|
amount = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='amount')
|
|
5517
|
-
|
|
5518
|
-
cost = sgqlc.types.Field(sgqlc.types.non_null('Money'), graphql_name='cost')
|
|
5519
|
-
created_at = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='createdAt')
|
|
6376
|
+
cost_formula = sgqlc.types.Field(String, graphql_name='costFormula')
|
|
5520
6377
|
currency_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='currencyId')
|
|
5521
|
-
|
|
5522
|
-
|
|
5523
|
-
|
|
5524
|
-
|
|
5525
|
-
|
|
5526
|
-
|
|
5527
|
-
|
|
5528
|
-
|
|
5529
|
-
|
|
5530
|
-
|
|
6378
|
+
custom_currency_id = sgqlc.types.Field(UUID, graphql_name='customCurrencyId')
|
|
6379
|
+
|
|
6380
|
+
|
|
6381
|
+
class CreditUsage(sgqlc.types.Type):
|
|
6382
|
+
__schema__ = schema
|
|
6383
|
+
__field_names__ = ('currency', 'series')
|
|
6384
|
+
currency = sgqlc.types.Field('SlimCustomCurrency', graphql_name='currency')
|
|
6385
|
+
series = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('CreditUsageSeries'))), graphql_name='series')
|
|
6386
|
+
|
|
6387
|
+
|
|
6388
|
+
class CreditUsagePoint(sgqlc.types.Type):
|
|
6389
|
+
__schema__ = schema
|
|
6390
|
+
__field_names__ = ('timestamp', 'value')
|
|
6391
|
+
timestamp = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='timestamp')
|
|
6392
|
+
value = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='value')
|
|
6393
|
+
|
|
6394
|
+
|
|
6395
|
+
class CreditUsageSeries(sgqlc.types.Type):
|
|
6396
|
+
__schema__ = schema
|
|
6397
|
+
__field_names__ = ('feature_id', 'feature_name', 'points', 'total_credits')
|
|
6398
|
+
feature_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='featureId')
|
|
6399
|
+
feature_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='featureName')
|
|
6400
|
+
points = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(CreditUsagePoint))), graphql_name='points')
|
|
6401
|
+
total_credits = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='totalCredits')
|
|
5531
6402
|
|
|
5532
6403
|
|
|
5533
6404
|
class CustomCurrency(sgqlc.types.Type):
|
|
5534
6405
|
__schema__ = schema
|
|
5535
|
-
__field_names__ = ('additional_meta_data', 'created_at', 'currency_id', 'display_name', 'id', 'symbol', 'updated_at')
|
|
6406
|
+
__field_names__ = ('additional_meta_data', 'created_at', 'currency_id', 'description', 'display_name', 'id', 'symbol', 'units', 'updated_at')
|
|
5536
6407
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
5537
6408
|
created_at = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='createdAt')
|
|
5538
6409
|
currency_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='currencyId')
|
|
6410
|
+
description = sgqlc.types.Field(String, graphql_name='description')
|
|
5539
6411
|
display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='displayName')
|
|
5540
6412
|
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
5541
|
-
symbol = sgqlc.types.Field(
|
|
6413
|
+
symbol = sgqlc.types.Field(String, graphql_name='symbol')
|
|
6414
|
+
units = sgqlc.types.Field('Units', graphql_name='units')
|
|
5542
6415
|
updated_at = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='updatedAt')
|
|
5543
6416
|
|
|
5544
6417
|
|
|
@@ -5596,7 +6469,8 @@ class Customer(sgqlc.types.Type):
|
|
|
5596
6469
|
|
|
5597
6470
|
class CustomerAggregateGroupBy(sgqlc.types.Type):
|
|
5598
6471
|
__schema__ = schema
|
|
5599
|
-
__field_names__ = ('billing_id', 'created_at', 'crm_hubspot_company_id', 'crm_hubspot_company_url', 'crm_id', 'customer_id', 'deleted_at', 'email', 'environment_id', 'id', 'name', 'ref_id', 'salesforce_id', 'search_query', 'updated_at')
|
|
6472
|
+
__field_names__ = ('aws_marketplace_customer_id', 'billing_id', 'created_at', 'crm_hubspot_company_id', 'crm_hubspot_company_url', 'crm_id', 'customer_id', 'deleted_at', 'email', 'environment_id', 'id', 'name', 'ref_id', 'salesforce_id', 'search_query', 'updated_at')
|
|
6473
|
+
aws_marketplace_customer_id = sgqlc.types.Field(String, graphql_name='awsMarketplaceCustomerId')
|
|
5600
6474
|
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
5601
6475
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
5602
6476
|
crm_hubspot_company_id = sgqlc.types.Field(String, graphql_name='crmHubspotCompanyId')
|
|
@@ -5631,7 +6505,8 @@ class CustomerConnection(sgqlc.types.relay.Connection):
|
|
|
5631
6505
|
|
|
5632
6506
|
class CustomerCountAggregate(sgqlc.types.Type):
|
|
5633
6507
|
__schema__ = schema
|
|
5634
|
-
__field_names__ = ('billing_id', 'created_at', 'crm_hubspot_company_id', 'crm_hubspot_company_url', 'crm_id', 'customer_id', 'deleted_at', 'email', 'environment_id', 'id', 'name', 'ref_id', 'salesforce_id', 'search_query', 'updated_at')
|
|
6508
|
+
__field_names__ = ('aws_marketplace_customer_id', 'billing_id', 'created_at', 'crm_hubspot_company_id', 'crm_hubspot_company_url', 'crm_id', 'customer_id', 'deleted_at', 'email', 'environment_id', 'id', 'name', 'ref_id', 'salesforce_id', 'search_query', 'updated_at')
|
|
6509
|
+
aws_marketplace_customer_id = sgqlc.types.Field(Int, graphql_name='awsMarketplaceCustomerId')
|
|
5635
6510
|
billing_id = sgqlc.types.Field(Int, graphql_name='billingId')
|
|
5636
6511
|
created_at = sgqlc.types.Field(Int, graphql_name='createdAt')
|
|
5637
6512
|
crm_hubspot_company_id = sgqlc.types.Field(Int, graphql_name='crmHubspotCompanyId')
|
|
@@ -5658,7 +6533,8 @@ class CustomerEdge(sgqlc.types.Type):
|
|
|
5658
6533
|
|
|
5659
6534
|
class CustomerMaxAggregate(sgqlc.types.Type):
|
|
5660
6535
|
__schema__ = schema
|
|
5661
|
-
__field_names__ = ('billing_id', 'created_at', 'crm_hubspot_company_id', 'crm_hubspot_company_url', 'crm_id', 'customer_id', 'deleted_at', 'email', 'environment_id', 'id', 'name', 'ref_id', 'salesforce_id', 'search_query', 'updated_at')
|
|
6536
|
+
__field_names__ = ('aws_marketplace_customer_id', 'billing_id', 'created_at', 'crm_hubspot_company_id', 'crm_hubspot_company_url', 'crm_id', 'customer_id', 'deleted_at', 'email', 'environment_id', 'id', 'name', 'ref_id', 'salesforce_id', 'search_query', 'updated_at')
|
|
6537
|
+
aws_marketplace_customer_id = sgqlc.types.Field(String, graphql_name='awsMarketplaceCustomerId')
|
|
5662
6538
|
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
5663
6539
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
5664
6540
|
crm_hubspot_company_id = sgqlc.types.Field(String, graphql_name='crmHubspotCompanyId')
|
|
@@ -5678,7 +6554,8 @@ class CustomerMaxAggregate(sgqlc.types.Type):
|
|
|
5678
6554
|
|
|
5679
6555
|
class CustomerMinAggregate(sgqlc.types.Type):
|
|
5680
6556
|
__schema__ = schema
|
|
5681
|
-
__field_names__ = ('billing_id', 'created_at', 'crm_hubspot_company_id', 'crm_hubspot_company_url', 'crm_id', 'customer_id', 'deleted_at', 'email', 'environment_id', 'id', 'name', 'ref_id', 'salesforce_id', 'search_query', 'updated_at')
|
|
6557
|
+
__field_names__ = ('aws_marketplace_customer_id', 'billing_id', 'created_at', 'crm_hubspot_company_id', 'crm_hubspot_company_url', 'crm_id', 'customer_id', 'deleted_at', 'email', 'environment_id', 'id', 'name', 'ref_id', 'salesforce_id', 'search_query', 'updated_at')
|
|
6558
|
+
aws_marketplace_customer_id = sgqlc.types.Field(String, graphql_name='awsMarketplaceCustomerId')
|
|
5682
6559
|
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
5683
6560
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
5684
6561
|
crm_hubspot_company_id = sgqlc.types.Field(String, graphql_name='crmHubspotCompanyId')
|
|
@@ -5812,20 +6689,22 @@ class CustomerPortalSubscription(sgqlc.types.Type):
|
|
|
5812
6689
|
|
|
5813
6690
|
class CustomerPortalSubscriptionPrice(sgqlc.types.Type):
|
|
5814
6691
|
__schema__ = schema
|
|
5815
|
-
__field_names__ = ('billing_model', 'billing_period', 'block_size', 'feature', 'price')
|
|
6692
|
+
__field_names__ = ('billing_model', 'billing_period', 'block_size', 'credit_rate', 'feature', 'price')
|
|
5816
6693
|
billing_model = sgqlc.types.Field(BillingModel, graphql_name='billingModel')
|
|
5817
6694
|
billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
|
|
5818
6695
|
block_size = sgqlc.types.Field(Float, graphql_name='blockSize')
|
|
6696
|
+
credit_rate = sgqlc.types.Field(CreditRate, graphql_name='creditRate')
|
|
5819
6697
|
feature = sgqlc.types.Field(CustomerPortalPricingFeature, graphql_name='feature')
|
|
5820
6698
|
price = sgqlc.types.Field('Money', graphql_name='price')
|
|
5821
6699
|
|
|
5822
6700
|
|
|
5823
6701
|
class CustomerPortalSubscriptionPricing(sgqlc.types.Type):
|
|
5824
6702
|
__schema__ = schema
|
|
5825
|
-
__field_names__ = ('billing_country_code', 'billing_model', 'billing_period', 'feature', 'price', 'pricing_type', 'unit_quantity', 'usage_based_estimated_bill')
|
|
6703
|
+
__field_names__ = ('billing_country_code', 'billing_model', 'billing_period', 'credit_rate', 'feature', 'price', 'pricing_type', 'unit_quantity', 'usage_based_estimated_bill')
|
|
5826
6704
|
billing_country_code = sgqlc.types.Field(String, graphql_name='billingCountryCode')
|
|
5827
6705
|
billing_model = sgqlc.types.Field(BillingModel, graphql_name='billingModel')
|
|
5828
6706
|
billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
|
|
6707
|
+
credit_rate = sgqlc.types.Field(CreditRate, graphql_name='creditRate')
|
|
5829
6708
|
feature = sgqlc.types.Field(CustomerPortalPricingFeature, graphql_name='feature')
|
|
5830
6709
|
price = sgqlc.types.Field('Money', graphql_name='price')
|
|
5831
6710
|
pricing_type = sgqlc.types.Field(sgqlc.types.non_null(PricingType), graphql_name='pricingType')
|
|
@@ -6141,13 +7020,14 @@ class DefaultTrialConfigChange(sgqlc.types.Type):
|
|
|
6141
7020
|
|
|
6142
7021
|
class DowngradeChangeVariables(sgqlc.types.Type):
|
|
6143
7022
|
__schema__ = schema
|
|
6144
|
-
__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')
|
|
6145
7024
|
addon_ref_ids = sgqlc.types.Field(String, graphql_name='addonRefIds')
|
|
6146
7025
|
addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PlanChangeAddon')), graphql_name='addons')
|
|
6147
7026
|
billable_features = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(BillableFeature)), graphql_name='billableFeatures')
|
|
6148
7027
|
billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
|
|
6149
7028
|
downgrade_plan_ref_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='downgradePlanRefId')
|
|
6150
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')
|
|
6151
7031
|
|
|
6152
7032
|
|
|
6153
7033
|
class DumpEnvironmentForMergeComparison(sgqlc.types.Type):
|
|
@@ -6183,8 +7063,9 @@ class EligibleForTrial(sgqlc.types.Type):
|
|
|
6183
7063
|
|
|
6184
7064
|
class Entitlement(sgqlc.types.Type):
|
|
6185
7065
|
__schema__ = schema
|
|
6186
|
-
__field_names__ = ('access_denied_reason', 'current_usage', 'customer_id', 'display_name_override', 'entitlement_updated_at', 'enum_values', 'feature', 'has_soft_limit', 'has_unlimited_usage', 'hidden_from_widgets', 'is_granted', 'meter_id', 'next_reset_date', 'requested_usage', 'requested_values', 'reset_period', 'reset_period_configuration', 'resource_id', 'usage_limit', 'usage_period_anchor', 'usage_period_end', 'usage_period_start', 'usage_updated_at')
|
|
7066
|
+
__field_names__ = ('access_denied_reason', 'credit_rate', 'current_usage', 'customer_id', 'display_name_override', 'entitlement_updated_at', 'enum_values', 'feature', 'has_soft_limit', 'has_unlimited_usage', 'hidden_from_widgets', 'is_granted', 'meter_id', 'next_reset_date', 'requested_usage', 'requested_values', 'reset_period', 'reset_period_configuration', 'resource_id', 'usage_limit', 'usage_period_anchor', 'usage_period_end', 'usage_period_start', 'usage_updated_at', 'valid_until')
|
|
6187
7067
|
access_denied_reason = sgqlc.types.Field(AccessDeniedReason, graphql_name='accessDeniedReason')
|
|
7068
|
+
credit_rate = sgqlc.types.Field(CreditRate, graphql_name='creditRate')
|
|
6188
7069
|
current_usage = sgqlc.types.Field(Float, graphql_name='currentUsage')
|
|
6189
7070
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
6190
7071
|
display_name_override = sgqlc.types.Field(String, graphql_name='displayNameOverride')
|
|
@@ -6207,6 +7088,7 @@ class Entitlement(sgqlc.types.Type):
|
|
|
6207
7088
|
usage_period_end = sgqlc.types.Field(DateTime, graphql_name='usagePeriodEnd')
|
|
6208
7089
|
usage_period_start = sgqlc.types.Field(DateTime, graphql_name='usagePeriodStart')
|
|
6209
7090
|
usage_updated_at = sgqlc.types.Field(DateTime, graphql_name='usageUpdatedAt')
|
|
7091
|
+
valid_until = sgqlc.types.Field(Float, graphql_name='validUntil')
|
|
6210
7092
|
|
|
6211
7093
|
|
|
6212
7094
|
class EntitlementFeature(sgqlc.types.Type):
|
|
@@ -6248,8 +7130,9 @@ class EntitlementSummary(sgqlc.types.Type):
|
|
|
6248
7130
|
|
|
6249
7131
|
class EntitlementWithSummary(sgqlc.types.Type):
|
|
6250
7132
|
__schema__ = schema
|
|
6251
|
-
__field_names__ = ('access_denied_reason', 'current_usage', 'customer_id', 'display_name_override', 'entitlement_updated_at', 'enum_values', 'feature', 'has_soft_limit', 'has_unlimited_usage', 'hidden_from_widgets', 'is_granted', 'meter_id', 'next_reset_date', 'requested_usage', 'requested_values', 'reset_period', 'reset_period_configuration', 'resource_id', 'summaries', 'usage_limit', 'usage_period_anchor', 'usage_period_end', 'usage_period_start', 'usage_updated_at')
|
|
7133
|
+
__field_names__ = ('access_denied_reason', 'credit_rate', 'current_usage', 'customer_id', 'display_name_override', 'entitlement_updated_at', 'enum_values', 'feature', 'has_soft_limit', 'has_unlimited_usage', 'hidden_from_widgets', 'is_granted', 'meter_id', 'next_reset_date', 'requested_usage', 'requested_values', 'reset_period', 'reset_period_configuration', 'resource_id', 'summaries', 'usage_limit', 'usage_period_anchor', 'usage_period_end', 'usage_period_start', 'usage_updated_at', 'valid_until')
|
|
6252
7134
|
access_denied_reason = sgqlc.types.Field(AccessDeniedReason, graphql_name='accessDeniedReason')
|
|
7135
|
+
credit_rate = sgqlc.types.Field(CreditRate, graphql_name='creditRate')
|
|
6253
7136
|
current_usage = sgqlc.types.Field(Float, graphql_name='currentUsage')
|
|
6254
7137
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
6255
7138
|
display_name_override = sgqlc.types.Field(String, graphql_name='displayNameOverride')
|
|
@@ -6273,6 +7156,14 @@ class EntitlementWithSummary(sgqlc.types.Type):
|
|
|
6273
7156
|
usage_period_end = sgqlc.types.Field(DateTime, graphql_name='usagePeriodEnd')
|
|
6274
7157
|
usage_period_start = sgqlc.types.Field(DateTime, graphql_name='usagePeriodStart')
|
|
6275
7158
|
usage_updated_at = sgqlc.types.Field(DateTime, graphql_name='usageUpdatedAt')
|
|
7159
|
+
valid_until = sgqlc.types.Field(Float, graphql_name='validUntil')
|
|
7160
|
+
|
|
7161
|
+
|
|
7162
|
+
class EntitlementsState(sgqlc.types.Type):
|
|
7163
|
+
__schema__ = schema
|
|
7164
|
+
__field_names__ = ('access_denied_reason', 'entitlements')
|
|
7165
|
+
access_denied_reason = sgqlc.types.Field(EntitlementsStateAccessDeniedReason, graphql_name='accessDeniedReason')
|
|
7166
|
+
entitlements = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Entitlement))), graphql_name='entitlements')
|
|
6276
7167
|
|
|
6277
7168
|
|
|
6278
7169
|
class EntitlementsUpdated(sgqlc.types.Type):
|
|
@@ -6392,7 +7283,7 @@ class EventActorInfo(sgqlc.types.Type):
|
|
|
6392
7283
|
|
|
6393
7284
|
class EventLog(sgqlc.types.Type):
|
|
6394
7285
|
__schema__ = schema
|
|
6395
|
-
__field_names__ = ('account_id', 'actor', 'created_at', 'entity_id', 'entity_type', 'environment_id', 'event_log_type', 'id', 'parent_entity_id', 'payload', 'request', 'webhooks')
|
|
7286
|
+
__field_names__ = ('account_id', 'actor', 'created_at', 'entity_id', 'entity_type', 'environment_id', 'event_log_type', 'id', 'parent_entity_id', 'payload', 'request', 'trace_id', 'webhooks')
|
|
6396
7287
|
account_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='accountId')
|
|
6397
7288
|
actor = sgqlc.types.Field(EventActorInfo, graphql_name='actor')
|
|
6398
7289
|
created_at = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='createdAt')
|
|
@@ -6404,18 +7295,21 @@ class EventLog(sgqlc.types.Type):
|
|
|
6404
7295
|
parent_entity_id = sgqlc.types.Field(String, graphql_name='parentEntityId')
|
|
6405
7296
|
payload = sgqlc.types.Field(sgqlc.types.non_null(JSON), graphql_name='payload')
|
|
6406
7297
|
request = sgqlc.types.Field('EventRequest', graphql_name='request')
|
|
7298
|
+
trace_id = sgqlc.types.Field(String, graphql_name='traceId')
|
|
6407
7299
|
webhooks = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('EventWebhook')), graphql_name='webhooks')
|
|
6408
7300
|
|
|
6409
7301
|
|
|
6410
7302
|
class EventLogAggregateGroupBy(sgqlc.types.Type):
|
|
6411
7303
|
__schema__ = schema
|
|
6412
|
-
__field_names__ = ('created_at', 'entity_id', 'environment_id', 'event_log_type', 'id', 'parent_entity_id')
|
|
7304
|
+
__field_names__ = ('created_at', 'entity_id', 'entity_type', 'environment_id', 'event_log_type', 'id', 'parent_entity_id', 'trace_id')
|
|
6413
7305
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
6414
7306
|
entity_id = sgqlc.types.Field(String, graphql_name='entityId')
|
|
7307
|
+
entity_type = sgqlc.types.Field(EventEntityType, graphql_name='entityType')
|
|
6415
7308
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
6416
7309
|
event_log_type = sgqlc.types.Field(EventLogType, graphql_name='eventLogType')
|
|
6417
7310
|
id = sgqlc.types.Field(String, graphql_name='id')
|
|
6418
7311
|
parent_entity_id = sgqlc.types.Field(String, graphql_name='parentEntityId')
|
|
7312
|
+
trace_id = sgqlc.types.Field(String, graphql_name='traceId')
|
|
6419
7313
|
|
|
6420
7314
|
|
|
6421
7315
|
class EventLogConnection(sgqlc.types.relay.Connection):
|
|
@@ -6427,13 +7321,15 @@ class EventLogConnection(sgqlc.types.relay.Connection):
|
|
|
6427
7321
|
|
|
6428
7322
|
class EventLogCountAggregate(sgqlc.types.Type):
|
|
6429
7323
|
__schema__ = schema
|
|
6430
|
-
__field_names__ = ('created_at', 'entity_id', 'environment_id', 'event_log_type', 'id', 'parent_entity_id')
|
|
7324
|
+
__field_names__ = ('created_at', 'entity_id', 'entity_type', 'environment_id', 'event_log_type', 'id', 'parent_entity_id', 'trace_id')
|
|
6431
7325
|
created_at = sgqlc.types.Field(Int, graphql_name='createdAt')
|
|
6432
7326
|
entity_id = sgqlc.types.Field(Int, graphql_name='entityId')
|
|
7327
|
+
entity_type = sgqlc.types.Field(Int, graphql_name='entityType')
|
|
6433
7328
|
environment_id = sgqlc.types.Field(Int, graphql_name='environmentId')
|
|
6434
7329
|
event_log_type = sgqlc.types.Field(Int, graphql_name='eventLogType')
|
|
6435
7330
|
id = sgqlc.types.Field(Int, graphql_name='id')
|
|
6436
7331
|
parent_entity_id = sgqlc.types.Field(Int, graphql_name='parentEntityId')
|
|
7332
|
+
trace_id = sgqlc.types.Field(Int, graphql_name='traceId')
|
|
6437
7333
|
|
|
6438
7334
|
|
|
6439
7335
|
class EventLogEdge(sgqlc.types.Type):
|
|
@@ -6445,24 +7341,28 @@ class EventLogEdge(sgqlc.types.Type):
|
|
|
6445
7341
|
|
|
6446
7342
|
class EventLogMaxAggregate(sgqlc.types.Type):
|
|
6447
7343
|
__schema__ = schema
|
|
6448
|
-
__field_names__ = ('created_at', 'entity_id', 'environment_id', 'event_log_type', 'id', 'parent_entity_id')
|
|
7344
|
+
__field_names__ = ('created_at', 'entity_id', 'entity_type', 'environment_id', 'event_log_type', 'id', 'parent_entity_id', 'trace_id')
|
|
6449
7345
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
6450
7346
|
entity_id = sgqlc.types.Field(String, graphql_name='entityId')
|
|
7347
|
+
entity_type = sgqlc.types.Field(EventEntityType, graphql_name='entityType')
|
|
6451
7348
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
6452
7349
|
event_log_type = sgqlc.types.Field(EventLogType, graphql_name='eventLogType')
|
|
6453
7350
|
id = sgqlc.types.Field(String, graphql_name='id')
|
|
6454
7351
|
parent_entity_id = sgqlc.types.Field(String, graphql_name='parentEntityId')
|
|
7352
|
+
trace_id = sgqlc.types.Field(String, graphql_name='traceId')
|
|
6455
7353
|
|
|
6456
7354
|
|
|
6457
7355
|
class EventLogMinAggregate(sgqlc.types.Type):
|
|
6458
7356
|
__schema__ = schema
|
|
6459
|
-
__field_names__ = ('created_at', 'entity_id', 'environment_id', 'event_log_type', 'id', 'parent_entity_id')
|
|
7357
|
+
__field_names__ = ('created_at', 'entity_id', 'entity_type', 'environment_id', 'event_log_type', 'id', 'parent_entity_id', 'trace_id')
|
|
6460
7358
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
6461
7359
|
entity_id = sgqlc.types.Field(String, graphql_name='entityId')
|
|
7360
|
+
entity_type = sgqlc.types.Field(EventEntityType, graphql_name='entityType')
|
|
6462
7361
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
6463
7362
|
event_log_type = sgqlc.types.Field(EventLogType, graphql_name='eventLogType')
|
|
6464
7363
|
id = sgqlc.types.Field(String, graphql_name='id')
|
|
6465
7364
|
parent_entity_id = sgqlc.types.Field(String, graphql_name='parentEntityId')
|
|
7365
|
+
trace_id = sgqlc.types.Field(String, graphql_name='traceId')
|
|
6466
7366
|
|
|
6467
7367
|
|
|
6468
7368
|
class EventRequest(sgqlc.types.Type):
|
|
@@ -7192,6 +8092,18 @@ class InvoiceLine(sgqlc.types.Type):
|
|
|
7192
8092
|
quantity = sgqlc.types.Field(Int, graphql_name='quantity')
|
|
7193
8093
|
|
|
7194
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
|
+
|
|
7195
8107
|
class ListAwsProductDimensionsDTO(sgqlc.types.Type):
|
|
7196
8108
|
__schema__ = schema
|
|
7197
8109
|
__field_names__ = ('dimensions',)
|
|
@@ -7204,6 +8116,12 @@ class ListAwsProductsResult(sgqlc.types.Type):
|
|
|
7204
8116
|
products = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(AwsProduct))), graphql_name='products')
|
|
7205
8117
|
|
|
7206
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
|
+
|
|
7207
8125
|
class Member(sgqlc.types.Type):
|
|
7208
8126
|
__schema__ = schema
|
|
7209
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')
|
|
@@ -7309,10 +8227,11 @@ class Meter(sgqlc.types.Type):
|
|
|
7309
8227
|
|
|
7310
8228
|
class MeterCondition(sgqlc.types.Type):
|
|
7311
8229
|
__schema__ = schema
|
|
7312
|
-
__field_names__ = ('field', 'operation', 'value')
|
|
8230
|
+
__field_names__ = ('field', 'operation', 'value', 'values')
|
|
7313
8231
|
field = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='field')
|
|
7314
8232
|
operation = sgqlc.types.Field(sgqlc.types.non_null(ConditionOperation), graphql_name='operation')
|
|
7315
8233
|
value = sgqlc.types.Field(String, graphql_name='value')
|
|
8234
|
+
values = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='values')
|
|
7316
8235
|
|
|
7317
8236
|
|
|
7318
8237
|
class MeterFilterDefinition(sgqlc.types.Type):
|
|
@@ -7366,7 +8285,7 @@ class MonthlyResetPeriodConfig(sgqlc.types.Type):
|
|
|
7366
8285
|
|
|
7367
8286
|
class Mutation(sgqlc.types.Type):
|
|
7368
8287
|
__schema__ = schema
|
|
7369
|
-
__field_names__ = ('add_compatible_addons_to_plan', 'apply_subscription', 'archive_addon', 'archive_customer', 'archive_environment', 'archive_feature', 'archive_feature_group', 'archive_one_coupon', '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_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_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', 'hide_getting_started_page', 'import_customers_bulk', 'import_one_customer', 'import_subscriptions_bulk', 'init_add_stripe_customer_payment_method', 'invite_members', 'mark_invoice_as_paid', 'merge_environment', 'migrate_package_feature_groups_to_latest', 'migrate_subscription_to_latest', 'prepare_payment_method_form', 'preview_next_invoice', 'preview_subscription', 'provision_customer', 'provision_sandbox', 'provision_subscription', 'provision_subscription_v2', 'publish_addon', '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_plan_draft', 'report_entitlement_check_requested', 'report_event', 'report_usage', 'report_usage_bulk', 'resend_email_verification', 'resync_integration', 'revoke_promotional_entitlement', 'set_access_roles', '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', 'update_account', 'update_credit_grant', 'update_custom_currency', 'update_entitlements_order', 'update_feature', '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', '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')
|
|
7370
8289
|
add_compatible_addons_to_plan = sgqlc.types.Field(sgqlc.types.non_null('Plan'), graphql_name='addCompatibleAddonsToPlan', args=sgqlc.types.ArgDict((
|
|
7371
8290
|
('input', sgqlc.types.Arg(sgqlc.types.non_null(AddCompatibleAddonsToPlanInput), graphql_name='input', default=None)),
|
|
7372
8291
|
))
|
|
@@ -7397,6 +8316,10 @@ class Mutation(sgqlc.types.Type):
|
|
|
7397
8316
|
)
|
|
7398
8317
|
archive_one_coupon = sgqlc.types.Field(sgqlc.types.non_null(Coupon), graphql_name='archiveOneCoupon', args=sgqlc.types.ArgDict((
|
|
7399
8318
|
('input', sgqlc.types.Arg(sgqlc.types.non_null(ArchiveCouponInput), graphql_name='input', default=None)),
|
|
8319
|
+
))
|
|
8320
|
+
)
|
|
8321
|
+
archive_one_product = sgqlc.types.Field(sgqlc.types.non_null('Product'), graphql_name='archiveOneProduct', args=sgqlc.types.ArgDict((
|
|
8322
|
+
('input', sgqlc.types.Arg(sgqlc.types.non_null(ArchiveProductInput), graphql_name='input', default=None)),
|
|
7400
8323
|
))
|
|
7401
8324
|
)
|
|
7402
8325
|
archive_package_group = sgqlc.types.Field(sgqlc.types.non_null('PackageGroup'), graphql_name='archivePackageGroup', args=sgqlc.types.ArgDict((
|
|
@@ -7461,6 +8384,14 @@ class Mutation(sgqlc.types.Type):
|
|
|
7461
8384
|
)
|
|
7462
8385
|
create_many_promotional_entitlements = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('PromotionalEntitlement'))), graphql_name='createManyPromotionalEntitlements', args=sgqlc.types.ArgDict((
|
|
7463
8386
|
('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateManyPromotionalEntitlementsInput), graphql_name='input', default=None)),
|
|
8387
|
+
))
|
|
8388
|
+
)
|
|
8389
|
+
create_offer = sgqlc.types.Field(sgqlc.types.non_null('Offer'), graphql_name='createOffer', args=sgqlc.types.ArgDict((
|
|
8390
|
+
('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateOfferInput), graphql_name='input', default=None)),
|
|
8391
|
+
))
|
|
8392
|
+
)
|
|
8393
|
+
create_offer_draft = sgqlc.types.Field(sgqlc.types.non_null('Offer'), graphql_name='createOfferDraft', args=sgqlc.types.ArgDict((
|
|
8394
|
+
('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateOfferDraftInput), graphql_name='input', default=None)),
|
|
7464
8395
|
))
|
|
7465
8396
|
)
|
|
7466
8397
|
create_one_addon = sgqlc.types.Field(sgqlc.types.non_null(Addon), graphql_name='createOneAddon', args=sgqlc.types.ArgDict((
|
|
@@ -7505,6 +8436,10 @@ class Mutation(sgqlc.types.Type):
|
|
|
7505
8436
|
)
|
|
7506
8437
|
create_package_group = sgqlc.types.Field(sgqlc.types.non_null('PackageGroup'), graphql_name='createPackageGroup', args=sgqlc.types.ArgDict((
|
|
7507
8438
|
('input', sgqlc.types.Arg(sgqlc.types.non_null(CreatePackageGroup), graphql_name='input', default=None)),
|
|
8439
|
+
))
|
|
8440
|
+
)
|
|
8441
|
+
create_payment_session = sgqlc.types.Field(sgqlc.types.non_null('PaymentSession'), graphql_name='createPaymentSession', args=sgqlc.types.ArgDict((
|
|
8442
|
+
('input', sgqlc.types.Arg(sgqlc.types.non_null(PaymentSessionInput), graphql_name='input', default=None)),
|
|
7508
8443
|
))
|
|
7509
8444
|
)
|
|
7510
8445
|
create_plan_draft = sgqlc.types.Field(sgqlc.types.non_null('Plan'), graphql_name='createPlanDraft', args=sgqlc.types.ArgDict((
|
|
@@ -7585,6 +8520,10 @@ class Mutation(sgqlc.types.Type):
|
|
|
7585
8520
|
)
|
|
7586
8521
|
grant_promotional_entitlements = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('PromotionalEntitlement'))), graphql_name='grantPromotionalEntitlements', args=sgqlc.types.ArgDict((
|
|
7587
8522
|
('input', sgqlc.types.Arg(sgqlc.types.non_null(GrantPromotionalEntitlementsInput), graphql_name='input', default=None)),
|
|
8523
|
+
))
|
|
8524
|
+
)
|
|
8525
|
+
grant_promotional_entitlements_group = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('PromotionalEntitlement'))), graphql_name='grantPromotionalEntitlementsGroup', args=sgqlc.types.ArgDict((
|
|
8526
|
+
('input', sgqlc.types.Arg(sgqlc.types.non_null(GrantPromotionalEntitlementsGroupInput), graphql_name='input', default=None)),
|
|
7588
8527
|
))
|
|
7589
8528
|
)
|
|
7590
8529
|
hide_getting_started_page = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='hideGettingStartedPage', args=sgqlc.types.ArgDict((
|
|
@@ -7609,6 +8548,14 @@ class Mutation(sgqlc.types.Type):
|
|
|
7609
8548
|
)
|
|
7610
8549
|
invite_members = sgqlc.types.Field(sgqlc.types.non_null(MembersInviteResponse), graphql_name='inviteMembers', args=sgqlc.types.ArgDict((
|
|
7611
8550
|
('input', sgqlc.types.Arg(sgqlc.types.non_null(InviteMembersInput), graphql_name='input', default=None)),
|
|
8551
|
+
))
|
|
8552
|
+
)
|
|
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((
|
|
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)),
|
|
7612
8559
|
))
|
|
7613
8560
|
)
|
|
7614
8561
|
mark_invoice_as_paid = sgqlc.types.Field(String, graphql_name='markInvoiceAsPaid', args=sgqlc.types.ArgDict((
|
|
@@ -7629,6 +8576,10 @@ class Mutation(sgqlc.types.Type):
|
|
|
7629
8576
|
)
|
|
7630
8577
|
prepare_payment_method_form = sgqlc.types.Field(sgqlc.types.non_null('PreparedPaymentMethodForm'), graphql_name='preparePaymentMethodForm', args=sgqlc.types.ArgDict((
|
|
7631
8578
|
('input', sgqlc.types.Arg(sgqlc.types.non_null(PreparePaymentMethodFormInput), graphql_name='input', default=None)),
|
|
8579
|
+
))
|
|
8580
|
+
)
|
|
8581
|
+
preview_credit_grant = sgqlc.types.Field(sgqlc.types.non_null(CreditGrantPreview), graphql_name='previewCreditGrant', args=sgqlc.types.ArgDict((
|
|
8582
|
+
('input', sgqlc.types.Arg(sgqlc.types.non_null(PreviewCreditGrantInput), graphql_name='input', default=None)),
|
|
7632
8583
|
))
|
|
7633
8584
|
)
|
|
7634
8585
|
preview_next_invoice = sgqlc.types.Field(sgqlc.types.non_null('SubscriptionInvoicePreview'), graphql_name='previewNextInvoice', args=sgqlc.types.ArgDict((
|
|
@@ -7657,6 +8608,10 @@ class Mutation(sgqlc.types.Type):
|
|
|
7657
8608
|
)
|
|
7658
8609
|
publish_addon = sgqlc.types.Field(sgqlc.types.non_null('PublishPackageResult'), graphql_name='publishAddon', args=sgqlc.types.ArgDict((
|
|
7659
8610
|
('input', sgqlc.types.Arg(sgqlc.types.non_null(PackagePublishInput), graphql_name='input', default=None)),
|
|
8611
|
+
))
|
|
8612
|
+
)
|
|
8613
|
+
publish_offer = sgqlc.types.Field(sgqlc.types.non_null('Offer'), graphql_name='publishOffer', args=sgqlc.types.ArgDict((
|
|
8614
|
+
('input', sgqlc.types.Arg(sgqlc.types.non_null(PublishOfferInput), graphql_name='input', default=None)),
|
|
7660
8615
|
))
|
|
7661
8616
|
)
|
|
7662
8617
|
publish_plan = sgqlc.types.Field(sgqlc.types.non_null('PublishPackageResult'), graphql_name='publishPlan', args=sgqlc.types.ArgDict((
|
|
@@ -7702,6 +8657,10 @@ class Mutation(sgqlc.types.Type):
|
|
|
7702
8657
|
)
|
|
7703
8658
|
remove_member = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='removeMember', args=sgqlc.types.ArgDict((
|
|
7704
8659
|
('member_id', sgqlc.types.Arg(sgqlc.types.non_null(UUID), graphql_name='memberId', default=None)),
|
|
8660
|
+
))
|
|
8661
|
+
)
|
|
8662
|
+
remove_offer_draft = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='removeOfferDraft', args=sgqlc.types.ArgDict((
|
|
8663
|
+
('input', sgqlc.types.Arg(sgqlc.types.non_null(RemoveOfferDraftInput), graphql_name='input', default=None)),
|
|
7705
8664
|
))
|
|
7706
8665
|
)
|
|
7707
8666
|
remove_plan_draft = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='removePlanDraft', args=sgqlc.types.ArgDict((
|
|
@@ -7731,10 +8690,22 @@ class Mutation(sgqlc.types.Type):
|
|
|
7731
8690
|
)
|
|
7732
8691
|
revoke_promotional_entitlement = sgqlc.types.Field(sgqlc.types.non_null('PromotionalEntitlement'), graphql_name='revokePromotionalEntitlement', args=sgqlc.types.ArgDict((
|
|
7733
8692
|
('input', sgqlc.types.Arg(sgqlc.types.non_null(RevokePromotionalEntitlementInput), graphql_name='input', default=None)),
|
|
8693
|
+
))
|
|
8694
|
+
)
|
|
8695
|
+
revoke_promotional_entitlements_group = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('PromotionalEntitlement'))), graphql_name='revokePromotionalEntitlementsGroup', args=sgqlc.types.ArgDict((
|
|
8696
|
+
('input', sgqlc.types.Arg(sgqlc.types.non_null(RevokePromotionalEntitlementsGroupInput), graphql_name='input', default=None)),
|
|
8697
|
+
))
|
|
8698
|
+
)
|
|
8699
|
+
save_auto_recharge_settings = sgqlc.types.Field(sgqlc.types.non_null(AutoRechargeSettingsDTO), graphql_name='saveAutoRechargeSettings', args=sgqlc.types.ArgDict((
|
|
8700
|
+
('input', sgqlc.types.Arg(sgqlc.types.non_null(SaveAutoRechargeSettingsInput), graphql_name='input', default=None)),
|
|
7734
8701
|
))
|
|
7735
8702
|
)
|
|
7736
8703
|
set_access_roles = sgqlc.types.Field(String, graphql_name='setAccessRoles', args=sgqlc.types.ArgDict((
|
|
7737
8704
|
('set_access_roles_input', sgqlc.types.Arg(sgqlc.types.non_null(SetAccessRolesInput), graphql_name='setAccessRolesInput', default=None)),
|
|
8705
|
+
))
|
|
8706
|
+
)
|
|
8707
|
+
set_as_default = sgqlc.types.Field(sgqlc.types.non_null('Offer'), graphql_name='setAsDefault', args=sgqlc.types.ArgDict((
|
|
8708
|
+
('input', sgqlc.types.Arg(sgqlc.types.non_null(SetDefaultOfferInput), graphql_name='input', default=None)),
|
|
7738
8709
|
))
|
|
7739
8710
|
)
|
|
7740
8711
|
set_base_plan_on_plan = sgqlc.types.Field(sgqlc.types.non_null('Plan'), graphql_name='setBasePlanOnPlan', args=sgqlc.types.ArgDict((
|
|
@@ -7840,6 +8811,10 @@ class Mutation(sgqlc.types.Type):
|
|
|
7840
8811
|
)
|
|
7841
8812
|
unarchive_feature_group = sgqlc.types.Field(sgqlc.types.non_null(FeatureGroup), graphql_name='unarchiveFeatureGroup', args=sgqlc.types.ArgDict((
|
|
7842
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)),
|
|
7843
8818
|
))
|
|
7844
8819
|
)
|
|
7845
8820
|
unarchive_plan = sgqlc.types.Field(sgqlc.types.non_null('Plan'), graphql_name='unarchivePlan', args=sgqlc.types.ArgDict((
|
|
@@ -7848,6 +8823,10 @@ class Mutation(sgqlc.types.Type):
|
|
|
7848
8823
|
)
|
|
7849
8824
|
unlink_feature_group_from_package = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('PackageEntitlement'))), graphql_name='unlinkFeatureGroupFromPackage', args=sgqlc.types.ArgDict((
|
|
7850
8825
|
('input', sgqlc.types.Arg(sgqlc.types.non_null(UnlinkFeatureGroupFromPackageInput), graphql_name='input', default=None)),
|
|
8826
|
+
))
|
|
8827
|
+
)
|
|
8828
|
+
unlink_promotional_entitlements_group = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('PromotionalEntitlement'))), graphql_name='unlinkPromotionalEntitlementsGroup', args=sgqlc.types.ArgDict((
|
|
8829
|
+
('input', sgqlc.types.Arg(sgqlc.types.non_null(UnlinkPromotionalEntitlementsGroupInput), graphql_name='input', default=None)),
|
|
7851
8830
|
))
|
|
7852
8831
|
)
|
|
7853
8832
|
update_account = sgqlc.types.Field(sgqlc.types.non_null(Account), graphql_name='updateAccount', args=sgqlc.types.ArgDict((
|
|
@@ -7868,6 +8847,10 @@ class Mutation(sgqlc.types.Type):
|
|
|
7868
8847
|
)
|
|
7869
8848
|
update_feature = sgqlc.types.Field(sgqlc.types.non_null(Feature), graphql_name='updateFeature', args=sgqlc.types.ArgDict((
|
|
7870
8849
|
('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateFeatureInput), graphql_name='input', default=None)),
|
|
8850
|
+
))
|
|
8851
|
+
)
|
|
8852
|
+
update_offer = sgqlc.types.Field(sgqlc.types.non_null('Offer'), graphql_name='updateOffer', args=sgqlc.types.ArgDict((
|
|
8853
|
+
('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateOfferInput), graphql_name='input', default=None)),
|
|
7871
8854
|
))
|
|
7872
8855
|
)
|
|
7873
8856
|
update_one_addon = sgqlc.types.Field(sgqlc.types.non_null(Addon), graphql_name='updateOneAddon', args=sgqlc.types.ArgDict((
|
|
@@ -7920,6 +8903,10 @@ class Mutation(sgqlc.types.Type):
|
|
|
7920
8903
|
)
|
|
7921
8904
|
update_user = sgqlc.types.Field(sgqlc.types.non_null('User'), graphql_name='updateUser', args=sgqlc.types.ArgDict((
|
|
7922
8905
|
('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateUserInput), graphql_name='input', default=None)),
|
|
8906
|
+
))
|
|
8907
|
+
)
|
|
8908
|
+
void_credit_grant = sgqlc.types.Field(sgqlc.types.non_null(CreditGrant), graphql_name='voidCreditGrant', args=sgqlc.types.ArgDict((
|
|
8909
|
+
('input', sgqlc.types.Arg(sgqlc.types.non_null(VoidCreditGrantInput), graphql_name='input', default=None)),
|
|
7923
8910
|
))
|
|
7924
8911
|
)
|
|
7925
8912
|
workflows_login = sgqlc.types.Field(sgqlc.types.non_null('WorkflowsLoginDTO'), graphql_name='workflowsLogin', args=sgqlc.types.ArgDict((
|
|
@@ -7928,6 +8915,14 @@ class Mutation(sgqlc.types.Type):
|
|
|
7928
8915
|
)
|
|
7929
8916
|
|
|
7930
8917
|
|
|
8918
|
+
class NoActiveSubscriptionForCustomerError(sgqlc.types.Type):
|
|
8919
|
+
__schema__ = schema
|
|
8920
|
+
__field_names__ = ('code', 'customer_ref_id', 'is_validation_error')
|
|
8921
|
+
code = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='code')
|
|
8922
|
+
customer_ref_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerRefId')
|
|
8923
|
+
is_validation_error = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='isValidationError')
|
|
8924
|
+
|
|
8925
|
+
|
|
7931
8926
|
class NumberChange(sgqlc.types.Type):
|
|
7932
8927
|
__schema__ = schema
|
|
7933
8928
|
__field_names__ = ('after', 'before', 'change_type')
|
|
@@ -7936,6 +8931,106 @@ class NumberChange(sgqlc.types.Type):
|
|
|
7936
8931
|
change_type = sgqlc.types.Field(ChangeType, graphql_name='changeType')
|
|
7937
8932
|
|
|
7938
8933
|
|
|
8934
|
+
class Offer(sgqlc.types.Type):
|
|
8935
|
+
__schema__ = schema
|
|
8936
|
+
__field_names__ = ('account_id', 'created_at', 'description', 'draft_details', 'environment_id', 'id', 'is_default', 'is_latest', 'metadata', 'name', 'offer_id', 'status', 'updated_at', 'version')
|
|
8937
|
+
account_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='accountId')
|
|
8938
|
+
created_at = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='createdAt')
|
|
8939
|
+
description = sgqlc.types.Field(String, graphql_name='description')
|
|
8940
|
+
draft_details = sgqlc.types.Field('OfferDraftDetails', graphql_name='draftDetails')
|
|
8941
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
8942
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
8943
|
+
is_default = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='isDefault')
|
|
8944
|
+
is_latest = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='isLatest')
|
|
8945
|
+
metadata = sgqlc.types.Field(JSON, graphql_name='metadata')
|
|
8946
|
+
name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name')
|
|
8947
|
+
offer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='offerId')
|
|
8948
|
+
status = sgqlc.types.Field(sgqlc.types.non_null(OfferStatus), graphql_name='status')
|
|
8949
|
+
updated_at = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='updatedAt')
|
|
8950
|
+
version = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='version')
|
|
8951
|
+
|
|
8952
|
+
|
|
8953
|
+
class OfferAggregateGroupBy(sgqlc.types.Type):
|
|
8954
|
+
__schema__ = schema
|
|
8955
|
+
__field_names__ = ('created_at', 'environment_id', 'id', 'is_default', 'is_latest', 'offer_id', 'status', 'version')
|
|
8956
|
+
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
8957
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
8958
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
8959
|
+
is_default = sgqlc.types.Field(Boolean, graphql_name='isDefault')
|
|
8960
|
+
is_latest = sgqlc.types.Field(Boolean, graphql_name='isLatest')
|
|
8961
|
+
offer_id = sgqlc.types.Field(String, graphql_name='offerId')
|
|
8962
|
+
status = sgqlc.types.Field(OfferStatus, graphql_name='status')
|
|
8963
|
+
version = sgqlc.types.Field(Int, graphql_name='version')
|
|
8964
|
+
|
|
8965
|
+
|
|
8966
|
+
class OfferAvgAggregate(sgqlc.types.Type):
|
|
8967
|
+
__schema__ = schema
|
|
8968
|
+
__field_names__ = ('version',)
|
|
8969
|
+
version = sgqlc.types.Field(Float, graphql_name='version')
|
|
8970
|
+
|
|
8971
|
+
|
|
8972
|
+
class OfferConnection(sgqlc.types.relay.Connection):
|
|
8973
|
+
__schema__ = schema
|
|
8974
|
+
__field_names__ = ('edges', 'page_info', 'total_count')
|
|
8975
|
+
edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('OfferEdge'))), graphql_name='edges')
|
|
8976
|
+
page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo')
|
|
8977
|
+
total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount')
|
|
8978
|
+
|
|
8979
|
+
|
|
8980
|
+
class OfferCountAggregate(sgqlc.types.Type):
|
|
8981
|
+
__schema__ = schema
|
|
8982
|
+
__field_names__ = ('created_at', 'environment_id', 'id', 'is_default', 'is_latest', 'offer_id', 'status', 'version')
|
|
8983
|
+
created_at = sgqlc.types.Field(Int, graphql_name='createdAt')
|
|
8984
|
+
environment_id = sgqlc.types.Field(Int, graphql_name='environmentId')
|
|
8985
|
+
id = sgqlc.types.Field(Int, graphql_name='id')
|
|
8986
|
+
is_default = sgqlc.types.Field(Int, graphql_name='isDefault')
|
|
8987
|
+
is_latest = sgqlc.types.Field(Int, graphql_name='isLatest')
|
|
8988
|
+
offer_id = sgqlc.types.Field(Int, graphql_name='offerId')
|
|
8989
|
+
status = sgqlc.types.Field(Int, graphql_name='status')
|
|
8990
|
+
version = sgqlc.types.Field(Int, graphql_name='version')
|
|
8991
|
+
|
|
8992
|
+
|
|
8993
|
+
class OfferDraftDetails(sgqlc.types.Type):
|
|
8994
|
+
__schema__ = schema
|
|
8995
|
+
__field_names__ = ('version',)
|
|
8996
|
+
version = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='version')
|
|
8997
|
+
|
|
8998
|
+
|
|
8999
|
+
class OfferEdge(sgqlc.types.Type):
|
|
9000
|
+
__schema__ = schema
|
|
9001
|
+
__field_names__ = ('cursor', 'node')
|
|
9002
|
+
cursor = sgqlc.types.Field(sgqlc.types.non_null(ConnectionCursor), graphql_name='cursor')
|
|
9003
|
+
node = sgqlc.types.Field(sgqlc.types.non_null(Offer), graphql_name='node')
|
|
9004
|
+
|
|
9005
|
+
|
|
9006
|
+
class OfferMaxAggregate(sgqlc.types.Type):
|
|
9007
|
+
__schema__ = schema
|
|
9008
|
+
__field_names__ = ('created_at', 'environment_id', 'id', 'offer_id', 'status', 'version')
|
|
9009
|
+
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
9010
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
9011
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
9012
|
+
offer_id = sgqlc.types.Field(String, graphql_name='offerId')
|
|
9013
|
+
status = sgqlc.types.Field(OfferStatus, graphql_name='status')
|
|
9014
|
+
version = sgqlc.types.Field(Int, graphql_name='version')
|
|
9015
|
+
|
|
9016
|
+
|
|
9017
|
+
class OfferMinAggregate(sgqlc.types.Type):
|
|
9018
|
+
__schema__ = schema
|
|
9019
|
+
__field_names__ = ('created_at', 'environment_id', 'id', 'offer_id', 'status', 'version')
|
|
9020
|
+
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
9021
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
9022
|
+
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
9023
|
+
offer_id = sgqlc.types.Field(String, graphql_name='offerId')
|
|
9024
|
+
status = sgqlc.types.Field(OfferStatus, graphql_name='status')
|
|
9025
|
+
version = sgqlc.types.Field(Int, graphql_name='version')
|
|
9026
|
+
|
|
9027
|
+
|
|
9028
|
+
class OfferSumAggregate(sgqlc.types.Type):
|
|
9029
|
+
__schema__ = schema
|
|
9030
|
+
__field_names__ = ('version',)
|
|
9031
|
+
version = sgqlc.types.Field(Float, graphql_name='version')
|
|
9032
|
+
|
|
9033
|
+
|
|
7939
9034
|
class OpenFGACredentials(sgqlc.types.Type):
|
|
7940
9035
|
__schema__ = schema
|
|
7941
9036
|
__field_names__ = ('api_audience', 'api_token_issuer', 'api_url', 'client_id', 'model_id', 'store_id')
|
|
@@ -7986,7 +9081,7 @@ class PackageChanges(sgqlc.types.Type):
|
|
|
7986
9081
|
|
|
7987
9082
|
class PackageDTO(sgqlc.types.Type):
|
|
7988
9083
|
__schema__ = schema
|
|
7989
|
-
__field_names__ = ('additional_meta_data', 'billing_id', 'billing_link_url', 'created_at', 'description', 'display_name', 'draft_details', 'draft_summary', 'entitlements', 'environment_id', 'hidden_from_widgets', 'id', 'is_latest', 'overage_billing_period', 'overage_prices', 'prices', 'pricing_type', 'product_id', 'ref_id', 'status', 'sync_states', 'type', 'updated_at', 'version_number')
|
|
9084
|
+
__field_names__ = ('additional_meta_data', 'billing_id', 'billing_link_url', 'created_at', 'description', 'display_name', 'draft_details', 'draft_summary', 'entitlements', 'environment_id', 'hidden_from_widgets', 'id', 'is_latest', 'offer', 'overage_billing_period', 'overage_prices', 'prices', 'pricing_type', 'product_id', 'ref_id', 'status', 'sync_states', 'type', 'updated_at', 'version_number')
|
|
7990
9085
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
7991
9086
|
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
7992
9087
|
billing_link_url = sgqlc.types.Field(String, graphql_name='billingLinkUrl')
|
|
@@ -8000,6 +9095,7 @@ class PackageDTO(sgqlc.types.Type):
|
|
|
8000
9095
|
hidden_from_widgets = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(WidgetType)), graphql_name='hiddenFromWidgets')
|
|
8001
9096
|
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
8002
9097
|
is_latest = sgqlc.types.Field(Boolean, graphql_name='isLatest')
|
|
9098
|
+
offer = sgqlc.types.Field(Offer, graphql_name='offer')
|
|
8003
9099
|
overage_billing_period = sgqlc.types.Field(OverageBillingPeriod, graphql_name='overageBillingPeriod')
|
|
8004
9100
|
overage_prices = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('Price')), graphql_name='overagePrices')
|
|
8005
9101
|
prices = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('Price')), graphql_name='prices')
|
|
@@ -8035,7 +9131,7 @@ class PackageDraftSummary(sgqlc.types.Type):
|
|
|
8035
9131
|
|
|
8036
9132
|
class PackageEntitlement(sgqlc.types.Type):
|
|
8037
9133
|
__schema__ = schema
|
|
8038
|
-
__field_names__ = ('behavior', 'created_at', 'description', 'display_name_override', 'enum_values', 'environment_id', 'feature', 'feature_group_ids', 'feature_groups', 'feature_id', 'has_soft_limit', 'has_unlimited_usage', 'hidden_from_widgets', 'id', 'is_custom', 'meter', 'order', 'package', 'package_id', 'reset_period', 'reset_period_configuration', 'updated_at', 'usage_limit')
|
|
9134
|
+
__field_names__ = ('behavior', 'created_at', 'description', 'display_name_override', 'enum_values', 'environment_id', 'feature', 'feature_group_ids', 'feature_groups', 'feature_id', 'has_soft_limit', 'has_unlimited_usage', 'hidden_from_widgets', 'id', 'is_custom', 'is_granted', 'meter', 'order', 'package', 'package_id', 'reset_period', 'reset_period_configuration', 'updated_at', 'usage_limit')
|
|
8039
9135
|
behavior = sgqlc.types.Field(sgqlc.types.non_null(EntitlementBehavior), graphql_name='behavior')
|
|
8040
9136
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
8041
9137
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
@@ -8051,6 +9147,7 @@ class PackageEntitlement(sgqlc.types.Type):
|
|
|
8051
9147
|
hidden_from_widgets = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(WidgetType)), graphql_name='hiddenFromWidgets')
|
|
8052
9148
|
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
8053
9149
|
is_custom = sgqlc.types.Field(Boolean, graphql_name='isCustom')
|
|
9150
|
+
is_granted = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='isGranted')
|
|
8054
9151
|
meter = sgqlc.types.Field(Meter, graphql_name='meter')
|
|
8055
9152
|
order = sgqlc.types.Field(Float, graphql_name='order')
|
|
8056
9153
|
package = sgqlc.types.Field(PackageDTO, graphql_name='package')
|
|
@@ -8099,7 +9196,7 @@ class PackageEntitlementCountAggregate(sgqlc.types.Type):
|
|
|
8099
9196
|
|
|
8100
9197
|
class PackageEntitlementDeleteResponse(sgqlc.types.Type):
|
|
8101
9198
|
__schema__ = schema
|
|
8102
|
-
__field_names__ = ('behavior', 'created_at', 'description', 'display_name_override', 'enum_values', 'environment_id', 'feature_group_ids', 'feature_groups', 'feature_id', 'has_soft_limit', 'has_unlimited_usage', 'hidden_from_widgets', 'id', 'is_custom', 'order', 'package_id', 'reset_period', 'reset_period_configuration', 'updated_at', 'usage_limit')
|
|
9199
|
+
__field_names__ = ('behavior', 'created_at', 'description', 'display_name_override', 'enum_values', 'environment_id', 'feature_group_ids', 'feature_groups', 'feature_id', 'has_soft_limit', 'has_unlimited_usage', 'hidden_from_widgets', 'id', 'is_custom', 'is_granted', 'order', 'package_id', 'reset_period', 'reset_period_configuration', 'updated_at', 'usage_limit')
|
|
8103
9200
|
behavior = sgqlc.types.Field(EntitlementBehavior, graphql_name='behavior')
|
|
8104
9201
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
8105
9202
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
@@ -8114,6 +9211,7 @@ class PackageEntitlementDeleteResponse(sgqlc.types.Type):
|
|
|
8114
9211
|
hidden_from_widgets = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(WidgetType)), graphql_name='hiddenFromWidgets')
|
|
8115
9212
|
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
8116
9213
|
is_custom = sgqlc.types.Field(Boolean, graphql_name='isCustom')
|
|
9214
|
+
is_granted = sgqlc.types.Field(Boolean, graphql_name='isGranted')
|
|
8117
9215
|
order = sgqlc.types.Field(Float, graphql_name='order')
|
|
8118
9216
|
package_id = sgqlc.types.Field(String, graphql_name='packageId')
|
|
8119
9217
|
reset_period = sgqlc.types.Field(EntitlementResetPeriod, graphql_name='resetPeriod')
|
|
@@ -8294,6 +9392,12 @@ class PageInfo(sgqlc.types.Type):
|
|
|
8294
9392
|
start_cursor = sgqlc.types.Field(ConnectionCursor, graphql_name='startCursor')
|
|
8295
9393
|
|
|
8296
9394
|
|
|
9395
|
+
class PaymentSession(sgqlc.types.Type):
|
|
9396
|
+
__schema__ = schema
|
|
9397
|
+
__field_names__ = ('token',)
|
|
9398
|
+
token = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='token')
|
|
9399
|
+
|
|
9400
|
+
|
|
8297
9401
|
class Paywall(sgqlc.types.Type):
|
|
8298
9402
|
__schema__ = schema
|
|
8299
9403
|
__field_names__ = ('active_subscriptions', 'configuration', 'currency', 'customer', 'paywall_calculated_price_points', 'plans', 'resource')
|
|
@@ -8403,12 +9507,13 @@ class PaywallPlanCompatiblePackageGroupOptions(sgqlc.types.Type):
|
|
|
8403
9507
|
|
|
8404
9508
|
class PaywallPrice(sgqlc.types.Type):
|
|
8405
9509
|
__schema__ = schema
|
|
8406
|
-
__field_names__ = ('billing_country_code', 'billing_id', 'billing_model', 'billing_period', 'block_size', 'feature', 'feature_id', 'max_unit_quantity', 'min_unit_quantity', 'price', 'tiers', 'tiers_mode')
|
|
9510
|
+
__field_names__ = ('billing_country_code', 'billing_id', 'billing_model', 'billing_period', 'block_size', 'credit_rate', 'feature', 'feature_id', 'max_unit_quantity', 'min_unit_quantity', 'price', 'tiers', 'tiers_mode')
|
|
8407
9511
|
billing_country_code = sgqlc.types.Field(String, graphql_name='billingCountryCode')
|
|
8408
9512
|
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
8409
9513
|
billing_model = sgqlc.types.Field(sgqlc.types.non_null(BillingModel), graphql_name='billingModel')
|
|
8410
9514
|
billing_period = sgqlc.types.Field(sgqlc.types.non_null(BillingPeriod), graphql_name='billingPeriod')
|
|
8411
9515
|
block_size = sgqlc.types.Field(Float, graphql_name='blockSize')
|
|
9516
|
+
credit_rate = sgqlc.types.Field(CreditRate, graphql_name='creditRate')
|
|
8412
9517
|
feature = sgqlc.types.Field(EntitlementFeature, graphql_name='feature')
|
|
8413
9518
|
feature_id = sgqlc.types.Field(String, graphql_name='featureId')
|
|
8414
9519
|
max_unit_quantity = sgqlc.types.Field(Float, graphql_name='maxUnitQuantity')
|
|
@@ -8441,7 +9546,7 @@ class PaywallProduct(sgqlc.types.Type):
|
|
|
8441
9546
|
|
|
8442
9547
|
class Plan(sgqlc.types.Type):
|
|
8443
9548
|
__schema__ = schema
|
|
8444
|
-
__field_names__ = ('additional_meta_data', 'aws_marketplace_plan_dimension', 'base_plan', 'billing_id', 'billing_link_url', 'compatible_addons', 'compatible_package_groups', 'created_at', 'default_trial_config', 'description', 'display_name', 'draft_details', 'draft_summary', 'entitlements', 'environment', 'environment_id', 'hidden_from_widgets', 'id', 'inherited_entitlements', 'is_latest', 'is_parent', 'minimum_spend', 'overage_billing_period', 'overage_prices', 'prices', 'pricing_type', 'product', 'product_id', 'ref_id', 'status', 'sync_states', 'type', 'updated_at', 'version_number')
|
|
9549
|
+
__field_names__ = ('additional_meta_data', 'aws_marketplace_plan_dimension', 'base_plan', 'billing_id', 'billing_link_url', 'compatible_addons', 'compatible_package_groups', 'created_at', 'default_trial_config', 'description', 'display_name', 'draft_details', 'draft_summary', 'entitlements', 'environment', 'environment_id', 'hidden_from_widgets', 'id', 'inherited_entitlements', 'is_latest', 'is_parent', 'minimum_spend', 'offer', 'overage_billing_period', 'overage_prices', 'prices', 'pricing_type', 'product', 'product_id', 'ref_id', 'status', 'sync_states', 'type', 'updated_at', 'version_number')
|
|
8445
9550
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
8446
9551
|
aws_marketplace_plan_dimension = sgqlc.types.Field(String, graphql_name='awsMarketplacePlanDimension')
|
|
8447
9552
|
base_plan = sgqlc.types.Field('Plan', graphql_name='basePlan')
|
|
@@ -8471,6 +9576,7 @@ class Plan(sgqlc.types.Type):
|
|
|
8471
9576
|
is_latest = sgqlc.types.Field(Boolean, graphql_name='isLatest')
|
|
8472
9577
|
is_parent = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='isParent')
|
|
8473
9578
|
minimum_spend = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(MinimumSpend)), graphql_name='minimumSpend')
|
|
9579
|
+
offer = sgqlc.types.Field(Offer, graphql_name='offer')
|
|
8474
9580
|
overage_billing_period = sgqlc.types.Field(OverageBillingPeriod, graphql_name='overageBillingPeriod')
|
|
8475
9581
|
overage_prices = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('Price')), graphql_name='overagePrices')
|
|
8476
9582
|
prices = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('Price')), graphql_name='prices')
|
|
@@ -8518,13 +9624,14 @@ class PlanChangeAddon(sgqlc.types.Type):
|
|
|
8518
9624
|
|
|
8519
9625
|
class PlanChangeVariables(sgqlc.types.Type):
|
|
8520
9626
|
__schema__ = schema
|
|
8521
|
-
__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')
|
|
8522
9628
|
addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(PlanChangeAddon)), graphql_name='addons')
|
|
8523
9629
|
billable_features = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(BillableFeature)), graphql_name='billableFeatures')
|
|
8524
9630
|
billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
|
|
8525
9631
|
change_type = sgqlc.types.Field(sgqlc.types.non_null(PlanChangeType), graphql_name='changeType')
|
|
8526
9632
|
plan_ref_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='planRefId')
|
|
8527
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')
|
|
8528
9635
|
|
|
8529
9636
|
|
|
8530
9637
|
class PlanCompatibleAddonChange(sgqlc.types.Type):
|
|
@@ -8666,7 +9773,7 @@ class PreparedPaymentMethodForm(sgqlc.types.Type):
|
|
|
8666
9773
|
|
|
8667
9774
|
class Price(sgqlc.types.Type):
|
|
8668
9775
|
__schema__ = schema
|
|
8669
|
-
__field_names__ = ('billing_cadence', 'billing_country_code', 'billing_id', 'billing_model', 'billing_period', 'block_size', 'created_at', 'crm_id', 'crm_link_url', 'environment_id', 'feature', 'feature_id', 'id', 'is_override_price', 'max_unit_quantity', 'min_unit_quantity', 'package', 'package_id', 'price', 'reset_period', 'reset_period_configuration', 'tiers', 'tiers_mode', 'used_in_subscriptions')
|
|
9776
|
+
__field_names__ = ('billing_cadence', 'billing_country_code', 'billing_id', 'billing_model', 'billing_period', 'block_size', 'created_at', 'credit_grant_cadence', 'credit_rate', 'crm_id', 'crm_link_url', 'custom_currency', 'environment_id', 'feature', 'feature_id', 'id', 'is_override_price', 'max_unit_quantity', 'min_unit_quantity', 'package', 'package_id', 'price', 'reset_period', 'reset_period_configuration', 'tiers', 'tiers_mode', 'top_up_custom_currency_id', 'used_in_subscriptions')
|
|
8670
9777
|
billing_cadence = sgqlc.types.Field(sgqlc.types.non_null(BillingCadence), graphql_name='billingCadence')
|
|
8671
9778
|
billing_country_code = sgqlc.types.Field(String, graphql_name='billingCountryCode')
|
|
8672
9779
|
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
@@ -8674,8 +9781,11 @@ class Price(sgqlc.types.Type):
|
|
|
8674
9781
|
billing_period = sgqlc.types.Field(sgqlc.types.non_null(BillingPeriod), graphql_name='billingPeriod')
|
|
8675
9782
|
block_size = sgqlc.types.Field(Float, graphql_name='blockSize')
|
|
8676
9783
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
9784
|
+
credit_grant_cadence = sgqlc.types.Field(CreditGrantCadence, graphql_name='creditGrantCadence')
|
|
9785
|
+
credit_rate = sgqlc.types.Field(CreditRate, graphql_name='creditRate')
|
|
8677
9786
|
crm_id = sgqlc.types.Field(String, graphql_name='crmId')
|
|
8678
9787
|
crm_link_url = sgqlc.types.Field(String, graphql_name='crmLinkUrl')
|
|
9788
|
+
custom_currency = sgqlc.types.Field(CustomCurrency, graphql_name='customCurrency')
|
|
8679
9789
|
environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
|
|
8680
9790
|
feature = sgqlc.types.Field(Feature, graphql_name='feature')
|
|
8681
9791
|
feature_id = sgqlc.types.Field(String, graphql_name='featureId')
|
|
@@ -8690,6 +9800,7 @@ class Price(sgqlc.types.Type):
|
|
|
8690
9800
|
reset_period_configuration = sgqlc.types.Field('ResetPeriodConfiguration', graphql_name='resetPeriodConfiguration')
|
|
8691
9801
|
tiers = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PriceTier')), graphql_name='tiers')
|
|
8692
9802
|
tiers_mode = sgqlc.types.Field(TiersMode, graphql_name='tiersMode')
|
|
9803
|
+
top_up_custom_currency_id = sgqlc.types.Field(UUID, graphql_name='topUpCustomCurrencyId')
|
|
8693
9804
|
used_in_subscriptions = sgqlc.types.Field(Boolean, graphql_name='usedInSubscriptions')
|
|
8694
9805
|
|
|
8695
9806
|
|
|
@@ -8719,7 +9830,7 @@ class PriceCountAggregate(sgqlc.types.Type):
|
|
|
8719
9830
|
|
|
8720
9831
|
class PriceDeleteResponse(sgqlc.types.Type):
|
|
8721
9832
|
__schema__ = schema
|
|
8722
|
-
__field_names__ = ('billing_cadence', 'billing_country_code', 'billing_id', 'billing_model', 'billing_period', 'block_size', 'created_at', 'crm_id', 'crm_link_url', 'environment_id', 'feature', 'feature_id', 'id', 'max_unit_quantity', 'min_unit_quantity', 'package_id', 'price', 'reset_period', 'reset_period_configuration', 'tiers', 'tiers_mode', 'used_in_subscriptions')
|
|
9833
|
+
__field_names__ = ('billing_cadence', 'billing_country_code', 'billing_id', 'billing_model', 'billing_period', 'block_size', 'created_at', 'credit_grant_cadence', 'credit_rate', 'crm_id', 'crm_link_url', 'custom_currency', 'environment_id', 'feature', 'feature_id', 'id', 'max_unit_quantity', 'min_unit_quantity', 'package_id', 'price', 'reset_period', 'reset_period_configuration', 'tiers', 'tiers_mode', 'top_up_custom_currency_id', 'used_in_subscriptions')
|
|
8723
9834
|
billing_cadence = sgqlc.types.Field(BillingCadence, graphql_name='billingCadence')
|
|
8724
9835
|
billing_country_code = sgqlc.types.Field(String, graphql_name='billingCountryCode')
|
|
8725
9836
|
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
@@ -8727,8 +9838,11 @@ class PriceDeleteResponse(sgqlc.types.Type):
|
|
|
8727
9838
|
billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
|
|
8728
9839
|
block_size = sgqlc.types.Field(Float, graphql_name='blockSize')
|
|
8729
9840
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
9841
|
+
credit_grant_cadence = sgqlc.types.Field(CreditGrantCadence, graphql_name='creditGrantCadence')
|
|
9842
|
+
credit_rate = sgqlc.types.Field(CreditRate, graphql_name='creditRate')
|
|
8730
9843
|
crm_id = sgqlc.types.Field(String, graphql_name='crmId')
|
|
8731
9844
|
crm_link_url = sgqlc.types.Field(String, graphql_name='crmLinkUrl')
|
|
9845
|
+
custom_currency = sgqlc.types.Field(CustomCurrency, graphql_name='customCurrency')
|
|
8732
9846
|
environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
|
|
8733
9847
|
feature = sgqlc.types.Field(Feature, graphql_name='feature')
|
|
8734
9848
|
feature_id = sgqlc.types.Field(String, graphql_name='featureId')
|
|
@@ -8741,6 +9855,7 @@ class PriceDeleteResponse(sgqlc.types.Type):
|
|
|
8741
9855
|
reset_period_configuration = sgqlc.types.Field('ResetPeriodConfiguration', graphql_name='resetPeriodConfiguration')
|
|
8742
9856
|
tiers = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PriceTier')), graphql_name='tiers')
|
|
8743
9857
|
tiers_mode = sgqlc.types.Field(TiersMode, graphql_name='tiersMode')
|
|
9858
|
+
top_up_custom_currency_id = sgqlc.types.Field(UUID, graphql_name='topUpCustomCurrencyId')
|
|
8744
9859
|
used_in_subscriptions = sgqlc.types.Field(Boolean, graphql_name='usedInSubscriptions')
|
|
8745
9860
|
|
|
8746
9861
|
|
|
@@ -8824,7 +9939,7 @@ class PricingTypeChange(sgqlc.types.Type):
|
|
|
8824
9939
|
|
|
8825
9940
|
class Product(sgqlc.types.Type):
|
|
8826
9941
|
__schema__ = schema
|
|
8827
|
-
__field_names__ = ('additional_meta_data', 'addons', 'auto_cancellation_rules', 'aws_marketplace_product_code', 'aws_marketplace_product_id', 'created_at', 'description', 'display_name', 'downgrade_plan', 'environment', 'environment_id', 'has_subscriptions', 'id', 'is_default_product', 'multiple_subscriptions', 'plans', 'product_settings', 'ref_id', 'subscription_start_plan', 'subscription_update_usage_reset_cutoff_rule', 'updated_at')
|
|
9942
|
+
__field_names__ = ('additional_meta_data', 'addons', 'auto_cancellation_rules', 'aws_marketplace_product_code', 'aws_marketplace_product_id', 'created_at', 'description', 'display_name', 'downgrade_plan', 'environment', 'environment_id', 'has_subscriptions', 'id', 'is_default_product', 'multiple_subscriptions', 'plans', 'product_settings', 'ref_id', 'status', 'subscription_start_plan', 'subscription_update_usage_reset_cutoff_rule', 'updated_at')
|
|
8828
9943
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
8829
9944
|
addons = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Addon))), graphql_name='addons')
|
|
8830
9945
|
auto_cancellation_rules = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(AutoCancellationRule))), graphql_name='autoCancellationRules')
|
|
@@ -8843,6 +9958,7 @@ class Product(sgqlc.types.Type):
|
|
|
8843
9958
|
plans = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Plan))), graphql_name='plans')
|
|
8844
9959
|
product_settings = sgqlc.types.Field(sgqlc.types.non_null('ProductSettings'), graphql_name='productSettings')
|
|
8845
9960
|
ref_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='refId')
|
|
9961
|
+
status = sgqlc.types.Field(sgqlc.types.non_null(ProductStatus), graphql_name='status')
|
|
8846
9962
|
subscription_start_plan = sgqlc.types.Field(Plan, graphql_name='subscriptionStartPlan')
|
|
8847
9963
|
subscription_update_usage_reset_cutoff_rule = sgqlc.types.Field(sgqlc.types.non_null('SubscriptionUpdateUsageResetCutoffRule'), graphql_name='subscriptionUpdateUsageResetCutoffRule')
|
|
8848
9964
|
updated_at = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='updatedAt')
|
|
@@ -8850,7 +9966,7 @@ class Product(sgqlc.types.Type):
|
|
|
8850
9966
|
|
|
8851
9967
|
class ProductAggregateGroupBy(sgqlc.types.Type):
|
|
8852
9968
|
__schema__ = schema
|
|
8853
|
-
__field_names__ = ('aws_marketplace_product_code', 'aws_marketplace_product_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'is_default_product', 'multiple_subscriptions', 'ref_id', 'updated_at')
|
|
9969
|
+
__field_names__ = ('aws_marketplace_product_code', 'aws_marketplace_product_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'is_default_product', 'multiple_subscriptions', 'ref_id', 'status', 'updated_at')
|
|
8854
9970
|
aws_marketplace_product_code = sgqlc.types.Field(String, graphql_name='awsMarketplaceProductCode')
|
|
8855
9971
|
aws_marketplace_product_id = sgqlc.types.Field(String, graphql_name='awsMarketplaceProductId')
|
|
8856
9972
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
@@ -8861,6 +9977,7 @@ class ProductAggregateGroupBy(sgqlc.types.Type):
|
|
|
8861
9977
|
is_default_product = sgqlc.types.Field(Boolean, graphql_name='isDefaultProduct')
|
|
8862
9978
|
multiple_subscriptions = sgqlc.types.Field(Boolean, graphql_name='multipleSubscriptions')
|
|
8863
9979
|
ref_id = sgqlc.types.Field(String, graphql_name='refId')
|
|
9980
|
+
status = sgqlc.types.Field(ProductStatus, graphql_name='status')
|
|
8864
9981
|
updated_at = sgqlc.types.Field(DateTime, graphql_name='updatedAt')
|
|
8865
9982
|
|
|
8866
9983
|
|
|
@@ -8880,7 +9997,7 @@ class ProductConnection(sgqlc.types.relay.Connection):
|
|
|
8880
9997
|
|
|
8881
9998
|
class ProductCountAggregate(sgqlc.types.Type):
|
|
8882
9999
|
__schema__ = schema
|
|
8883
|
-
__field_names__ = ('aws_marketplace_product_code', 'aws_marketplace_product_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'is_default_product', 'multiple_subscriptions', 'ref_id', 'updated_at')
|
|
10000
|
+
__field_names__ = ('aws_marketplace_product_code', 'aws_marketplace_product_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'is_default_product', 'multiple_subscriptions', 'ref_id', 'status', 'updated_at')
|
|
8884
10001
|
aws_marketplace_product_code = sgqlc.types.Field(Int, graphql_name='awsMarketplaceProductCode')
|
|
8885
10002
|
aws_marketplace_product_id = sgqlc.types.Field(Int, graphql_name='awsMarketplaceProductId')
|
|
8886
10003
|
created_at = sgqlc.types.Field(Int, graphql_name='createdAt')
|
|
@@ -8891,6 +10008,7 @@ class ProductCountAggregate(sgqlc.types.Type):
|
|
|
8891
10008
|
is_default_product = sgqlc.types.Field(Int, graphql_name='isDefaultProduct')
|
|
8892
10009
|
multiple_subscriptions = sgqlc.types.Field(Int, graphql_name='multipleSubscriptions')
|
|
8893
10010
|
ref_id = sgqlc.types.Field(Int, graphql_name='refId')
|
|
10011
|
+
status = sgqlc.types.Field(Int, graphql_name='status')
|
|
8894
10012
|
updated_at = sgqlc.types.Field(Int, graphql_name='updatedAt')
|
|
8895
10013
|
|
|
8896
10014
|
|
|
@@ -8923,7 +10041,7 @@ class ProductEdge(sgqlc.types.Type):
|
|
|
8923
10041
|
|
|
8924
10042
|
class ProductMaxAggregate(sgqlc.types.Type):
|
|
8925
10043
|
__schema__ = schema
|
|
8926
|
-
__field_names__ = ('aws_marketplace_product_code', 'aws_marketplace_product_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'ref_id', 'updated_at')
|
|
10044
|
+
__field_names__ = ('aws_marketplace_product_code', 'aws_marketplace_product_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'ref_id', 'status', 'updated_at')
|
|
8927
10045
|
aws_marketplace_product_code = sgqlc.types.Field(String, graphql_name='awsMarketplaceProductCode')
|
|
8928
10046
|
aws_marketplace_product_id = sgqlc.types.Field(String, graphql_name='awsMarketplaceProductId')
|
|
8929
10047
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
@@ -8932,12 +10050,13 @@ class ProductMaxAggregate(sgqlc.types.Type):
|
|
|
8932
10050
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
8933
10051
|
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
8934
10052
|
ref_id = sgqlc.types.Field(String, graphql_name='refId')
|
|
10053
|
+
status = sgqlc.types.Field(ProductStatus, graphql_name='status')
|
|
8935
10054
|
updated_at = sgqlc.types.Field(DateTime, graphql_name='updatedAt')
|
|
8936
10055
|
|
|
8937
10056
|
|
|
8938
10057
|
class ProductMinAggregate(sgqlc.types.Type):
|
|
8939
10058
|
__schema__ = schema
|
|
8940
|
-
__field_names__ = ('aws_marketplace_product_code', 'aws_marketplace_product_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'ref_id', 'updated_at')
|
|
10059
|
+
__field_names__ = ('aws_marketplace_product_code', 'aws_marketplace_product_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'ref_id', 'status', 'updated_at')
|
|
8941
10060
|
aws_marketplace_product_code = sgqlc.types.Field(String, graphql_name='awsMarketplaceProductCode')
|
|
8942
10061
|
aws_marketplace_product_id = sgqlc.types.Field(String, graphql_name='awsMarketplaceProductId')
|
|
8943
10062
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
@@ -8946,6 +10065,7 @@ class ProductMinAggregate(sgqlc.types.Type):
|
|
|
8946
10065
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
8947
10066
|
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
8948
10067
|
ref_id = sgqlc.types.Field(String, graphql_name='refId')
|
|
10068
|
+
status = sgqlc.types.Field(ProductStatus, graphql_name='status')
|
|
8949
10069
|
updated_at = sgqlc.types.Field(DateTime, graphql_name='updatedAt')
|
|
8950
10070
|
|
|
8951
10071
|
|
|
@@ -9006,7 +10126,7 @@ class PromotionCodeNotFound(sgqlc.types.Type):
|
|
|
9006
10126
|
|
|
9007
10127
|
class PromotionalEntitlement(sgqlc.types.Type):
|
|
9008
10128
|
__schema__ = schema
|
|
9009
|
-
__field_names__ = ('created_at', 'customer', 'description', 'end_date', 'enum_values', 'environment_id', 'feature', 'feature_id', 'has_soft_limit', 'has_unlimited_usage', 'id', 'is_visible', 'meter', 'period', 'reset_period', 'reset_period_configuration', 'start_date', 'status', 'unlimited', 'updated_at', 'usage_limit')
|
|
10129
|
+
__field_names__ = ('created_at', 'customer', 'description', 'end_date', 'enum_values', 'environment_id', 'feature', 'feature_group_ids', 'feature_groups', 'feature_id', 'has_soft_limit', 'has_unlimited_usage', 'id', 'is_visible', 'meter', 'period', 'reset_period', 'reset_period_configuration', 'start_date', 'status', 'unlimited', 'updated_at', 'usage_limit')
|
|
9010
10130
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
9011
10131
|
customer = sgqlc.types.Field(sgqlc.types.non_null(Customer), graphql_name='customer')
|
|
9012
10132
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
@@ -9014,6 +10134,8 @@ class PromotionalEntitlement(sgqlc.types.Type):
|
|
|
9014
10134
|
enum_values = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='enumValues')
|
|
9015
10135
|
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
9016
10136
|
feature = sgqlc.types.Field(sgqlc.types.non_null(Feature), graphql_name='feature')
|
|
10137
|
+
feature_group_ids = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='featureGroupIds')
|
|
10138
|
+
feature_groups = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(FeatureGroup)), graphql_name='featureGroups')
|
|
9017
10139
|
feature_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='featureId')
|
|
9018
10140
|
has_soft_limit = sgqlc.types.Field(Boolean, graphql_name='hasSoftLimit')
|
|
9019
10141
|
has_unlimited_usage = sgqlc.types.Field(Boolean, graphql_name='hasUnlimitedUsage')
|
|
@@ -9060,12 +10182,14 @@ class PromotionalEntitlementCountAggregate(sgqlc.types.Type):
|
|
|
9060
10182
|
|
|
9061
10183
|
class PromotionalEntitlementDeleteResponse(sgqlc.types.Type):
|
|
9062
10184
|
__schema__ = schema
|
|
9063
|
-
__field_names__ = ('created_at', 'description', 'end_date', 'enum_values', 'environment_id', 'feature_id', 'has_soft_limit', 'has_unlimited_usage', 'id', 'is_visible', 'period', 'reset_period', 'reset_period_configuration', 'start_date', 'status', 'unlimited', 'updated_at', 'usage_limit')
|
|
10185
|
+
__field_names__ = ('created_at', 'description', 'end_date', 'enum_values', 'environment_id', 'feature_group_ids', 'feature_groups', 'feature_id', 'has_soft_limit', 'has_unlimited_usage', 'id', 'is_visible', 'period', 'reset_period', 'reset_period_configuration', 'start_date', 'status', 'unlimited', 'updated_at', 'usage_limit')
|
|
9064
10186
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
9065
10187
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
9066
10188
|
end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
|
|
9067
10189
|
enum_values = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='enumValues')
|
|
9068
10190
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
10191
|
+
feature_group_ids = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='featureGroupIds')
|
|
10192
|
+
feature_groups = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(FeatureGroup)), graphql_name='featureGroups')
|
|
9069
10193
|
feature_id = sgqlc.types.Field(UUID, graphql_name='featureId')
|
|
9070
10194
|
has_soft_limit = sgqlc.types.Field(Boolean, graphql_name='hasSoftLimit')
|
|
9071
10195
|
has_unlimited_usage = sgqlc.types.Field(Boolean, graphql_name='hasUnlimitedUsage')
|
|
@@ -9138,7 +10262,7 @@ class PublishPackageResult(sgqlc.types.Type):
|
|
|
9138
10262
|
|
|
9139
10263
|
class Query(sgqlc.types.Type):
|
|
9140
10264
|
__schema__ = schema
|
|
9141
|
-
__field_names__ = ('addon_associated_entities', 'addons', 'aggregated_events_by_customer', 'cached_entitlements', 'checkout_state', 'coupon', 'coupons', 'credit_balance_summary', 'credit_grants', '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', '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_aws_external_id', 'get_customer_by_ref_id', 'get_experiment_stats', 'get_package_group', 'get_paywall', 'get_plan_by_ref_id', 'get_subscription', 'hook', 'hooks', 'import_integration_tasks', 'integrations', 'list_aws_product_dimensions', 'list_aws_products', 'members', 'mock_paywall', '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')
|
|
9142
10266
|
addon_associated_entities = sgqlc.types.Field(sgqlc.types.non_null(AddonAssociatedEntities), graphql_name='addonAssociatedEntities', args=sgqlc.types.ArgDict((
|
|
9143
10267
|
('input', sgqlc.types.Arg(sgqlc.types.non_null(AddonAssociatedEntitiesInput), graphql_name='input', default=None)),
|
|
9144
10268
|
))
|
|
@@ -9151,6 +10275,10 @@ class Query(sgqlc.types.Type):
|
|
|
9151
10275
|
)
|
|
9152
10276
|
aggregated_events_by_customer = sgqlc.types.Field(sgqlc.types.non_null(AggregatedEventsByCustomer), graphql_name='aggregatedEventsByCustomer', args=sgqlc.types.ArgDict((
|
|
9153
10277
|
('input', sgqlc.types.Arg(sgqlc.types.non_null(AggregatedEventsByCustomerInput), graphql_name='input', default=None)),
|
|
10278
|
+
))
|
|
10279
|
+
)
|
|
10280
|
+
billing_products = sgqlc.types.Field(sgqlc.types.non_null(BillingProductsResult), graphql_name='billingProducts', args=sgqlc.types.ArgDict((
|
|
10281
|
+
('input', sgqlc.types.Arg(sgqlc.types.non_null(BillingProductsInput), graphql_name='input', default=None)),
|
|
9154
10282
|
))
|
|
9155
10283
|
)
|
|
9156
10284
|
cached_entitlements = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Entitlement))), graphql_name='cachedEntitlements', args=sgqlc.types.ArgDict((
|
|
@@ -9171,12 +10299,20 @@ class Query(sgqlc.types.Type):
|
|
|
9171
10299
|
('sorting', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(CouponSort)), graphql_name='sorting', default=[{'direction': 'DESC', 'field': 'createdAt'}])),
|
|
9172
10300
|
))
|
|
9173
10301
|
)
|
|
9174
|
-
credit_balance_summary = sgqlc.types.Field(sgqlc.types.non_null(
|
|
10302
|
+
credit_balance_summary = sgqlc.types.Field(sgqlc.types.non_null(CreditBalanceSummary), graphql_name='creditBalanceSummary', args=sgqlc.types.ArgDict((
|
|
9175
10303
|
('input', sgqlc.types.Arg(sgqlc.types.non_null(CreditBalanceSummaryInput), graphql_name='input', default=None)),
|
|
9176
10304
|
))
|
|
9177
10305
|
)
|
|
9178
|
-
credit_grants = sgqlc.types.Field(sgqlc.types.non_null(
|
|
10306
|
+
credit_grants = sgqlc.types.Field(sgqlc.types.non_null(CreditGrantConnection), graphql_name='creditGrants', args=sgqlc.types.ArgDict((
|
|
9179
10307
|
('input', sgqlc.types.Arg(sgqlc.types.non_null(GetCreditGrantsInput), graphql_name='input', default=None)),
|
|
10308
|
+
))
|
|
10309
|
+
)
|
|
10310
|
+
credit_usage = sgqlc.types.Field(sgqlc.types.non_null(CreditUsage), graphql_name='creditUsage', args=sgqlc.types.ArgDict((
|
|
10311
|
+
('input', sgqlc.types.Arg(sgqlc.types.non_null(CreditUsageInput), graphql_name='input', default=None)),
|
|
10312
|
+
))
|
|
10313
|
+
)
|
|
10314
|
+
credits_ledger = sgqlc.types.Field(sgqlc.types.non_null(CreditLedgerConnection), graphql_name='creditsLedger', args=sgqlc.types.ArgDict((
|
|
10315
|
+
('input', sgqlc.types.Arg(sgqlc.types.non_null(CreditLedgerInput), graphql_name='input', default=None)),
|
|
9180
10316
|
))
|
|
9181
10317
|
)
|
|
9182
10318
|
current_environment = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='currentEnvironment')
|
|
@@ -9225,6 +10361,10 @@ class Query(sgqlc.types.Type):
|
|
|
9225
10361
|
)
|
|
9226
10362
|
entitlements = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(EntitlementWithSummary))), graphql_name='entitlements', args=sgqlc.types.ArgDict((
|
|
9227
10363
|
('query', sgqlc.types.Arg(sgqlc.types.non_null(FetchEntitlementsQuery), graphql_name='query', default=None)),
|
|
10364
|
+
))
|
|
10365
|
+
)
|
|
10366
|
+
entitlements_state = sgqlc.types.Field(sgqlc.types.non_null(EntitlementsState), graphql_name='entitlementsState', args=sgqlc.types.ArgDict((
|
|
10367
|
+
('query', sgqlc.types.Arg(sgqlc.types.non_null(FetchEntitlementsQuery), graphql_name='query', default=None)),
|
|
9228
10368
|
))
|
|
9229
10369
|
)
|
|
9230
10370
|
environments = sgqlc.types.Field(sgqlc.types.non_null(EnvironmentConnection), graphql_name='environments', args=sgqlc.types.ArgDict((
|
|
@@ -9234,7 +10374,7 @@ class Query(sgqlc.types.Type):
|
|
|
9234
10374
|
))
|
|
9235
10375
|
)
|
|
9236
10376
|
event_logs = sgqlc.types.Field(sgqlc.types.non_null(EventLogConnection), graphql_name='eventLogs', args=sgqlc.types.ArgDict((
|
|
9237
|
-
('filter', sgqlc.types.Arg(
|
|
10377
|
+
('filter', sgqlc.types.Arg(EventLogFilter, graphql_name='filter', default={})),
|
|
9238
10378
|
('paging', sgqlc.types.Arg(CursorPaging, graphql_name='paging', default={'first': 10})),
|
|
9239
10379
|
('sorting', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(EventLogSort)), graphql_name='sorting', default=[{'direction': 'DESC', 'field': 'createdAt'}])),
|
|
9240
10380
|
))
|
|
@@ -9288,6 +10428,10 @@ class Query(sgqlc.types.Type):
|
|
|
9288
10428
|
)
|
|
9289
10429
|
get_auth0_applications = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Auth0ApplicationDTO))), graphql_name='getAuth0Applications', args=sgqlc.types.ArgDict((
|
|
9290
10430
|
('input', sgqlc.types.Arg(sgqlc.types.non_null(GetAuth0ApplicationsInput), graphql_name='input', default=None)),
|
|
10431
|
+
))
|
|
10432
|
+
)
|
|
10433
|
+
get_auto_recharge_settings = sgqlc.types.Field(sgqlc.types.non_null(AutoRechargeSettingsDTO), graphql_name='getAutoRechargeSettings', args=sgqlc.types.ArgDict((
|
|
10434
|
+
('input', sgqlc.types.Arg(sgqlc.types.non_null(GetAutoRechargeSettingsInput), graphql_name='input', default=None)),
|
|
9291
10435
|
))
|
|
9292
10436
|
)
|
|
9293
10437
|
get_aws_external_id = sgqlc.types.Field(sgqlc.types.non_null(GetAwsExternalIdResult), graphql_name='getAwsExternalId')
|
|
@@ -9297,6 +10441,10 @@ class Query(sgqlc.types.Type):
|
|
|
9297
10441
|
)
|
|
9298
10442
|
get_experiment_stats = sgqlc.types.Field(sgqlc.types.non_null(ExperimentStats), graphql_name='getExperimentStats', args=sgqlc.types.ArgDict((
|
|
9299
10443
|
('query', sgqlc.types.Arg(sgqlc.types.non_null(ExperimentStatsQuery), graphql_name='query', default=None)),
|
|
10444
|
+
))
|
|
10445
|
+
)
|
|
10446
|
+
get_offer = sgqlc.types.Field(sgqlc.types.non_null(Offer), graphql_name='getOffer', args=sgqlc.types.ArgDict((
|
|
10447
|
+
('input', sgqlc.types.Arg(sgqlc.types.non_null(GetOfferInput), graphql_name='input', default=None)),
|
|
9300
10448
|
))
|
|
9301
10449
|
)
|
|
9302
10450
|
get_package_group = sgqlc.types.Field(sgqlc.types.non_null(PackageGroup), graphql_name='getPackageGroup', args=sgqlc.types.ArgDict((
|
|
@@ -9335,6 +10483,18 @@ class Query(sgqlc.types.Type):
|
|
|
9335
10483
|
('filter', sgqlc.types.Arg(IntegrationFilter, graphql_name='filter', default={})),
|
|
9336
10484
|
('paging', sgqlc.types.Arg(CursorPaging, graphql_name='paging', default={'first': 10})),
|
|
9337
10485
|
('sorting', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(IntegrationSort)), graphql_name='sorting', default=[{'direction': 'DESC', 'field': 'createdAt'}])),
|
|
10486
|
+
))
|
|
10487
|
+
)
|
|
10488
|
+
is_account_email_domain_taken = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='isAccountEmailDomainTaken', args=sgqlc.types.ArgDict((
|
|
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)),
|
|
9338
10498
|
))
|
|
9339
10499
|
)
|
|
9340
10500
|
list_aws_product_dimensions = sgqlc.types.Field(sgqlc.types.non_null(ListAwsProductDimensionsDTO), graphql_name='listAwsProductDimensions', args=sgqlc.types.ArgDict((
|
|
@@ -9353,6 +10513,12 @@ class Query(sgqlc.types.Type):
|
|
|
9353
10513
|
)
|
|
9354
10514
|
mock_paywall = sgqlc.types.Field(sgqlc.types.non_null(MockPaywall), graphql_name='mockPaywall', args=sgqlc.types.ArgDict((
|
|
9355
10515
|
('input', sgqlc.types.Arg(sgqlc.types.non_null(GetPaywallInput), graphql_name='input', default=None)),
|
|
10516
|
+
))
|
|
10517
|
+
)
|
|
10518
|
+
offers = sgqlc.types.Field(sgqlc.types.non_null(OfferConnection), graphql_name='offers', args=sgqlc.types.ArgDict((
|
|
10519
|
+
('filter', sgqlc.types.Arg(OfferFilter, graphql_name='filter', default={})),
|
|
10520
|
+
('paging', sgqlc.types.Arg(CursorPaging, graphql_name='paging', default={'first': 10})),
|
|
10521
|
+
('sorting', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(OfferSort)), graphql_name='sorting', default=[{'direction': 'DESC', 'field': 'createdAt'}])),
|
|
9356
10522
|
))
|
|
9357
10523
|
)
|
|
9358
10524
|
package_entitlements = sgqlc.types.Field(sgqlc.types.non_null(PackageEntitlementConnection), graphql_name='packageEntitlements', args=sgqlc.types.ArgDict((
|
|
@@ -9475,6 +10641,20 @@ class RecalculateEntitlementsResult(sgqlc.types.Type):
|
|
|
9475
10641
|
task_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='taskId')
|
|
9476
10642
|
|
|
9477
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
|
+
|
|
9478
10658
|
class ResyncIntegrationResult(sgqlc.types.Type):
|
|
9479
10659
|
__schema__ = schema
|
|
9480
10660
|
__field_names__ = ('integration_id', 'task_id')
|
|
@@ -9490,18 +10670,31 @@ class SalesforceCredentials(sgqlc.types.Type):
|
|
|
9490
10670
|
|
|
9491
10671
|
class SdkConfiguration(sgqlc.types.Type):
|
|
9492
10672
|
__schema__ = schema
|
|
9493
|
-
__field_names__ = ('is_widget_watermark_enabled', 'sentry_dsn')
|
|
10673
|
+
__field_names__ = ('is_widget_watermark_enabled', 'sentry_dsn', 'show_watermark')
|
|
9494
10674
|
is_widget_watermark_enabled = sgqlc.types.Field(Boolean, graphql_name='isWidgetWatermarkEnabled')
|
|
9495
10675
|
sentry_dsn = sgqlc.types.Field(String, graphql_name='sentryDsn')
|
|
10676
|
+
show_watermark = sgqlc.types.Field(Boolean, graphql_name='showWatermark')
|
|
10677
|
+
|
|
10678
|
+
|
|
10679
|
+
class SlimCustomCurrency(sgqlc.types.Type):
|
|
10680
|
+
__schema__ = schema
|
|
10681
|
+
__field_names__ = ('currency_id', 'display_name', 'symbol', 'units')
|
|
10682
|
+
currency_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='currencyId')
|
|
10683
|
+
display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='displayName')
|
|
10684
|
+
symbol = sgqlc.types.Field(String, graphql_name='symbol')
|
|
10685
|
+
units = sgqlc.types.Field('Units', graphql_name='units')
|
|
9496
10686
|
|
|
9497
10687
|
|
|
9498
10688
|
class SnowflakeCredentials(sgqlc.types.Type):
|
|
9499
10689
|
__schema__ = schema
|
|
9500
|
-
__field_names__ = ('airbyte_connection_id', 'airbyte_destination_id', 'database', 'host', 'role', 'schema_name', 'username', 'warehouse')
|
|
10690
|
+
__field_names__ = ('airbyte_connection_id', 'airbyte_destination_id', 'database', 'host', 'passphrase', 'password', 'private_key', 'role', 'schema_name', 'username', 'warehouse')
|
|
9501
10691
|
airbyte_connection_id = sgqlc.types.Field(String, graphql_name='airbyteConnectionId')
|
|
9502
10692
|
airbyte_destination_id = sgqlc.types.Field(String, graphql_name='airbyteDestinationId')
|
|
9503
10693
|
database = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='database')
|
|
9504
10694
|
host = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='host')
|
|
10695
|
+
passphrase = sgqlc.types.Field(String, graphql_name='passphrase')
|
|
10696
|
+
password = sgqlc.types.Field(String, graphql_name='password')
|
|
10697
|
+
private_key = sgqlc.types.Field(String, graphql_name='privateKey')
|
|
9505
10698
|
role = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='role')
|
|
9506
10699
|
schema_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='schemaName')
|
|
9507
10700
|
username = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='username')
|
|
@@ -9516,6 +10709,14 @@ class StringChangeDTO(sgqlc.types.Type):
|
|
|
9516
10709
|
change_type = sgqlc.types.Field(ChangeType, graphql_name='changeType')
|
|
9517
10710
|
|
|
9518
10711
|
|
|
10712
|
+
class StripeCheckoutCredentials(sgqlc.types.Type):
|
|
10713
|
+
__schema__ = schema
|
|
10714
|
+
__field_names__ = ('account_id', 'public_key', 'setup_secret')
|
|
10715
|
+
account_id = sgqlc.types.Field(String, graphql_name='accountId')
|
|
10716
|
+
public_key = sgqlc.types.Field(String, graphql_name='publicKey')
|
|
10717
|
+
setup_secret = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='setupSecret')
|
|
10718
|
+
|
|
10719
|
+
|
|
9519
10720
|
class StripeCredentials(sgqlc.types.Type):
|
|
9520
10721
|
__schema__ = schema
|
|
9521
10722
|
__field_names__ = ('account_display_name', 'account_id', 'is_tax_enabled', 'is_test_mode')
|
|
@@ -9605,7 +10806,8 @@ class StripeSubscriptionSearchResult(sgqlc.types.Type):
|
|
|
9605
10806
|
|
|
9606
10807
|
class Subscription(sgqlc.types.Type):
|
|
9607
10808
|
__schema__ = schema
|
|
9608
|
-
__field_names__ = ('entitlements_updated', 'package_published', 'usage_updated')
|
|
10809
|
+
__field_names__ = ('credit_balance_updated', 'entitlements_updated', 'package_published', 'usage_updated')
|
|
10810
|
+
credit_balance_updated = sgqlc.types.Field(sgqlc.types.non_null(CreditBalanceUpdated), graphql_name='creditBalanceUpdated')
|
|
9609
10811
|
entitlements_updated = sgqlc.types.Field(sgqlc.types.non_null(EntitlementsUpdated), graphql_name='entitlementsUpdated')
|
|
9610
10812
|
package_published = sgqlc.types.Field(sgqlc.types.non_null(PackagePublished), graphql_name='packagePublished')
|
|
9611
10813
|
usage_updated = sgqlc.types.Field(sgqlc.types.non_null('UsageUpdated'), graphql_name='usageUpdated')
|
|
@@ -9793,7 +10995,7 @@ class SubscriptionFutureUpdate(sgqlc.types.Type):
|
|
|
9793
10995
|
|
|
9794
10996
|
class SubscriptionInvoice(sgqlc.types.Type):
|
|
9795
10997
|
__schema__ = schema
|
|
9796
|
-
__field_names__ = ('amount_due', 'applied_balance', 'attempt_count', 'billing_id', 'billing_reason', 'created_at', 'currency', 'ending_balance', 'error_message', 'lines', 'payment_secret', 'payment_url', 'pdf_url', 'requires_action', 'starting_balance', 'status', 'sub_total', 'sub_total_excluding_tax', 'tax', 'total', 'total_excluding_tax', 'updated_at')
|
|
10998
|
+
__field_names__ = ('amount_due', 'applied_balance', 'attempt_count', 'billing_id', 'billing_reason', 'created_at', 'currency', 'due_date', 'ending_balance', 'error_message', 'lines', 'payment_secret', 'payment_url', 'pdf_url', 'requires_action', 'starting_balance', 'status', 'sub_total', 'sub_total_excluding_tax', 'tax', 'total', 'total_excluding_tax', 'updated_at')
|
|
9797
10999
|
amount_due = sgqlc.types.Field(Float, graphql_name='amountDue')
|
|
9798
11000
|
applied_balance = sgqlc.types.Field(Float, graphql_name='appliedBalance')
|
|
9799
11001
|
attempt_count = sgqlc.types.Field(Float, graphql_name='attemptCount')
|
|
@@ -9801,6 +11003,7 @@ class SubscriptionInvoice(sgqlc.types.Type):
|
|
|
9801
11003
|
billing_reason = sgqlc.types.Field(SubscriptionInvoiceBillingReason, graphql_name='billingReason')
|
|
9802
11004
|
created_at = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='createdAt')
|
|
9803
11005
|
currency = sgqlc.types.Field(String, graphql_name='currency')
|
|
11006
|
+
due_date = sgqlc.types.Field(DateTime, graphql_name='dueDate')
|
|
9804
11007
|
ending_balance = sgqlc.types.Field(Float, graphql_name='endingBalance')
|
|
9805
11008
|
error_message = sgqlc.types.Field(String, graphql_name='errorMessage')
|
|
9806
11009
|
lines = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(InvoiceLine)), graphql_name='lines')
|
|
@@ -10080,9 +11283,10 @@ class SubscriptionPreviewV2(sgqlc.types.Type):
|
|
|
10080
11283
|
|
|
10081
11284
|
class SubscriptionPrice(sgqlc.types.Type):
|
|
10082
11285
|
__schema__ = schema
|
|
10083
|
-
__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')
|
|
10084
11287
|
billing_model = sgqlc.types.Field(BillingModel, graphql_name='billingModel')
|
|
10085
11288
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
11289
|
+
credits_quantity = sgqlc.types.Field(Float, graphql_name='creditsQuantity')
|
|
10086
11290
|
feature_id = sgqlc.types.Field(String, graphql_name='featureId')
|
|
10087
11291
|
has_soft_limit = sgqlc.types.Field(Boolean, graphql_name='hasSoftLimit')
|
|
10088
11292
|
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
@@ -10247,13 +11451,21 @@ class SubscriptionQuery(sgqlc.types.Type):
|
|
|
10247
11451
|
|
|
10248
11452
|
class SubscriptionQueryAggregateGroupBy(sgqlc.types.Type):
|
|
10249
11453
|
__schema__ = schema
|
|
10250
|
-
__field_names__ = ('created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'status')
|
|
11454
|
+
__field_names__ = ('billing_id', 'cancellation_date', 'created_at', 'customer_id', 'end_date', 'environment_id', 'payment_collection', 'pricing_type', 'product_id', 'resource_id', 'salesforce_id', 'start_date', 'status', 'subscription_id')
|
|
11455
|
+
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
11456
|
+
cancellation_date = sgqlc.types.Field(DateTime, graphql_name='cancellationDate')
|
|
10251
11457
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
10252
11458
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
11459
|
+
end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
|
|
10253
11460
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
11461
|
+
payment_collection = sgqlc.types.Field(PaymentCollection, graphql_name='paymentCollection')
|
|
11462
|
+
pricing_type = sgqlc.types.Field(PricingType, graphql_name='pricingType')
|
|
10254
11463
|
product_id = sgqlc.types.Field(String, graphql_name='productId')
|
|
10255
11464
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
11465
|
+
salesforce_id = sgqlc.types.Field(String, graphql_name='salesforceId')
|
|
11466
|
+
start_date = sgqlc.types.Field(DateTime, graphql_name='startDate')
|
|
10256
11467
|
status = sgqlc.types.Field(SubscriptionStatus, graphql_name='status')
|
|
11468
|
+
subscription_id = sgqlc.types.Field(String, graphql_name='subscriptionId')
|
|
10257
11469
|
|
|
10258
11470
|
|
|
10259
11471
|
class SubscriptionQueryConnection(sgqlc.types.relay.Connection):
|
|
@@ -10266,13 +11478,21 @@ class SubscriptionQueryConnection(sgqlc.types.relay.Connection):
|
|
|
10266
11478
|
|
|
10267
11479
|
class SubscriptionQueryCountAggregate(sgqlc.types.Type):
|
|
10268
11480
|
__schema__ = schema
|
|
10269
|
-
__field_names__ = ('created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'status')
|
|
11481
|
+
__field_names__ = ('billing_id', 'cancellation_date', 'created_at', 'customer_id', 'end_date', 'environment_id', 'payment_collection', 'pricing_type', 'product_id', 'resource_id', 'salesforce_id', 'start_date', 'status', 'subscription_id')
|
|
11482
|
+
billing_id = sgqlc.types.Field(Int, graphql_name='billingId')
|
|
11483
|
+
cancellation_date = sgqlc.types.Field(Int, graphql_name='cancellationDate')
|
|
10270
11484
|
created_at = sgqlc.types.Field(Int, graphql_name='createdAt')
|
|
10271
11485
|
customer_id = sgqlc.types.Field(Int, graphql_name='customerId')
|
|
11486
|
+
end_date = sgqlc.types.Field(Int, graphql_name='endDate')
|
|
10272
11487
|
environment_id = sgqlc.types.Field(Int, graphql_name='environmentId')
|
|
11488
|
+
payment_collection = sgqlc.types.Field(Int, graphql_name='paymentCollection')
|
|
11489
|
+
pricing_type = sgqlc.types.Field(Int, graphql_name='pricingType')
|
|
10273
11490
|
product_id = sgqlc.types.Field(Int, graphql_name='productId')
|
|
10274
11491
|
resource_id = sgqlc.types.Field(Int, graphql_name='resourceId')
|
|
11492
|
+
salesforce_id = sgqlc.types.Field(Int, graphql_name='salesforceId')
|
|
11493
|
+
start_date = sgqlc.types.Field(Int, graphql_name='startDate')
|
|
10275
11494
|
status = sgqlc.types.Field(Int, graphql_name='status')
|
|
11495
|
+
subscription_id = sgqlc.types.Field(Int, graphql_name='subscriptionId')
|
|
10276
11496
|
|
|
10277
11497
|
|
|
10278
11498
|
class SubscriptionQueryEdge(sgqlc.types.Type):
|
|
@@ -10284,24 +11504,40 @@ class SubscriptionQueryEdge(sgqlc.types.Type):
|
|
|
10284
11504
|
|
|
10285
11505
|
class SubscriptionQueryMaxAggregate(sgqlc.types.Type):
|
|
10286
11506
|
__schema__ = schema
|
|
10287
|
-
__field_names__ = ('created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'status')
|
|
11507
|
+
__field_names__ = ('billing_id', 'cancellation_date', 'created_at', 'customer_id', 'end_date', 'environment_id', 'payment_collection', 'pricing_type', 'product_id', 'resource_id', 'salesforce_id', 'start_date', 'status', 'subscription_id')
|
|
11508
|
+
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
11509
|
+
cancellation_date = sgqlc.types.Field(DateTime, graphql_name='cancellationDate')
|
|
10288
11510
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
10289
11511
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
11512
|
+
end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
|
|
10290
11513
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
11514
|
+
payment_collection = sgqlc.types.Field(PaymentCollection, graphql_name='paymentCollection')
|
|
11515
|
+
pricing_type = sgqlc.types.Field(PricingType, graphql_name='pricingType')
|
|
10291
11516
|
product_id = sgqlc.types.Field(String, graphql_name='productId')
|
|
10292
11517
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
11518
|
+
salesforce_id = sgqlc.types.Field(String, graphql_name='salesforceId')
|
|
11519
|
+
start_date = sgqlc.types.Field(DateTime, graphql_name='startDate')
|
|
10293
11520
|
status = sgqlc.types.Field(SubscriptionStatus, graphql_name='status')
|
|
11521
|
+
subscription_id = sgqlc.types.Field(String, graphql_name='subscriptionId')
|
|
10294
11522
|
|
|
10295
11523
|
|
|
10296
11524
|
class SubscriptionQueryMinAggregate(sgqlc.types.Type):
|
|
10297
11525
|
__schema__ = schema
|
|
10298
|
-
__field_names__ = ('created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'status')
|
|
11526
|
+
__field_names__ = ('billing_id', 'cancellation_date', 'created_at', 'customer_id', 'end_date', 'environment_id', 'payment_collection', 'pricing_type', 'product_id', 'resource_id', 'salesforce_id', 'start_date', 'status', 'subscription_id')
|
|
11527
|
+
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
11528
|
+
cancellation_date = sgqlc.types.Field(DateTime, graphql_name='cancellationDate')
|
|
10299
11529
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
10300
11530
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
11531
|
+
end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
|
|
10301
11532
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
11533
|
+
payment_collection = sgqlc.types.Field(PaymentCollection, graphql_name='paymentCollection')
|
|
11534
|
+
pricing_type = sgqlc.types.Field(PricingType, graphql_name='pricingType')
|
|
10302
11535
|
product_id = sgqlc.types.Field(String, graphql_name='productId')
|
|
10303
11536
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
11537
|
+
salesforce_id = sgqlc.types.Field(String, graphql_name='salesforceId')
|
|
11538
|
+
start_date = sgqlc.types.Field(DateTime, graphql_name='startDate')
|
|
10304
11539
|
status = sgqlc.types.Field(SubscriptionStatus, graphql_name='status')
|
|
11540
|
+
subscription_id = sgqlc.types.Field(String, graphql_name='subscriptionId')
|
|
10305
11541
|
|
|
10306
11542
|
|
|
10307
11543
|
class SubscriptionScheduledUpdate(sgqlc.types.Type):
|
|
@@ -10432,6 +11668,13 @@ class UnitTransformation(sgqlc.types.Type):
|
|
|
10432
11668
|
round = sgqlc.types.Field(sgqlc.types.non_null(UnitTransformationRound), graphql_name='round')
|
|
10433
11669
|
|
|
10434
11670
|
|
|
11671
|
+
class Units(sgqlc.types.Type):
|
|
11672
|
+
__schema__ = schema
|
|
11673
|
+
__field_names__ = ('plural', 'singular')
|
|
11674
|
+
plural = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='plural')
|
|
11675
|
+
singular = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='singular')
|
|
11676
|
+
|
|
11677
|
+
|
|
10435
11678
|
class UnsupportedFeatureTypeError(sgqlc.types.Type):
|
|
10436
11679
|
__schema__ = schema
|
|
10437
11680
|
__field_names__ = ('code', 'feature_type')
|
|
@@ -10688,14 +11931,24 @@ class YearlyResetPeriodConfig(sgqlc.types.Type):
|
|
|
10688
11931
|
yearly_according_to = sgqlc.types.Field(YearlyAccordingTo, graphql_name='yearlyAccordingTo')
|
|
10689
11932
|
|
|
10690
11933
|
|
|
11934
|
+
class ZuoraCheckoutCredentials(sgqlc.types.Type):
|
|
11935
|
+
__schema__ = schema
|
|
11936
|
+
__field_names__ = ('publishable_key',)
|
|
11937
|
+
publishable_key = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='publishableKey')
|
|
11938
|
+
|
|
11939
|
+
|
|
10691
11940
|
class ZuoraCredentials(sgqlc.types.Type):
|
|
10692
11941
|
__schema__ = schema
|
|
10693
|
-
__field_names__ = ('base_url', 'client_id', 'client_secret', 'payment_gateway_id', 'payment_page_id', 'stripe_publishable_key', 'stripe_secret_key', 'webhook_secret')
|
|
11942
|
+
__field_names__ = ('base_url', 'client_id', 'client_secret', 'deferred_revenue_account', 'invoice_settlement_enabled', 'payment_gateway_id', 'payment_page_id', 'publishable_key', 'recognized_revenue_account', 'stripe_publishable_key', 'stripe_secret_key', 'webhook_secret')
|
|
10694
11943
|
base_url = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='baseUrl')
|
|
10695
11944
|
client_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientId')
|
|
10696
11945
|
client_secret = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientSecret')
|
|
11946
|
+
deferred_revenue_account = sgqlc.types.Field(String, graphql_name='deferredRevenueAccount')
|
|
11947
|
+
invoice_settlement_enabled = sgqlc.types.Field(Boolean, graphql_name='invoiceSettlementEnabled')
|
|
10697
11948
|
payment_gateway_id = sgqlc.types.Field(String, graphql_name='paymentGatewayId')
|
|
10698
11949
|
payment_page_id = sgqlc.types.Field(String, graphql_name='paymentPageId')
|
|
11950
|
+
publishable_key = sgqlc.types.Field(String, graphql_name='publishableKey')
|
|
11951
|
+
recognized_revenue_account = sgqlc.types.Field(String, graphql_name='recognizedRevenueAccount')
|
|
10699
11952
|
stripe_publishable_key = sgqlc.types.Field(String, graphql_name='stripePublishableKey')
|
|
10700
11953
|
stripe_secret_key = sgqlc.types.Field(String, graphql_name='stripeSecretKey')
|
|
10701
11954
|
webhook_secret = sgqlc.types.Field(String, graphql_name='webhookSecret')
|
|
@@ -10726,9 +11979,14 @@ class experimentInfo(sgqlc.types.Type):
|
|
|
10726
11979
|
########################################################################
|
|
10727
11980
|
# Unions
|
|
10728
11981
|
########################################################################
|
|
11982
|
+
class BillingCredentials(sgqlc.types.Union):
|
|
11983
|
+
__schema__ = schema
|
|
11984
|
+
__types__ = (StripeCheckoutCredentials, ZuoraCheckoutCredentials)
|
|
11985
|
+
|
|
11986
|
+
|
|
10729
11987
|
class Credentials(sgqlc.types.Union):
|
|
10730
11988
|
__schema__ = schema
|
|
10731
|
-
__types__ = (Auth0Credentials, AwsMarketplaceCredentials, BigQueryCredentials, HubspotCredentials, OpenFGACredentials, SalesforceCredentials, SnowflakeCredentials, StripeCredentials, ZuoraCredentials)
|
|
11989
|
+
__types__ = (AppStoreCredentials, Auth0Credentials, AwsMarketplaceCredentials, BigQueryCredentials, HubspotCredentials, OpenFGACredentials, SalesforceCredentials, SnowflakeCredentials, StripeCredentials, ZuoraCredentials)
|
|
10732
11990
|
|
|
10733
11991
|
|
|
10734
11992
|
class PaymentMethodForm(sgqlc.types.Union):
|
|
@@ -10743,7 +12001,7 @@ class ResetPeriodConfiguration(sgqlc.types.Union):
|
|
|
10743
12001
|
|
|
10744
12002
|
class ScheduleVariables(sgqlc.types.Union):
|
|
10745
12003
|
__schema__ = schema
|
|
10746
|
-
__types__ = (AddonChangeVariables, AddonPriceOverrideChangeVariables, BillingPeriodChangeVariables, CouponChangeVariables, DowngradeChangeVariables, PlanChangeVariables, PlanPriceOverrideChangeVariables, UnitAmountChangeVariables)
|
|
12004
|
+
__types__ = (AddonChangeVariables, AddonPriceOverrideChangeVariables, BillingPeriodChangeVariables, CouponChangeVariables, DowngradeChangeVariables, PlanChangeVariables, PlanPriceOverrideChangeVariables, RecurringCreditsChangeVariables, UnitAmountChangeVariables)
|
|
10747
12005
|
|
|
10748
12006
|
|
|
10749
12007
|
class SyncRevisionData(sgqlc.types.Union):
|