stigg-api-client 3.9.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 +1412 -147
- {stigg_api_client-3.9.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.9.0.dist-info/RECORD +0 -9
- {stigg_api_client-3.9.0.dist-info → stigg_api_client-5.99.0.dist-info}/LICENSE +0 -0
- {stigg_api_client-3.9.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):
|
|
@@ -510,9 +570,14 @@ class SubscriptionPriceSortFields(sgqlc.types.Enum):
|
|
|
510
570
|
__choices__ = ('billingModel', 'createdAt', 'featureId', 'hasSoftLimit', 'id', 'updatedAt', 'usageLimit')
|
|
511
571
|
|
|
512
572
|
|
|
573
|
+
class SubscriptionProrationBehavior(sgqlc.types.Enum):
|
|
574
|
+
__schema__ = schema
|
|
575
|
+
__choices__ = ('CREATE_PRORATIONS', 'INVOICE_IMMEDIATELY', 'NONE')
|
|
576
|
+
|
|
577
|
+
|
|
513
578
|
class SubscriptionQuerySortFields(sgqlc.types.Enum):
|
|
514
579
|
__schema__ = schema
|
|
515
|
-
__choices__ = ('createdAt', 'customerId', 'environmentId', 'productId', 'resourceId', 'status')
|
|
580
|
+
__choices__ = ('billingId', 'cancellationDate', 'createdAt', 'customerId', 'endDate', 'environmentId', 'paymentCollection', 'pricingType', 'productId', 'resourceId', 'salesforceId', 'startDate', 'status', 'subscriptionId')
|
|
516
581
|
|
|
517
582
|
|
|
518
583
|
class SubscriptionScheduleStatus(sgqlc.types.Enum):
|
|
@@ -522,7 +587,7 @@ class SubscriptionScheduleStatus(sgqlc.types.Enum):
|
|
|
522
587
|
|
|
523
588
|
class SubscriptionScheduleType(sgqlc.types.Enum):
|
|
524
589
|
__schema__ = schema
|
|
525
|
-
__choices__ = ('AdditionalMetaData', 'Addon', 'BillingInfoMetadata', 'BillingPeriod', 'Coupon', 'Downgrade', 'MigrateToLatest', 'Plan', 'PriceOverride', 'UnitAmount')
|
|
590
|
+
__choices__ = ('AdditionalMetaData', 'Addon', 'BillingInfoMetadata', 'BillingPeriod', 'Coupon', 'Downgrade', 'MigrateToLatest', 'Plan', 'PriceOverride', 'RecurringCredits', 'UnitAmount')
|
|
526
591
|
|
|
527
592
|
|
|
528
593
|
class SubscriptionStartSetup(sgqlc.types.Enum):
|
|
@@ -555,6 +620,11 @@ class TaskType(sgqlc.types.Enum):
|
|
|
555
620
|
__choices__ = ('IMPORT_INTEGRATION_CATALOG', 'IMPORT_INTEGRATION_CUSTOMERS', 'IMPORT_SUBSCRIPTIONS_BULK', 'RECALCULATE_BATCH_ENTITLEMENTS', 'RECALCULATE_ENTITLEMENTS', 'RESYNC_INTEGRATION', 'SUBSCRIPTION_MIGRATION', 'SUBSCRIPTION_MIGRATION_V2')
|
|
556
621
|
|
|
557
622
|
|
|
623
|
+
class ThresholdType(sgqlc.types.Enum):
|
|
624
|
+
__schema__ = schema
|
|
625
|
+
__choices__ = ('CreditAmount', 'DollarAmount')
|
|
626
|
+
|
|
627
|
+
|
|
558
628
|
class TiersMode(sgqlc.types.Enum):
|
|
559
629
|
__schema__ = schema
|
|
560
630
|
__choices__ = ('GRADUATED', 'VOLUME')
|
|
@@ -596,7 +666,7 @@ class UsageUpdateBehavior(sgqlc.types.Enum):
|
|
|
596
666
|
|
|
597
667
|
class VendorIdentifier(sgqlc.types.Enum):
|
|
598
668
|
__schema__ = schema
|
|
599
|
-
__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')
|
|
600
670
|
|
|
601
671
|
|
|
602
672
|
class VendorType(sgqlc.types.Enum):
|
|
@@ -669,7 +739,7 @@ class AddonCreateInput(sgqlc.types.Input):
|
|
|
669
739
|
|
|
670
740
|
class AddonFilter(sgqlc.types.Input):
|
|
671
741
|
__schema__ = schema
|
|
672
|
-
__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')
|
|
673
743
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('AddonFilter')), graphql_name='and')
|
|
674
744
|
billing_id = sgqlc.types.Field('StringFieldComparison', graphql_name='billingId')
|
|
675
745
|
created_at = sgqlc.types.Field('DateFieldComparison', graphql_name='createdAt')
|
|
@@ -678,6 +748,7 @@ class AddonFilter(sgqlc.types.Input):
|
|
|
678
748
|
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
679
749
|
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
680
750
|
is_latest = sgqlc.types.Field('BooleanFieldComparison', graphql_name='isLatest')
|
|
751
|
+
offer = sgqlc.types.Field('AddonFilterOfferFilter', graphql_name='offer')
|
|
681
752
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('AddonFilter')), graphql_name='or')
|
|
682
753
|
pricing_type = sgqlc.types.Field('PricingTypeFilterComparison', graphql_name='pricingType')
|
|
683
754
|
product_id = sgqlc.types.Field('StringFieldComparison', graphql_name='productId')
|
|
@@ -687,6 +758,21 @@ class AddonFilter(sgqlc.types.Input):
|
|
|
687
758
|
version_number = sgqlc.types.Field('IntFieldComparison', graphql_name='versionNumber')
|
|
688
759
|
|
|
689
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
|
+
|
|
690
776
|
class AddonSort(sgqlc.types.Input):
|
|
691
777
|
__schema__ = schema
|
|
692
778
|
__field_names__ = ('direction', 'field', 'nulls')
|
|
@@ -753,9 +839,34 @@ class ApiKeySort(sgqlc.types.Input):
|
|
|
753
839
|
nulls = sgqlc.types.Field(SortNulls, graphql_name='nulls')
|
|
754
840
|
|
|
755
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
|
+
|
|
756
867
|
class ApplySubscriptionInput(sgqlc.types.Input):
|
|
757
868
|
__schema__ = schema
|
|
758
|
-
__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', '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')
|
|
759
870
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
760
871
|
addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonInput')), graphql_name='addons')
|
|
761
872
|
applied_coupon = sgqlc.types.Field('SubscriptionCouponInput', graphql_name='appliedCoupon')
|
|
@@ -766,7 +877,9 @@ class ApplySubscriptionInput(sgqlc.types.Input):
|
|
|
766
877
|
billing_information = sgqlc.types.Field('SubscriptionBillingInfo', graphql_name='billingInformation')
|
|
767
878
|
billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
|
|
768
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')
|
|
769
881
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
882
|
+
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
770
883
|
minimum_spend = sgqlc.types.Field('SubscriptionMinimumSpendValueInput', graphql_name='minimumSpend')
|
|
771
884
|
paying_customer_id = sgqlc.types.Field(String, graphql_name='payingCustomerId')
|
|
772
885
|
payment_collection_method = sgqlc.types.Field(PaymentCollectionMethod, graphql_name='paymentCollectionMethod')
|
|
@@ -828,9 +941,17 @@ class ArchivePackageGroup(sgqlc.types.Input):
|
|
|
828
941
|
|
|
829
942
|
class ArchivePlanInput(sgqlc.types.Input):
|
|
830
943
|
__schema__ = schema
|
|
831
|
-
__field_names__ = ('environment_id', 'id')
|
|
944
|
+
__field_names__ = ('environment_id', 'id', 'ref_id')
|
|
832
945
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
833
|
-
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')
|
|
834
955
|
|
|
835
956
|
|
|
836
957
|
class AttachCustomerPaymentMethodInput(sgqlc.types.Input):
|
|
@@ -961,6 +1082,14 @@ class BillingPeriodFilterComparison(sgqlc.types.Input):
|
|
|
961
1082
|
not_like = sgqlc.types.Field(BillingPeriod, graphql_name='notLike')
|
|
962
1083
|
|
|
963
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
|
+
|
|
964
1093
|
class BooleanFieldComparison(sgqlc.types.Input):
|
|
965
1094
|
__schema__ = schema
|
|
966
1095
|
__field_names__ = ('is_', 'is_not')
|
|
@@ -975,6 +1104,14 @@ class BudgetConfigurationInput(sgqlc.types.Input):
|
|
|
975
1104
|
limit = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='limit')
|
|
976
1105
|
|
|
977
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
|
+
|
|
978
1115
|
class ChargeSubscriptionUsageInput(sgqlc.types.Input):
|
|
979
1116
|
__schema__ = schema
|
|
980
1117
|
__field_names__ = ('environment_id', 'subscription_id', 'until_date')
|
|
@@ -1059,8 +1196,9 @@ class CouponFilter(sgqlc.types.Input):
|
|
|
1059
1196
|
|
|
1060
1197
|
class CouponFilterCustomerFilter(sgqlc.types.Input):
|
|
1061
1198
|
__schema__ = schema
|
|
1062
|
-
__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')
|
|
1063
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')
|
|
1064
1202
|
billing_id = sgqlc.types.Field('StringFieldComparison', graphql_name='billingId')
|
|
1065
1203
|
created_at = sgqlc.types.Field('DateFieldComparison', graphql_name='createdAt')
|
|
1066
1204
|
crm_hubspot_company_id = sgqlc.types.Field('StringFieldComparison', graphql_name='crmHubspotCompanyId')
|
|
@@ -1206,7 +1344,8 @@ class CreateHook(sgqlc.types.Input):
|
|
|
1206
1344
|
|
|
1207
1345
|
class CreateIntegrationInput(sgqlc.types.Input):
|
|
1208
1346
|
__schema__ = schema
|
|
1209
|
-
__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')
|
|
1210
1349
|
auth0_credentials = sgqlc.types.Field(Auth0CredentialsInput, graphql_name='auth0Credentials')
|
|
1211
1350
|
aws_marketplace_credentials = sgqlc.types.Field(AwsMarketplaceCredentialsInput, graphql_name='awsMarketplaceCredentials')
|
|
1212
1351
|
big_query_credentials = sgqlc.types.Field(BigQueryCredentialsInput, graphql_name='bigQueryCredentials')
|
|
@@ -1241,6 +1380,23 @@ class CreateMeter(sgqlc.types.Input):
|
|
|
1241
1380
|
filters = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('MeterFilterDefinitionInput'))), graphql_name='filters')
|
|
1242
1381
|
|
|
1243
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
|
+
|
|
1244
1400
|
class CreateOneEnvironmentInput(sgqlc.types.Input):
|
|
1245
1401
|
__schema__ = schema
|
|
1246
1402
|
__field_names__ = ('environment', 'options')
|
|
@@ -1312,11 +1468,27 @@ class CreditBalanceSummaryInput(sgqlc.types.Input):
|
|
|
1312
1468
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
1313
1469
|
|
|
1314
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
|
+
|
|
1315
1486
|
class CreditGrantInput(sgqlc.types.Input):
|
|
1316
1487
|
__schema__ = schema
|
|
1317
|
-
__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')
|
|
1318
1489
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
1319
1490
|
amount = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='amount')
|
|
1491
|
+
await_payment_confirmation = sgqlc.types.Field(Boolean, graphql_name='awaitPaymentConfirmation')
|
|
1320
1492
|
comment = sgqlc.types.Field(String, graphql_name='comment')
|
|
1321
1493
|
cost = sgqlc.types.Field('MoneyInputDTO', graphql_name='cost')
|
|
1322
1494
|
currency_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='currencyId')
|
|
@@ -1326,10 +1498,40 @@ class CreditGrantInput(sgqlc.types.Input):
|
|
|
1326
1498
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
1327
1499
|
expire_at = sgqlc.types.Field(DateTime, graphql_name='expireAt')
|
|
1328
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')
|
|
1329
1502
|
priority = sgqlc.types.Field(Float, graphql_name='priority')
|
|
1330
1503
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
1331
1504
|
|
|
1332
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
|
+
|
|
1333
1535
|
class CursorPaging(sgqlc.types.Input):
|
|
1334
1536
|
__schema__ = schema
|
|
1335
1537
|
__field_names__ = ('after', 'before', 'first', 'last')
|
|
@@ -1341,12 +1543,14 @@ class CursorPaging(sgqlc.types.Input):
|
|
|
1341
1543
|
|
|
1342
1544
|
class CustomCurrencyInput(sgqlc.types.Input):
|
|
1343
1545
|
__schema__ = schema
|
|
1344
|
-
__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')
|
|
1345
1547
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
1346
1548
|
currency_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='currencyId')
|
|
1549
|
+
description = sgqlc.types.Field(String, graphql_name='description')
|
|
1347
1550
|
display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='displayName')
|
|
1348
1551
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
1349
|
-
symbol = sgqlc.types.Field(
|
|
1552
|
+
symbol = sgqlc.types.Field(String, graphql_name='symbol')
|
|
1553
|
+
units = sgqlc.types.Field('UnitsInput', graphql_name='units')
|
|
1350
1554
|
|
|
1351
1555
|
|
|
1352
1556
|
class CustomerBillingInfo(sgqlc.types.Input):
|
|
@@ -1367,8 +1571,9 @@ class CustomerBillingInfo(sgqlc.types.Input):
|
|
|
1367
1571
|
|
|
1368
1572
|
class CustomerFilter(sgqlc.types.Input):
|
|
1369
1573
|
__schema__ = schema
|
|
1370
|
-
__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')
|
|
1371
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')
|
|
1372
1577
|
billing_id = sgqlc.types.Field('StringFieldComparison', graphql_name='billingId')
|
|
1373
1578
|
created_at = sgqlc.types.Field('DateFieldComparison', graphql_name='createdAt')
|
|
1374
1579
|
crm_hubspot_company_id = sgqlc.types.Field('StringFieldComparison', graphql_name='crmHubspotCompanyId')
|
|
@@ -1494,8 +1699,9 @@ class CustomerResourceFilter(sgqlc.types.Input):
|
|
|
1494
1699
|
|
|
1495
1700
|
class CustomerResourceFilterCustomerFilter(sgqlc.types.Input):
|
|
1496
1701
|
__schema__ = schema
|
|
1497
|
-
__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')
|
|
1498
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')
|
|
1499
1705
|
billing_id = sgqlc.types.Field('StringFieldComparison', graphql_name='billingId')
|
|
1500
1706
|
created_at = sgqlc.types.Field('DateFieldComparison', graphql_name='createdAt')
|
|
1501
1707
|
crm_hubspot_company_id = sgqlc.types.Field('StringFieldComparison', graphql_name='crmHubspotCompanyId')
|
|
@@ -1609,8 +1815,9 @@ class CustomerSubscriptionFilter(sgqlc.types.Input):
|
|
|
1609
1815
|
|
|
1610
1816
|
class CustomerSubscriptionFilterCustomerFilter(sgqlc.types.Input):
|
|
1611
1817
|
__schema__ = schema
|
|
1612
|
-
__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')
|
|
1613
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')
|
|
1614
1821
|
billing_id = sgqlc.types.Field('StringFieldComparison', graphql_name='billingId')
|
|
1615
1822
|
created_at = sgqlc.types.Field('DateFieldComparison', graphql_name='createdAt')
|
|
1616
1823
|
crm_hubspot_company_id = sgqlc.types.Field('StringFieldComparison', graphql_name='crmHubspotCompanyId')
|
|
@@ -1949,13 +2156,14 @@ class EnvironmentSort(sgqlc.types.Input):
|
|
|
1949
2156
|
|
|
1950
2157
|
class EstimateSubscriptionInput(sgqlc.types.Input):
|
|
1951
2158
|
__schema__ = schema
|
|
1952
|
-
__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')
|
|
1953
2160
|
addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonInput')), graphql_name='addons')
|
|
1954
2161
|
applied_coupon = sgqlc.types.Field('SubscriptionCouponInput', graphql_name='appliedCoupon')
|
|
1955
2162
|
billable_features = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(BillableFeatureInput)), graphql_name='billableFeatures')
|
|
1956
2163
|
billing_country_code = sgqlc.types.Field(String, graphql_name='billingCountryCode')
|
|
1957
2164
|
billing_information = sgqlc.types.Field('SubscriptionBillingInfo', graphql_name='billingInformation')
|
|
1958
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')
|
|
1959
2167
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
1960
2168
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
1961
2169
|
paying_customer_id = sgqlc.types.Field(String, graphql_name='payingCustomerId')
|
|
@@ -1971,10 +2179,11 @@ class EstimateSubscriptionInput(sgqlc.types.Input):
|
|
|
1971
2179
|
|
|
1972
2180
|
class EstimateSubscriptionUpdateInput(sgqlc.types.Input):
|
|
1973
2181
|
__schema__ = schema
|
|
1974
|
-
__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')
|
|
1975
2183
|
addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonInput')), graphql_name='addons')
|
|
1976
2184
|
applied_coupon = sgqlc.types.Field('SubscriptionCouponInput', graphql_name='appliedCoupon')
|
|
1977
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')
|
|
1978
2187
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
1979
2188
|
promotion_code = sgqlc.types.Field(String, graphql_name='promotionCode')
|
|
1980
2189
|
subscription_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='subscriptionId')
|
|
@@ -1990,9 +2199,17 @@ class EventLogCreatedAtFilterComparison(sgqlc.types.Input):
|
|
|
1990
2199
|
|
|
1991
2200
|
class EventLogEntityIdFilterComparison(sgqlc.types.Input):
|
|
1992
2201
|
__schema__ = schema
|
|
1993
|
-
__field_names__ = ('eq', 'in_')
|
|
2202
|
+
__field_names__ = ('eq', 'in_', 'like')
|
|
1994
2203
|
eq = sgqlc.types.Field(String, graphql_name='eq')
|
|
1995
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')
|
|
1996
2213
|
|
|
1997
2214
|
|
|
1998
2215
|
class EventLogEnvironmentIdFilterComparison(sgqlc.types.Input):
|
|
@@ -2012,15 +2229,17 @@ class EventLogEventLogTypeFilterComparison(sgqlc.types.Input):
|
|
|
2012
2229
|
|
|
2013
2230
|
class EventLogFilter(sgqlc.types.Input):
|
|
2014
2231
|
__schema__ = schema
|
|
2015
|
-
__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')
|
|
2016
2233
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('EventLogFilter')), graphql_name='and')
|
|
2017
2234
|
created_at = sgqlc.types.Field(EventLogCreatedAtFilterComparison, graphql_name='createdAt')
|
|
2018
2235
|
entity_id = sgqlc.types.Field(EventLogEntityIdFilterComparison, graphql_name='entityId')
|
|
2019
|
-
|
|
2236
|
+
entity_type = sgqlc.types.Field(EventLogEntityTypeFilterComparison, graphql_name='entityType')
|
|
2237
|
+
environment_id = sgqlc.types.Field(EventLogEnvironmentIdFilterComparison, graphql_name='environmentId')
|
|
2020
2238
|
event_log_type = sgqlc.types.Field(EventLogEventLogTypeFilterComparison, graphql_name='eventLogType')
|
|
2021
2239
|
id = sgqlc.types.Field('EventLogIdFilterComparison', graphql_name='id')
|
|
2022
2240
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('EventLogFilter')), graphql_name='or')
|
|
2023
2241
|
parent_entity_id = sgqlc.types.Field('EventLogParentEntityIdFilterComparison', graphql_name='parentEntityId')
|
|
2242
|
+
trace_id = sgqlc.types.Field('EventLogTraceIdFilterComparison', graphql_name='traceId')
|
|
2024
2243
|
|
|
2025
2244
|
|
|
2026
2245
|
class EventLogIdFilterComparison(sgqlc.types.Input):
|
|
@@ -2031,9 +2250,10 @@ class EventLogIdFilterComparison(sgqlc.types.Input):
|
|
|
2031
2250
|
|
|
2032
2251
|
class EventLogParentEntityIdFilterComparison(sgqlc.types.Input):
|
|
2033
2252
|
__schema__ = schema
|
|
2034
|
-
__field_names__ = ('eq', 'in_')
|
|
2253
|
+
__field_names__ = ('eq', 'in_', 'like')
|
|
2035
2254
|
eq = sgqlc.types.Field(String, graphql_name='eq')
|
|
2036
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')
|
|
2037
2257
|
|
|
2038
2258
|
|
|
2039
2259
|
class EventLogSort(sgqlc.types.Input):
|
|
@@ -2044,6 +2264,12 @@ class EventLogSort(sgqlc.types.Input):
|
|
|
2044
2264
|
nulls = sgqlc.types.Field(SortNulls, graphql_name='nulls')
|
|
2045
2265
|
|
|
2046
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
|
+
|
|
2047
2273
|
class EventsFieldsInput(sgqlc.types.Input):
|
|
2048
2274
|
__schema__ = schema
|
|
2049
2275
|
__field_names__ = ('customer_id', 'environment_id', 'feature_id', 'filters', 'meter_id', 'resource_id', 'unique_values_limit')
|
|
@@ -2073,8 +2299,9 @@ class ExperimentFilter(sgqlc.types.Input):
|
|
|
2073
2299
|
|
|
2074
2300
|
class ExperimentFilterCustomerFilter(sgqlc.types.Input):
|
|
2075
2301
|
__schema__ = schema
|
|
2076
|
-
__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')
|
|
2077
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')
|
|
2078
2305
|
billing_id = sgqlc.types.Field('StringFieldComparison', graphql_name='billingId')
|
|
2079
2306
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
2080
2307
|
crm_hubspot_company_id = sgqlc.types.Field('StringFieldComparison', graphql_name='crmHubspotCompanyId')
|
|
@@ -2308,12 +2535,21 @@ class GetAuth0ApplicationsInput(sgqlc.types.Input):
|
|
|
2308
2535
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
2309
2536
|
|
|
2310
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
|
+
|
|
2311
2546
|
class GetCreditGrantsInput(sgqlc.types.Input):
|
|
2312
2547
|
__schema__ = schema
|
|
2313
|
-
__field_names__ = ('currency_id', 'customer_id', 'environment_id', 'resource_id')
|
|
2548
|
+
__field_names__ = ('currency_id', 'customer_id', 'environment_id', 'paging', 'resource_id')
|
|
2314
2549
|
currency_id = sgqlc.types.Field(String, graphql_name='currencyId')
|
|
2315
2550
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
2316
2551
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
2552
|
+
paging = sgqlc.types.Field(CursorPaging, graphql_name='paging')
|
|
2317
2553
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
2318
2554
|
|
|
2319
2555
|
|
|
@@ -2324,6 +2560,14 @@ class GetCustomerByRefIdInput(sgqlc.types.Input):
|
|
|
2324
2560
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
2325
2561
|
|
|
2326
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
|
+
|
|
2327
2571
|
class GetPackageByRefIdInput(sgqlc.types.Input):
|
|
2328
2572
|
__schema__ = schema
|
|
2329
2573
|
__field_names__ = ('environment_id', 'ref_id', 'version_number')
|
|
@@ -2342,13 +2586,14 @@ class GetPackageGroup(sgqlc.types.Input):
|
|
|
2342
2586
|
|
|
2343
2587
|
class GetPaywallInput(sgqlc.types.Input):
|
|
2344
2588
|
__schema__ = schema
|
|
2345
|
-
__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')
|
|
2346
2590
|
billing_country_code = sgqlc.types.Field(String, graphql_name='billingCountryCode')
|
|
2347
2591
|
context = sgqlc.types.Field(WidgetType, graphql_name='context')
|
|
2348
2592
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
2349
2593
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
2350
2594
|
fetch_all_countries_prices = sgqlc.types.Field(Boolean, graphql_name='fetchAllCountriesPrices')
|
|
2351
2595
|
include_hidden_plans = sgqlc.types.Field(Boolean, graphql_name='includeHiddenPlans')
|
|
2596
|
+
offer_id = sgqlc.types.Field(String, graphql_name='offerId')
|
|
2352
2597
|
product_id = sgqlc.types.Field(String, graphql_name='productId')
|
|
2353
2598
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
2354
2599
|
|
|
@@ -2391,6 +2636,15 @@ class GrantPromotionalEntitlementInput(sgqlc.types.Input):
|
|
|
2391
2636
|
yearly_reset_period_configuration = sgqlc.types.Field('YearlyResetPeriodConfigInput', graphql_name='yearlyResetPeriodConfiguration')
|
|
2392
2637
|
|
|
2393
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
|
+
|
|
2394
2648
|
class GrantPromotionalEntitlementsInput(sgqlc.types.Input):
|
|
2395
2649
|
__schema__ = schema
|
|
2396
2650
|
__field_names__ = ('customer_id', 'environment_id', 'promotional_entitlements')
|
|
@@ -2515,12 +2769,13 @@ class ImportIntegrationTaskSort(sgqlc.types.Input):
|
|
|
2515
2769
|
|
|
2516
2770
|
class ImportSubscriptionInput(sgqlc.types.Input):
|
|
2517
2771
|
__schema__ = schema
|
|
2518
|
-
__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')
|
|
2519
2773
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
2520
2774
|
addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonInput')), graphql_name='addons')
|
|
2521
2775
|
billable_features = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(BillableFeatureInput)), graphql_name='billableFeatures')
|
|
2522
2776
|
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
2523
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')
|
|
2524
2779
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
2525
2780
|
end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
|
|
2526
2781
|
plan_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='planId')
|
|
@@ -2610,6 +2865,27 @@ class InviteMembersInput(sgqlc.types.Input):
|
|
|
2610
2865
|
production_role = sgqlc.types.Field(EnvironmentAccessRole, graphql_name='productionRole')
|
|
2611
2866
|
|
|
2612
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
|
+
|
|
2613
2889
|
class ListAwsProductDimensionsInput(sgqlc.types.Input):
|
|
2614
2890
|
__schema__ = schema
|
|
2615
2891
|
__field_names__ = ('environment_id', 'product_id')
|
|
@@ -2680,10 +2956,11 @@ class MeterAggregation(sgqlc.types.Input):
|
|
|
2680
2956
|
|
|
2681
2957
|
class MeterConditionInput(sgqlc.types.Input):
|
|
2682
2958
|
__schema__ = schema
|
|
2683
|
-
__field_names__ = ('field', 'operation', 'value')
|
|
2959
|
+
__field_names__ = ('field', 'operation', 'value', 'values')
|
|
2684
2960
|
field = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='field')
|
|
2685
2961
|
operation = sgqlc.types.Field(sgqlc.types.non_null(ConditionOperation), graphql_name='operation')
|
|
2686
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')
|
|
2687
2964
|
|
|
2688
2965
|
|
|
2689
2966
|
class MeterFilterDefinitionInput(sgqlc.types.Input):
|
|
@@ -2764,6 +3041,48 @@ class NumberFieldComparisonBetween(sgqlc.types.Input):
|
|
|
2764
3041
|
upper = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='upper')
|
|
2765
3042
|
|
|
2766
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
|
+
|
|
2767
3086
|
class OpenFGACredentialsInput(sgqlc.types.Input):
|
|
2768
3087
|
__schema__ = schema
|
|
2769
3088
|
__field_names__ = ('api_audience', 'api_token_issuer', 'api_url', 'client_id', 'client_secret', 'store_id')
|
|
@@ -2777,7 +3096,7 @@ class OpenFGACredentialsInput(sgqlc.types.Input):
|
|
|
2777
3096
|
|
|
2778
3097
|
class OverageEntitlementCreateInput(sgqlc.types.Input):
|
|
2779
3098
|
__schema__ = schema
|
|
2780
|
-
__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')
|
|
2781
3100
|
behavior = sgqlc.types.Field(EntitlementBehavior, graphql_name='behavior')
|
|
2782
3101
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
2783
3102
|
display_name_override = sgqlc.types.Field(String, graphql_name='displayNameOverride')
|
|
@@ -2788,6 +3107,7 @@ class OverageEntitlementCreateInput(sgqlc.types.Input):
|
|
|
2788
3107
|
has_unlimited_usage = sgqlc.types.Field(Boolean, graphql_name='hasUnlimitedUsage')
|
|
2789
3108
|
hidden_from_widgets = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(WidgetType)), graphql_name='hiddenFromWidgets')
|
|
2790
3109
|
is_custom = sgqlc.types.Field(Boolean, graphql_name='isCustom')
|
|
3110
|
+
is_granted = sgqlc.types.Field(Boolean, graphql_name='isGranted')
|
|
2791
3111
|
monthly_reset_period_configuration = sgqlc.types.Field(MonthlyResetPeriodConfigInput, graphql_name='monthlyResetPeriodConfiguration')
|
|
2792
3112
|
order = sgqlc.types.Field(Float, graphql_name='order')
|
|
2793
3113
|
reset_period = sgqlc.types.Field(EntitlementResetPeriod, graphql_name='resetPeriod')
|
|
@@ -2798,17 +3118,19 @@ class OverageEntitlementCreateInput(sgqlc.types.Input):
|
|
|
2798
3118
|
|
|
2799
3119
|
class OveragePricingModelCreateInput(sgqlc.types.Input):
|
|
2800
3120
|
__schema__ = schema
|
|
2801
|
-
__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')
|
|
2802
3122
|
billing_cadence = sgqlc.types.Field(BillingCadence, graphql_name='billingCadence')
|
|
3123
|
+
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
2803
3124
|
billing_model = sgqlc.types.Field(sgqlc.types.non_null(BillingModel), graphql_name='billingModel')
|
|
2804
3125
|
entitlement = sgqlc.types.Field(OverageEntitlementCreateInput, graphql_name='entitlement')
|
|
2805
3126
|
feature_id = sgqlc.types.Field(String, graphql_name='featureId')
|
|
2806
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')
|
|
2807
3129
|
|
|
2808
3130
|
|
|
2809
3131
|
class PackageDTOFilter(sgqlc.types.Input):
|
|
2810
3132
|
__schema__ = schema
|
|
2811
|
-
__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')
|
|
2812
3134
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PackageDTOFilter')), graphql_name='and')
|
|
2813
3135
|
billing_id = sgqlc.types.Field('StringFieldComparison', graphql_name='billingId')
|
|
2814
3136
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
@@ -2817,6 +3139,7 @@ class PackageDTOFilter(sgqlc.types.Input):
|
|
|
2817
3139
|
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
2818
3140
|
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
2819
3141
|
is_latest = sgqlc.types.Field(BooleanFieldComparison, graphql_name='isLatest')
|
|
3142
|
+
offer = sgqlc.types.Field('PackageDTOFilterOfferFilter', graphql_name='offer')
|
|
2820
3143
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PackageDTOFilter')), graphql_name='or')
|
|
2821
3144
|
pricing_type = sgqlc.types.Field('PricingTypeFilterComparison', graphql_name='pricingType')
|
|
2822
3145
|
product_id = sgqlc.types.Field('StringFieldComparison', graphql_name='productId')
|
|
@@ -2826,6 +3149,21 @@ class PackageDTOFilter(sgqlc.types.Input):
|
|
|
2826
3149
|
version_number = sgqlc.types.Field(IntFieldComparison, graphql_name='versionNumber')
|
|
2827
3150
|
|
|
2828
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
|
+
|
|
2829
3167
|
class PackageDTOSort(sgqlc.types.Input):
|
|
2830
3168
|
__schema__ = schema
|
|
2831
3169
|
__field_names__ = ('direction', 'field', 'nulls')
|
|
@@ -2887,7 +3225,7 @@ class PackageEntitlementFilterPackageDTOFilter(sgqlc.types.Input):
|
|
|
2887
3225
|
|
|
2888
3226
|
class PackageEntitlementInput(sgqlc.types.Input):
|
|
2889
3227
|
__schema__ = schema
|
|
2890
|
-
__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')
|
|
2891
3229
|
behavior = sgqlc.types.Field(EntitlementBehavior, graphql_name='behavior')
|
|
2892
3230
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
2893
3231
|
display_name_override = sgqlc.types.Field(String, graphql_name='displayNameOverride')
|
|
@@ -2899,6 +3237,7 @@ class PackageEntitlementInput(sgqlc.types.Input):
|
|
|
2899
3237
|
has_unlimited_usage = sgqlc.types.Field(Boolean, graphql_name='hasUnlimitedUsage')
|
|
2900
3238
|
hidden_from_widgets = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(WidgetType)), graphql_name='hiddenFromWidgets')
|
|
2901
3239
|
is_custom = sgqlc.types.Field(Boolean, graphql_name='isCustom')
|
|
3240
|
+
is_granted = sgqlc.types.Field(Boolean, graphql_name='isGranted')
|
|
2902
3241
|
monthly_reset_period_configuration = sgqlc.types.Field(MonthlyResetPeriodConfigInput, graphql_name='monthlyResetPeriodConfiguration')
|
|
2903
3242
|
order = sgqlc.types.Field(Float, graphql_name='order')
|
|
2904
3243
|
package_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='packageId')
|
|
@@ -2918,7 +3257,7 @@ class PackageEntitlementSort(sgqlc.types.Input):
|
|
|
2918
3257
|
|
|
2919
3258
|
class PackageEntitlementUpdateInput(sgqlc.types.Input):
|
|
2920
3259
|
__schema__ = schema
|
|
2921
|
-
__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')
|
|
2922
3261
|
behavior = sgqlc.types.Field(EntitlementBehavior, graphql_name='behavior')
|
|
2923
3262
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
2924
3263
|
display_name_override = sgqlc.types.Field(String, graphql_name='displayNameOverride')
|
|
@@ -2927,6 +3266,7 @@ class PackageEntitlementUpdateInput(sgqlc.types.Input):
|
|
|
2927
3266
|
has_unlimited_usage = sgqlc.types.Field(Boolean, graphql_name='hasUnlimitedUsage')
|
|
2928
3267
|
hidden_from_widgets = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(WidgetType)), graphql_name='hiddenFromWidgets')
|
|
2929
3268
|
is_custom = sgqlc.types.Field(Boolean, graphql_name='isCustom')
|
|
3269
|
+
is_granted = sgqlc.types.Field(Boolean, graphql_name='isGranted')
|
|
2930
3270
|
monthly_reset_period_configuration = sgqlc.types.Field(MonthlyResetPeriodConfigInput, graphql_name='monthlyResetPeriodConfiguration')
|
|
2931
3271
|
order = sgqlc.types.Field(Float, graphql_name='order')
|
|
2932
3272
|
reset_period = sgqlc.types.Field(EntitlementResetPeriod, graphql_name='resetPeriod')
|
|
@@ -2954,7 +3294,7 @@ class PackageGroupFilter(sgqlc.types.Input):
|
|
|
2954
3294
|
|
|
2955
3295
|
class PackageGroupFilterProductFilter(sgqlc.types.Input):
|
|
2956
3296
|
__schema__ = schema
|
|
2957
|
-
__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')
|
|
2958
3298
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PackageGroupFilterProductFilter')), graphql_name='and')
|
|
2959
3299
|
aws_marketplace_product_code = sgqlc.types.Field('StringFieldComparison', graphql_name='awsMarketplaceProductCode')
|
|
2960
3300
|
aws_marketplace_product_id = sgqlc.types.Field('StringFieldComparison', graphql_name='awsMarketplaceProductId')
|
|
@@ -2967,6 +3307,7 @@ class PackageGroupFilterProductFilter(sgqlc.types.Input):
|
|
|
2967
3307
|
multiple_subscriptions = sgqlc.types.Field(BooleanFieldComparison, graphql_name='multipleSubscriptions')
|
|
2968
3308
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PackageGroupFilterProductFilter')), graphql_name='or')
|
|
2969
3309
|
ref_id = sgqlc.types.Field('StringFieldComparison', graphql_name='refId')
|
|
3310
|
+
status = sgqlc.types.Field('ProductStatusFilterComparison', graphql_name='status')
|
|
2970
3311
|
updated_at = sgqlc.types.Field(DateFieldComparison, graphql_name='updatedAt')
|
|
2971
3312
|
|
|
2972
3313
|
|
|
@@ -2999,13 +3340,13 @@ class PackageGroupStatusFilterComparison(sgqlc.types.Input):
|
|
|
2999
3340
|
|
|
3000
3341
|
class PackagePricingInput(sgqlc.types.Input):
|
|
3001
3342
|
__schema__ = schema
|
|
3002
|
-
__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')
|
|
3003
3344
|
environment_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='environmentId')
|
|
3004
3345
|
minimum_spend = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(MinimumSpendInput)), graphql_name='minimumSpend')
|
|
3005
3346
|
overage_billing_period = sgqlc.types.Field(OverageBillingPeriod, graphql_name='overageBillingPeriod')
|
|
3006
3347
|
overage_pricing_models = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(OveragePricingModelCreateInput)), graphql_name='overagePricingModels')
|
|
3007
3348
|
package_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='packageId')
|
|
3008
|
-
|
|
3349
|
+
price_group_package_billing_id = sgqlc.types.Field(String, graphql_name='priceGroupPackageBillingId')
|
|
3009
3350
|
pricing_models = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PricingModelCreateInput')), graphql_name='pricingModels')
|
|
3010
3351
|
pricing_type = sgqlc.types.Field(sgqlc.types.non_null(PricingType), graphql_name='pricingType')
|
|
3011
3352
|
|
|
@@ -3055,6 +3396,14 @@ class PaymentCollectionFilterComparison(sgqlc.types.Input):
|
|
|
3055
3396
|
not_like = sgqlc.types.Field(PaymentCollection, graphql_name='notLike')
|
|
3056
3397
|
|
|
3057
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
|
+
|
|
3058
3407
|
class PaywallColorsPaletteInput(sgqlc.types.Input):
|
|
3059
3408
|
__schema__ = schema
|
|
3060
3409
|
__field_names__ = ('background_color', 'border_color', 'current_plan_background', 'primary', 'text_color')
|
|
@@ -3102,7 +3451,7 @@ class PlanCreateInput(sgqlc.types.Input):
|
|
|
3102
3451
|
|
|
3103
3452
|
class PlanFilter(sgqlc.types.Input):
|
|
3104
3453
|
__schema__ = schema
|
|
3105
|
-
__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')
|
|
3106
3455
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PlanFilter')), graphql_name='and')
|
|
3107
3456
|
billing_id = sgqlc.types.Field('StringFieldComparison', graphql_name='billingId')
|
|
3108
3457
|
compatible_addons = sgqlc.types.Field('PlanFilterAddonFilter', graphql_name='compatibleAddons')
|
|
@@ -3112,6 +3461,7 @@ class PlanFilter(sgqlc.types.Input):
|
|
|
3112
3461
|
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
3113
3462
|
id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='id')
|
|
3114
3463
|
is_latest = sgqlc.types.Field(BooleanFieldComparison, graphql_name='isLatest')
|
|
3464
|
+
offer = sgqlc.types.Field('PlanFilterOfferFilter', graphql_name='offer')
|
|
3115
3465
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PlanFilter')), graphql_name='or')
|
|
3116
3466
|
pricing_type = sgqlc.types.Field('PricingTypeFilterComparison', graphql_name='pricingType')
|
|
3117
3467
|
product = sgqlc.types.Field('PlanFilterProductFilter', graphql_name='product')
|
|
@@ -3142,9 +3492,24 @@ class PlanFilterAddonFilter(sgqlc.types.Input):
|
|
|
3142
3492
|
version_number = sgqlc.types.Field(IntFieldComparison, graphql_name='versionNumber')
|
|
3143
3493
|
|
|
3144
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
|
+
|
|
3145
3510
|
class PlanFilterProductFilter(sgqlc.types.Input):
|
|
3146
3511
|
__schema__ = schema
|
|
3147
|
-
__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')
|
|
3148
3513
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PlanFilterProductFilter')), graphql_name='and')
|
|
3149
3514
|
aws_marketplace_product_code = sgqlc.types.Field('StringFieldComparison', graphql_name='awsMarketplaceProductCode')
|
|
3150
3515
|
aws_marketplace_product_id = sgqlc.types.Field('StringFieldComparison', graphql_name='awsMarketplaceProductId')
|
|
@@ -3157,6 +3522,7 @@ class PlanFilterProductFilter(sgqlc.types.Input):
|
|
|
3157
3522
|
multiple_subscriptions = sgqlc.types.Field(BooleanFieldComparison, graphql_name='multipleSubscriptions')
|
|
3158
3523
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PlanFilterProductFilter')), graphql_name='or')
|
|
3159
3524
|
ref_id = sgqlc.types.Field('StringFieldComparison', graphql_name='refId')
|
|
3525
|
+
status = sgqlc.types.Field('ProductStatusFilterComparison', graphql_name='status')
|
|
3160
3526
|
updated_at = sgqlc.types.Field(DateFieldComparison, graphql_name='updatedAt')
|
|
3161
3527
|
|
|
3162
3528
|
|
|
@@ -3191,6 +3557,19 @@ class PreparePaymentMethodFormInput(sgqlc.types.Input):
|
|
|
3191
3557
|
integration_id = sgqlc.types.Field(String, graphql_name='integrationId')
|
|
3192
3558
|
|
|
3193
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
|
+
|
|
3194
3573
|
class PreviewNextInvoiceInput(sgqlc.types.Input):
|
|
3195
3574
|
__schema__ = schema
|
|
3196
3575
|
__field_names__ = ('environment_id', 'subscription_id')
|
|
@@ -3200,13 +3579,14 @@ class PreviewNextInvoiceInput(sgqlc.types.Input):
|
|
|
3200
3579
|
|
|
3201
3580
|
class PreviewSubscriptionInput(sgqlc.types.Input):
|
|
3202
3581
|
__schema__ = schema
|
|
3203
|
-
__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')
|
|
3204
3583
|
addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonInput')), graphql_name='addons')
|
|
3205
3584
|
applied_coupon = sgqlc.types.Field('SubscriptionCouponInput', graphql_name='appliedCoupon')
|
|
3206
3585
|
billable_features = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(BillableFeatureInput)), graphql_name='billableFeatures')
|
|
3207
3586
|
billing_country_code = sgqlc.types.Field(String, graphql_name='billingCountryCode')
|
|
3208
3587
|
billing_information = sgqlc.types.Field('SubscriptionBillingInfo', graphql_name='billingInformation')
|
|
3209
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')
|
|
3210
3590
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
3211
3591
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
3212
3592
|
paying_customer_id = sgqlc.types.Field(String, graphql_name='payingCustomerId')
|
|
@@ -3256,10 +3636,12 @@ class PriceFilterPackageDTOFilter(sgqlc.types.Input):
|
|
|
3256
3636
|
|
|
3257
3637
|
class PriceOverrideInput(sgqlc.types.Input):
|
|
3258
3638
|
__schema__ = schema
|
|
3259
|
-
__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')
|
|
3260
3640
|
addon_id = sgqlc.types.Field(String, graphql_name='addonId')
|
|
3261
3641
|
base_charge = sgqlc.types.Field(Boolean, graphql_name='baseCharge')
|
|
3262
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')
|
|
3263
3645
|
feature_id = sgqlc.types.Field(String, graphql_name='featureId')
|
|
3264
3646
|
price = sgqlc.types.Field(MoneyInputDTO, graphql_name='price')
|
|
3265
3647
|
tiers = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PriceTierInput')), graphql_name='tiers')
|
|
@@ -3267,10 +3649,12 @@ class PriceOverrideInput(sgqlc.types.Input):
|
|
|
3267
3649
|
|
|
3268
3650
|
class PricePeriodInput(sgqlc.types.Input):
|
|
3269
3651
|
__schema__ = schema
|
|
3270
|
-
__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')
|
|
3271
3653
|
billing_country_code = sgqlc.types.Field(String, graphql_name='billingCountryCode')
|
|
3272
3654
|
billing_period = sgqlc.types.Field(sgqlc.types.non_null(BillingPeriod), graphql_name='billingPeriod')
|
|
3273
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')
|
|
3274
3658
|
price = sgqlc.types.Field(MoneyInputDTO, graphql_name='price')
|
|
3275
3659
|
tiers = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PriceTierInput')), graphql_name='tiers')
|
|
3276
3660
|
|
|
@@ -3293,8 +3677,9 @@ class PriceTierInput(sgqlc.types.Input):
|
|
|
3293
3677
|
|
|
3294
3678
|
class PricingModelCreateInput(sgqlc.types.Input):
|
|
3295
3679
|
__schema__ = schema
|
|
3296
|
-
__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')
|
|
3297
3681
|
billing_cadence = sgqlc.types.Field(BillingCadence, graphql_name='billingCadence')
|
|
3682
|
+
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
3298
3683
|
billing_model = sgqlc.types.Field(sgqlc.types.non_null(BillingModel), graphql_name='billingModel')
|
|
3299
3684
|
feature_id = sgqlc.types.Field(String, graphql_name='featureId')
|
|
3300
3685
|
max_unit_quantity = sgqlc.types.Field(Float, graphql_name='maxUnitQuantity')
|
|
@@ -3303,6 +3688,7 @@ class PricingModelCreateInput(sgqlc.types.Input):
|
|
|
3303
3688
|
price_periods = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(PricePeriodInput))), graphql_name='pricePeriods')
|
|
3304
3689
|
reset_period = sgqlc.types.Field(EntitlementResetPeriod, graphql_name='resetPeriod')
|
|
3305
3690
|
tiers_mode = sgqlc.types.Field(TiersMode, graphql_name='tiersMode')
|
|
3691
|
+
top_up_custom_currency_id = sgqlc.types.Field(String, graphql_name='topUpCustomCurrencyId')
|
|
3306
3692
|
weekly_reset_period_configuration = sgqlc.types.Field('WeeklyResetPeriodConfigInput', graphql_name='weeklyResetPeriodConfiguration')
|
|
3307
3693
|
yearly_reset_period_configuration = sgqlc.types.Field('YearlyResetPeriodConfigInput', graphql_name='yearlyResetPeriodConfiguration')
|
|
3308
3694
|
|
|
@@ -3339,7 +3725,7 @@ class ProductCreateInput(sgqlc.types.Input):
|
|
|
3339
3725
|
|
|
3340
3726
|
class ProductFilter(sgqlc.types.Input):
|
|
3341
3727
|
__schema__ = schema
|
|
3342
|
-
__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')
|
|
3343
3729
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ProductFilter')), graphql_name='and')
|
|
3344
3730
|
aws_marketplace_product_code = sgqlc.types.Field('StringFieldComparison', graphql_name='awsMarketplaceProductCode')
|
|
3345
3731
|
aws_marketplace_product_id = sgqlc.types.Field('StringFieldComparison', graphql_name='awsMarketplaceProductId')
|
|
@@ -3352,6 +3738,7 @@ class ProductFilter(sgqlc.types.Input):
|
|
|
3352
3738
|
multiple_subscriptions = sgqlc.types.Field(BooleanFieldComparison, graphql_name='multipleSubscriptions')
|
|
3353
3739
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ProductFilter')), graphql_name='or')
|
|
3354
3740
|
ref_id = sgqlc.types.Field('StringFieldComparison', graphql_name='refId')
|
|
3741
|
+
status = sgqlc.types.Field('ProductStatusFilterComparison', graphql_name='status')
|
|
3355
3742
|
updated_at = sgqlc.types.Field(DateFieldComparison, graphql_name='updatedAt')
|
|
3356
3743
|
|
|
3357
3744
|
|
|
@@ -3375,6 +3762,25 @@ class ProductSort(sgqlc.types.Input):
|
|
|
3375
3762
|
nulls = sgqlc.types.Field(SortNulls, graphql_name='nulls')
|
|
3376
3763
|
|
|
3377
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
|
+
|
|
3378
3784
|
class ProductUpdateInput(sgqlc.types.Input):
|
|
3379
3785
|
__schema__ = schema
|
|
3380
3786
|
__field_names__ = ('additional_meta_data', 'auto_cancellation_rules', 'description', 'display_name', 'multiple_subscriptions', 'product_settings', 'usage_reset_cutoff_rule')
|
|
@@ -3401,12 +3807,13 @@ class PromotionalEntitlementFilter(sgqlc.types.Input):
|
|
|
3401
3807
|
|
|
3402
3808
|
class PromotionalEntitlementInput(sgqlc.types.Input):
|
|
3403
3809
|
__schema__ = schema
|
|
3404
|
-
__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')
|
|
3405
3811
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
3406
3812
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
3407
3813
|
end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
|
|
3408
3814
|
enum_values = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='enumValues')
|
|
3409
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')
|
|
3410
3817
|
feature_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='featureId')
|
|
3411
3818
|
has_soft_limit = sgqlc.types.Field(Boolean, graphql_name='hasSoftLimit')
|
|
3412
3819
|
has_unlimited_usage = sgqlc.types.Field(Boolean, graphql_name='hasUnlimitedUsage')
|
|
@@ -3485,7 +3892,7 @@ class ProvisionCustomerInput(sgqlc.types.Input):
|
|
|
3485
3892
|
|
|
3486
3893
|
class ProvisionCustomerSubscriptionInput(sgqlc.types.Input):
|
|
3487
3894
|
__schema__ = schema
|
|
3488
|
-
__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')
|
|
3489
3896
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
3490
3897
|
addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonInput')), graphql_name='addons')
|
|
3491
3898
|
applied_coupon = sgqlc.types.Field('SubscriptionCouponInput', graphql_name='appliedCoupon')
|
|
@@ -3496,6 +3903,7 @@ class ProvisionCustomerSubscriptionInput(sgqlc.types.Input):
|
|
|
3496
3903
|
billing_information = sgqlc.types.Field('SubscriptionBillingInfo', graphql_name='billingInformation')
|
|
3497
3904
|
billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
|
|
3498
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')
|
|
3499
3907
|
minimum_spend = sgqlc.types.Field('SubscriptionMinimumSpendValueInput', graphql_name='minimumSpend')
|
|
3500
3908
|
payment_collection_method = sgqlc.types.Field(PaymentCollectionMethod, graphql_name='paymentCollectionMethod')
|
|
3501
3909
|
plan_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='planId')
|
|
@@ -3521,7 +3929,7 @@ class ProvisionSandboxInput(sgqlc.types.Input):
|
|
|
3521
3929
|
|
|
3522
3930
|
class ProvisionSubscription(sgqlc.types.Input):
|
|
3523
3931
|
__schema__ = schema
|
|
3524
|
-
__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')
|
|
3525
3933
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
3526
3934
|
addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonInput')), graphql_name='addons')
|
|
3527
3935
|
applied_coupon = sgqlc.types.Field('SubscriptionCouponInput', graphql_name='appliedCoupon')
|
|
@@ -3532,6 +3940,7 @@ class ProvisionSubscription(sgqlc.types.Input):
|
|
|
3532
3940
|
billing_information = sgqlc.types.Field('SubscriptionBillingInfo', graphql_name='billingInformation')
|
|
3533
3941
|
billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
|
|
3534
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')
|
|
3535
3944
|
checkout_options = sgqlc.types.Field(CheckoutOptions, graphql_name='checkoutOptions')
|
|
3536
3945
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
3537
3946
|
minimum_spend = sgqlc.types.Field('SubscriptionMinimumSpendValueInput', graphql_name='minimumSpend')
|
|
@@ -3555,7 +3964,7 @@ class ProvisionSubscription(sgqlc.types.Input):
|
|
|
3555
3964
|
|
|
3556
3965
|
class ProvisionSubscriptionInput(sgqlc.types.Input):
|
|
3557
3966
|
__schema__ = schema
|
|
3558
|
-
__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')
|
|
3559
3968
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
3560
3969
|
addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonInput')), graphql_name='addons')
|
|
3561
3970
|
applied_coupon = sgqlc.types.Field('SubscriptionCouponInput', graphql_name='appliedCoupon')
|
|
@@ -3566,6 +3975,7 @@ class ProvisionSubscriptionInput(sgqlc.types.Input):
|
|
|
3566
3975
|
billing_information = sgqlc.types.Field('SubscriptionBillingInfo', graphql_name='billingInformation')
|
|
3567
3976
|
billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
|
|
3568
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')
|
|
3569
3979
|
checkout_options = sgqlc.types.Field(CheckoutOptions, graphql_name='checkoutOptions')
|
|
3570
3980
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
3571
3981
|
minimum_spend = sgqlc.types.Field('SubscriptionMinimumSpendValueInput', graphql_name='minimumSpend')
|
|
@@ -3587,6 +3997,13 @@ class ProvisionSubscriptionInput(sgqlc.types.Input):
|
|
|
3587
3997
|
unit_quantity = sgqlc.types.Field(Float, graphql_name='unitQuantity')
|
|
3588
3998
|
|
|
3589
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
|
+
|
|
3590
4007
|
class RecalculateEntitlementsInput(sgqlc.types.Input):
|
|
3591
4008
|
__schema__ = schema
|
|
3592
4009
|
__field_names__ = ('customer_ids', 'environment_id', 'for_all_customers', 'side_effects_options')
|
|
@@ -3648,6 +4065,13 @@ class RemoveFeatureGroupFromPackageInput(sgqlc.types.Input):
|
|
|
3648
4065
|
package_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='packageId')
|
|
3649
4066
|
|
|
3650
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
|
+
|
|
3651
4075
|
class ReportUsageBaseInput(sgqlc.types.Input):
|
|
3652
4076
|
__schema__ = schema
|
|
3653
4077
|
__field_names__ = ('created_at', 'customer_id', 'dimensions', 'feature_id', 'resource_id', 'update_behavior', 'value')
|
|
@@ -3697,12 +4121,34 @@ class RevokePromotionalEntitlementInput(sgqlc.types.Input):
|
|
|
3697
4121
|
feature_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='featureId')
|
|
3698
4122
|
|
|
3699
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
|
+
|
|
3700
4132
|
class SalesforceCredentialsInput(sgqlc.types.Input):
|
|
3701
4133
|
__schema__ = schema
|
|
3702
4134
|
__field_names__ = ('domain',)
|
|
3703
4135
|
domain = sgqlc.types.Field(String, graphql_name='domain')
|
|
3704
4136
|
|
|
3705
4137
|
|
|
4138
|
+
class SaveAutoRechargeSettingsInput(sgqlc.types.Input):
|
|
4139
|
+
__schema__ = schema
|
|
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
|
+
|
|
3706
4152
|
class SetAccessRolesInput(sgqlc.types.Input):
|
|
3707
4153
|
__schema__ = schema
|
|
3708
4154
|
__field_names__ = ('account_role', 'non_production_role', 'production_role', 'user_id')
|
|
@@ -3733,6 +4179,13 @@ class SetCouponOnCustomerInput(sgqlc.types.Input):
|
|
|
3733
4179
|
relation_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='relationId')
|
|
3734
4180
|
|
|
3735
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
|
+
|
|
3736
4189
|
class SetExperimentOnCustomerInput(sgqlc.types.Input):
|
|
3737
4190
|
__schema__ = schema
|
|
3738
4191
|
__field_names__ = ('id', 'relation_id')
|
|
@@ -3779,10 +4232,12 @@ class SetPlanCompatiblePackageGroups(sgqlc.types.Input):
|
|
|
3779
4232
|
|
|
3780
4233
|
class SnowflakeCredentialsInput(sgqlc.types.Input):
|
|
3781
4234
|
__schema__ = schema
|
|
3782
|
-
__field_names__ = ('database', 'host', 'password', 'role', 'schema_name', 'username', 'warehouse')
|
|
4235
|
+
__field_names__ = ('database', 'host', 'passphrase', 'password', 'private_key', 'role', 'schema_name', 'username', 'warehouse')
|
|
3783
4236
|
database = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='database')
|
|
3784
4237
|
host = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='host')
|
|
3785
|
-
|
|
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')
|
|
3786
4241
|
role = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='role')
|
|
3787
4242
|
schema_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='schemaName')
|
|
3788
4243
|
username = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='username')
|
|
@@ -3930,7 +4385,7 @@ class SubscriptionAddonSort(sgqlc.types.Input):
|
|
|
3930
4385
|
|
|
3931
4386
|
class SubscriptionBillingInfo(sgqlc.types.Input):
|
|
3932
4387
|
__schema__ = schema
|
|
3933
|
-
__field_names__ = ('billing_address', 'charge_on_behalf_of_account', 'coupon_id', 'integration_id', 'invoice_days_until_due', 'is_backdated', 'is_invoice_paid', 'metadata', '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')
|
|
3934
4389
|
billing_address = sgqlc.types.Field(BillingAddress, graphql_name='billingAddress')
|
|
3935
4390
|
charge_on_behalf_of_account = sgqlc.types.Field(String, graphql_name='chargeOnBehalfOfAccount')
|
|
3936
4391
|
coupon_id = sgqlc.types.Field(String, graphql_name='couponId')
|
|
@@ -3939,6 +4394,8 @@ class SubscriptionBillingInfo(sgqlc.types.Input):
|
|
|
3939
4394
|
is_backdated = sgqlc.types.Field(Boolean, graphql_name='isBackdated')
|
|
3940
4395
|
is_invoice_paid = sgqlc.types.Field(Boolean, graphql_name='isInvoicePaid')
|
|
3941
4396
|
metadata = sgqlc.types.Field(JSON, graphql_name='metadata')
|
|
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')
|
|
3942
4399
|
tax_percentage = sgqlc.types.Field(Float, graphql_name='taxPercentage')
|
|
3943
4400
|
tax_rate_ids = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='taxRateIds')
|
|
3944
4401
|
|
|
@@ -3964,7 +4421,8 @@ class SubscriptionCancelReasonFilterComparison(sgqlc.types.Input):
|
|
|
3964
4421
|
|
|
3965
4422
|
class SubscriptionCancellationInput(sgqlc.types.Input):
|
|
3966
4423
|
__schema__ = schema
|
|
3967
|
-
__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')
|
|
3968
4426
|
end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
|
|
3969
4427
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
3970
4428
|
prorate = sgqlc.types.Field(Boolean, graphql_name='prorate')
|
|
@@ -4086,7 +4544,7 @@ class SubscriptionEntitlementSort(sgqlc.types.Input):
|
|
|
4086
4544
|
|
|
4087
4545
|
class SubscriptionInput(sgqlc.types.Input):
|
|
4088
4546
|
__schema__ = schema
|
|
4089
|
-
__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')
|
|
4090
4548
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
4091
4549
|
addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(SubscriptionAddonInput)), graphql_name='addons')
|
|
4092
4550
|
applied_coupon = sgqlc.types.Field(SubscriptionCouponInput, graphql_name='appliedCoupon')
|
|
@@ -4097,6 +4555,7 @@ class SubscriptionInput(sgqlc.types.Input):
|
|
|
4097
4555
|
billing_information = sgqlc.types.Field(SubscriptionBillingInfo, graphql_name='billingInformation')
|
|
4098
4556
|
billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
|
|
4099
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')
|
|
4100
4559
|
crm_id = sgqlc.types.Field(String, graphql_name='crmId')
|
|
4101
4560
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
4102
4561
|
end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
|
|
@@ -4228,15 +4687,79 @@ class SubscriptionPriceSort(sgqlc.types.Input):
|
|
|
4228
4687
|
|
|
4229
4688
|
class SubscriptionQueryFilter(sgqlc.types.Input):
|
|
4230
4689
|
__schema__ = schema
|
|
4231
|
-
__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')
|
|
4232
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')
|
|
4233
4694
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
4695
|
+
customer = sgqlc.types.Field('SubscriptionQueryFilterCustomerFilter', graphql_name='customer')
|
|
4234
4696
|
customer_id = sgqlc.types.Field(StringFieldComparison, graphql_name='customerId')
|
|
4697
|
+
end_date = sgqlc.types.Field(DateFieldComparison, graphql_name='endDate')
|
|
4235
4698
|
environment_id = sgqlc.types.Field('UUIDFilterComparison', graphql_name='environmentId')
|
|
4236
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')
|
|
4237
4703
|
product_id = sgqlc.types.Field(StringFieldComparison, graphql_name='productId')
|
|
4704
|
+
resource = sgqlc.types.Field('SubscriptionQueryFilterCustomerResourceFilter', graphql_name='resource')
|
|
4238
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')
|
|
4239
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')
|
|
4240
4763
|
|
|
4241
4764
|
|
|
4242
4765
|
class SubscriptionQuerySort(sgqlc.types.Input):
|
|
@@ -4470,6 +4993,13 @@ class UnArchivePlanInput(sgqlc.types.Input):
|
|
|
4470
4993
|
id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id')
|
|
4471
4994
|
|
|
4472
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
|
+
|
|
4473
5003
|
class UnarchiveCustomerInput(sgqlc.types.Input):
|
|
4474
5004
|
__schema__ = schema
|
|
4475
5005
|
__field_names__ = ('customer_id', 'environment_id')
|
|
@@ -4493,6 +5023,13 @@ class UnitTransformationInput(sgqlc.types.Input):
|
|
|
4493
5023
|
round = sgqlc.types.Field(UnitTransformationRound, graphql_name='round')
|
|
4494
5024
|
|
|
4495
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
|
+
|
|
4496
5033
|
class UnlinkFeatureGroupFromPackageInput(sgqlc.types.Input):
|
|
4497
5034
|
__schema__ = schema
|
|
4498
5035
|
__field_names__ = ('environment_id', 'feature_group_id', 'package_id')
|
|
@@ -4501,13 +5038,22 @@ class UnlinkFeatureGroupFromPackageInput(sgqlc.types.Input):
|
|
|
4501
5038
|
package_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='packageId')
|
|
4502
5039
|
|
|
4503
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
|
+
|
|
4504
5049
|
class UpdateAccountInput(sgqlc.types.Input):
|
|
4505
5050
|
__schema__ = schema
|
|
4506
|
-
__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')
|
|
4507
5052
|
access_method = sgqlc.types.Field(AccountAccessMethod, graphql_name='accessMethod')
|
|
4508
5053
|
account_email_domain = sgqlc.types.Field(String, graphql_name='accountEmailDomain')
|
|
4509
5054
|
default_ssoroles = sgqlc.types.Field(DefaultSSORolesInput, graphql_name='defaultSSORoles')
|
|
4510
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')
|
|
4511
5057
|
subscription_billing_anchor = sgqlc.types.Field(BillingAnchor, graphql_name='subscriptionBillingAnchor')
|
|
4512
5058
|
subscription_proration_behavior = sgqlc.types.Field(ProrationBehavior, graphql_name='subscriptionProrationBehavior')
|
|
4513
5059
|
timezone = sgqlc.types.Field(String, graphql_name='timezone')
|
|
@@ -4538,12 +5084,14 @@ class UpdateCreditGrantInput(sgqlc.types.Input):
|
|
|
4538
5084
|
|
|
4539
5085
|
class UpdateCustomCurrencyInput(sgqlc.types.Input):
|
|
4540
5086
|
__schema__ = schema
|
|
4541
|
-
__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')
|
|
4542
5088
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
4543
5089
|
currency_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='currencyId')
|
|
5090
|
+
description = sgqlc.types.Field(String, graphql_name='description')
|
|
4544
5091
|
display_name = sgqlc.types.Field(String, graphql_name='displayName')
|
|
4545
5092
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
4546
5093
|
symbol = sgqlc.types.Field(String, graphql_name='symbol')
|
|
5094
|
+
units = sgqlc.types.Field(UnitsInput, graphql_name='units')
|
|
4547
5095
|
|
|
4548
5096
|
|
|
4549
5097
|
class UpdateCustomerInput(sgqlc.types.Input):
|
|
@@ -4609,17 +5157,28 @@ class UpdateHook(sgqlc.types.Input):
|
|
|
4609
5157
|
|
|
4610
5158
|
class UpdateIntegrationInput(sgqlc.types.Input):
|
|
4611
5159
|
__schema__ = schema
|
|
4612
|
-
__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')
|
|
4613
5161
|
auth0_credentials = sgqlc.types.Field(Auth0CredentialsInput, graphql_name='auth0Credentials')
|
|
4614
5162
|
integration_id = sgqlc.types.Field(String, graphql_name='integrationId')
|
|
4615
5163
|
is_default = sgqlc.types.Field(Boolean, graphql_name='isDefault')
|
|
4616
5164
|
open_fgacredentials = sgqlc.types.Field(OpenFGACredentialsInput, graphql_name='openFGACredentials')
|
|
4617
5165
|
salesforce_credentials = sgqlc.types.Field(SalesforceCredentialsInput, graphql_name='salesforceCredentials')
|
|
5166
|
+
snowflake_credentials = sgqlc.types.Field(SnowflakeCredentialsInput, graphql_name='snowflakeCredentials')
|
|
4618
5167
|
stripe_credentials = sgqlc.types.Field('UpdateStripeCredentialsInput', graphql_name='stripeCredentials')
|
|
4619
5168
|
vendor_identifier = sgqlc.types.Field(sgqlc.types.non_null(VendorIdentifier), graphql_name='vendorIdentifier')
|
|
4620
5169
|
zuora_credentials = sgqlc.types.Field('ZuoraCredentialsInput', graphql_name='zuoraCredentials')
|
|
4621
5170
|
|
|
4622
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
|
+
|
|
4623
5182
|
class UpdateOneEnvironmentInput(sgqlc.types.Input):
|
|
4624
5183
|
__schema__ = schema
|
|
4625
5184
|
__field_names__ = ('id', 'update')
|
|
@@ -4699,7 +5258,7 @@ class UpdateSubscriptionEntitlementInput(sgqlc.types.Input):
|
|
|
4699
5258
|
|
|
4700
5259
|
class UpdateSubscriptionInput(sgqlc.types.Input):
|
|
4701
5260
|
__schema__ = schema
|
|
4702
|
-
__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')
|
|
4703
5262
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
4704
5263
|
addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(SubscriptionAddonInput)), graphql_name='addons')
|
|
4705
5264
|
applied_coupon = sgqlc.types.Field(SubscriptionCouponInput, graphql_name='appliedCoupon')
|
|
@@ -4708,6 +5267,7 @@ class UpdateSubscriptionInput(sgqlc.types.Input):
|
|
|
4708
5267
|
billing_information = sgqlc.types.Field(SubscriptionBillingInfo, graphql_name='billingInformation')
|
|
4709
5268
|
billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
|
|
4710
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')
|
|
4711
5271
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
4712
5272
|
minimum_spend = sgqlc.types.Field(SubscriptionMinimumSpendValueInput, graphql_name='minimumSpend')
|
|
4713
5273
|
price_overrides = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(PriceOverrideInput)), graphql_name='priceOverrides')
|
|
@@ -4808,8 +5368,9 @@ class UsageMeasurementFilter(sgqlc.types.Input):
|
|
|
4808
5368
|
|
|
4809
5369
|
class UsageMeasurementFilterCustomerFilter(sgqlc.types.Input):
|
|
4810
5370
|
__schema__ = schema
|
|
4811
|
-
__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')
|
|
4812
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')
|
|
4813
5374
|
billing_id = sgqlc.types.Field(StringFieldComparison, graphql_name='billingId')
|
|
4814
5375
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
4815
5376
|
crm_hubspot_company_id = sgqlc.types.Field(StringFieldComparison, graphql_name='crmHubspotCompanyId')
|
|
@@ -4880,6 +5441,13 @@ class VendorIdentifierFilterComparison(sgqlc.types.Input):
|
|
|
4880
5441
|
not_like = sgqlc.types.Field(VendorIdentifier, graphql_name='notLike')
|
|
4881
5442
|
|
|
4882
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
|
+
|
|
4883
5451
|
class WeeklyResetPeriodConfigInput(sgqlc.types.Input):
|
|
4884
5452
|
__schema__ = schema
|
|
4885
5453
|
__field_names__ = ('according_to',)
|
|
@@ -4909,12 +5477,16 @@ class YearlyResetPeriodConfigInput(sgqlc.types.Input):
|
|
|
4909
5477
|
|
|
4910
5478
|
class ZuoraCredentialsInput(sgqlc.types.Input):
|
|
4911
5479
|
__schema__ = schema
|
|
4912
|
-
__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')
|
|
4913
5481
|
base_url = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='baseUrl')
|
|
4914
5482
|
client_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientId')
|
|
4915
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')
|
|
4916
5486
|
payment_gateway_id = sgqlc.types.Field(String, graphql_name='paymentGatewayId')
|
|
4917
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')
|
|
4918
5490
|
stripe_publishable_key = sgqlc.types.Field(String, graphql_name='stripePublishableKey')
|
|
4919
5491
|
stripe_secret_key = sgqlc.types.Field(String, graphql_name='stripeSecretKey')
|
|
4920
5492
|
|
|
@@ -4933,12 +5505,13 @@ class AccessRoles(sgqlc.types.Type):
|
|
|
4933
5505
|
|
|
4934
5506
|
class Account(sgqlc.types.Type):
|
|
4935
5507
|
__schema__ = schema
|
|
4936
|
-
__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')
|
|
4937
5509
|
access_method = sgqlc.types.Field(sgqlc.types.non_null(AccountAccessMethod), graphql_name='accessMethod')
|
|
4938
5510
|
account_email_domain = sgqlc.types.Field(String, graphql_name='accountEmailDomain')
|
|
4939
5511
|
account_status = sgqlc.types.Field(AccountStatus, graphql_name='accountStatus')
|
|
4940
5512
|
default_ssoroles = sgqlc.types.Field(AccessRoles, graphql_name='defaultSSORoles')
|
|
4941
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')
|
|
4942
5515
|
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
4943
5516
|
saml_enabled = sgqlc.types.Field(Boolean, graphql_name='samlEnabled')
|
|
4944
5517
|
subscription_billing_anchor = sgqlc.types.Field(BillingAnchor, graphql_name='subscriptionBillingAnchor')
|
|
@@ -4946,6 +5519,14 @@ class Account(sgqlc.types.Type):
|
|
|
4946
5519
|
timezone = sgqlc.types.Field(String, graphql_name='timezone')
|
|
4947
5520
|
|
|
4948
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
|
+
|
|
4949
5530
|
class AccountNotFoundError(sgqlc.types.Type):
|
|
4950
5531
|
__schema__ = schema
|
|
4951
5532
|
__field_names__ = ('code', 'is_validation_error')
|
|
@@ -4963,7 +5544,7 @@ class AdditionalMetaDataChange(sgqlc.types.Type):
|
|
|
4963
5544
|
|
|
4964
5545
|
class Addon(sgqlc.types.Type):
|
|
4965
5546
|
__schema__ = schema
|
|
4966
|
-
__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')
|
|
4967
5548
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
4968
5549
|
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
4969
5550
|
billing_link_url = sgqlc.types.Field(String, graphql_name='billingLinkUrl')
|
|
@@ -4981,6 +5562,7 @@ class Addon(sgqlc.types.Type):
|
|
|
4981
5562
|
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
4982
5563
|
is_latest = sgqlc.types.Field(Boolean, graphql_name='isLatest')
|
|
4983
5564
|
max_quantity = sgqlc.types.Field(Float, graphql_name='maxQuantity')
|
|
5565
|
+
offer = sgqlc.types.Field('Offer', graphql_name='offer')
|
|
4984
5566
|
overage_billing_period = sgqlc.types.Field(OverageBillingPeriod, graphql_name='overageBillingPeriod')
|
|
4985
5567
|
overage_prices = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('Price')), graphql_name='overagePrices')
|
|
4986
5568
|
prices = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('Price')), graphql_name='prices', args=sgqlc.types.ArgDict((
|
|
@@ -5162,6 +5744,36 @@ class ApiKey(sgqlc.types.Type):
|
|
|
5162
5744
|
token = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='token')
|
|
5163
5745
|
|
|
5164
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
|
+
|
|
5165
5777
|
class ApplySubscription(sgqlc.types.Type):
|
|
5166
5778
|
__schema__ = schema
|
|
5167
5779
|
__field_names__ = ('entitlements', 'subscription')
|
|
@@ -5205,6 +5817,81 @@ class AutoCancellationRule(sgqlc.types.Type):
|
|
|
5205
5817
|
target_plan = sgqlc.types.Field(sgqlc.types.non_null('Plan'), graphql_name='targetPlan')
|
|
5206
5818
|
|
|
5207
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
|
+
|
|
5208
5895
|
class AwsDimension(sgqlc.types.Type):
|
|
5209
5896
|
__schema__ = schema
|
|
5210
5897
|
__field_names__ = ('description', 'key', 'name', 'stigg_plan_id', 'stigg_plan_name', 'type', 'unit')
|
|
@@ -5278,6 +5965,45 @@ class BillingPeriodChangeVariables(sgqlc.types.Type):
|
|
|
5278
5965
|
billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
|
|
5279
5966
|
|
|
5280
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
|
+
|
|
5281
6007
|
class BudgetConfiguration(sgqlc.types.Type):
|
|
5282
6008
|
__schema__ = schema
|
|
5283
6009
|
__field_names__ = ('has_soft_limit', 'limit')
|
|
@@ -5322,7 +6048,8 @@ class ChargeSubscriptionUsage(sgqlc.types.Type):
|
|
|
5322
6048
|
|
|
5323
6049
|
class CheckoutBillingIntegration(sgqlc.types.Type):
|
|
5324
6050
|
__schema__ = schema
|
|
5325
|
-
__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')
|
|
5326
6053
|
billing_identifier = sgqlc.types.Field(sgqlc.types.non_null(BillingVendorIdentifier), graphql_name='billingIdentifier')
|
|
5327
6054
|
credentials = sgqlc.types.Field(sgqlc.types.non_null('CheckoutCredentials'), graphql_name='credentials')
|
|
5328
6055
|
|
|
@@ -5355,8 +6082,8 @@ class CheckoutContent(sgqlc.types.Type):
|
|
|
5355
6082
|
class CheckoutCredentials(sgqlc.types.Type):
|
|
5356
6083
|
__schema__ = schema
|
|
5357
6084
|
__field_names__ = ('account_id', 'public_key')
|
|
5358
|
-
account_id = sgqlc.types.Field(
|
|
5359
|
-
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')
|
|
5360
6087
|
|
|
5361
6088
|
|
|
5362
6089
|
class CheckoutState(sgqlc.types.Type):
|
|
@@ -5485,53 +6212,206 @@ class CouponMinAggregate(sgqlc.types.Type):
|
|
|
5485
6212
|
updated_at = sgqlc.types.Field(DateTime, graphql_name='updatedAt')
|
|
5486
6213
|
|
|
5487
6214
|
|
|
5488
|
-
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):
|
|
5489
6352
|
__schema__ = schema
|
|
5490
|
-
__field_names__ = ('
|
|
5491
|
-
|
|
5492
|
-
|
|
5493
|
-
total_consumed = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='totalConsumed')
|
|
5494
|
-
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')
|
|
5495
6356
|
|
|
5496
6357
|
|
|
5497
|
-
class
|
|
6358
|
+
class CreditLedgerEvent(sgqlc.types.Type):
|
|
5498
6359
|
__schema__ = schema
|
|
5499
|
-
__field_names__ = ('
|
|
5500
|
-
|
|
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')
|
|
5501
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')
|
|
5502
6368
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
6369
|
+
timestamp = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='timestamp')
|
|
5503
6370
|
|
|
5504
6371
|
|
|
5505
|
-
class
|
|
6372
|
+
class CreditRate(sgqlc.types.Type):
|
|
5506
6373
|
__schema__ = schema
|
|
5507
|
-
__field_names__ = ('
|
|
5508
|
-
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
6374
|
+
__field_names__ = ('amount', 'cost_formula', 'currency_id', 'custom_currency_id')
|
|
5509
6375
|
amount = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='amount')
|
|
5510
|
-
|
|
5511
|
-
cost = sgqlc.types.Field(sgqlc.types.non_null('Money'), graphql_name='cost')
|
|
5512
|
-
created_at = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='createdAt')
|
|
6376
|
+
cost_formula = sgqlc.types.Field(String, graphql_name='costFormula')
|
|
5513
6377
|
currency_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='currencyId')
|
|
5514
|
-
|
|
5515
|
-
|
|
5516
|
-
|
|
5517
|
-
|
|
5518
|
-
|
|
5519
|
-
|
|
5520
|
-
|
|
5521
|
-
|
|
5522
|
-
|
|
5523
|
-
|
|
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')
|
|
5524
6402
|
|
|
5525
6403
|
|
|
5526
6404
|
class CustomCurrency(sgqlc.types.Type):
|
|
5527
6405
|
__schema__ = schema
|
|
5528
|
-
__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')
|
|
5529
6407
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
5530
6408
|
created_at = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='createdAt')
|
|
5531
6409
|
currency_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='currencyId')
|
|
6410
|
+
description = sgqlc.types.Field(String, graphql_name='description')
|
|
5532
6411
|
display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='displayName')
|
|
5533
6412
|
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
5534
|
-
symbol = sgqlc.types.Field(
|
|
6413
|
+
symbol = sgqlc.types.Field(String, graphql_name='symbol')
|
|
6414
|
+
units = sgqlc.types.Field('Units', graphql_name='units')
|
|
5535
6415
|
updated_at = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='updatedAt')
|
|
5536
6416
|
|
|
5537
6417
|
|
|
@@ -5589,7 +6469,8 @@ class Customer(sgqlc.types.Type):
|
|
|
5589
6469
|
|
|
5590
6470
|
class CustomerAggregateGroupBy(sgqlc.types.Type):
|
|
5591
6471
|
__schema__ = schema
|
|
5592
|
-
__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')
|
|
5593
6474
|
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
5594
6475
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
5595
6476
|
crm_hubspot_company_id = sgqlc.types.Field(String, graphql_name='crmHubspotCompanyId')
|
|
@@ -5624,7 +6505,8 @@ class CustomerConnection(sgqlc.types.relay.Connection):
|
|
|
5624
6505
|
|
|
5625
6506
|
class CustomerCountAggregate(sgqlc.types.Type):
|
|
5626
6507
|
__schema__ = schema
|
|
5627
|
-
__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')
|
|
5628
6510
|
billing_id = sgqlc.types.Field(Int, graphql_name='billingId')
|
|
5629
6511
|
created_at = sgqlc.types.Field(Int, graphql_name='createdAt')
|
|
5630
6512
|
crm_hubspot_company_id = sgqlc.types.Field(Int, graphql_name='crmHubspotCompanyId')
|
|
@@ -5651,7 +6533,8 @@ class CustomerEdge(sgqlc.types.Type):
|
|
|
5651
6533
|
|
|
5652
6534
|
class CustomerMaxAggregate(sgqlc.types.Type):
|
|
5653
6535
|
__schema__ = schema
|
|
5654
|
-
__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')
|
|
5655
6538
|
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
5656
6539
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
5657
6540
|
crm_hubspot_company_id = sgqlc.types.Field(String, graphql_name='crmHubspotCompanyId')
|
|
@@ -5671,7 +6554,8 @@ class CustomerMaxAggregate(sgqlc.types.Type):
|
|
|
5671
6554
|
|
|
5672
6555
|
class CustomerMinAggregate(sgqlc.types.Type):
|
|
5673
6556
|
__schema__ = schema
|
|
5674
|
-
__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')
|
|
5675
6559
|
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
5676
6560
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
5677
6561
|
crm_hubspot_company_id = sgqlc.types.Field(String, graphql_name='crmHubspotCompanyId')
|
|
@@ -5805,20 +6689,22 @@ class CustomerPortalSubscription(sgqlc.types.Type):
|
|
|
5805
6689
|
|
|
5806
6690
|
class CustomerPortalSubscriptionPrice(sgqlc.types.Type):
|
|
5807
6691
|
__schema__ = schema
|
|
5808
|
-
__field_names__ = ('billing_model', 'billing_period', 'block_size', 'feature', 'price')
|
|
6692
|
+
__field_names__ = ('billing_model', 'billing_period', 'block_size', 'credit_rate', 'feature', 'price')
|
|
5809
6693
|
billing_model = sgqlc.types.Field(BillingModel, graphql_name='billingModel')
|
|
5810
6694
|
billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
|
|
5811
6695
|
block_size = sgqlc.types.Field(Float, graphql_name='blockSize')
|
|
6696
|
+
credit_rate = sgqlc.types.Field(CreditRate, graphql_name='creditRate')
|
|
5812
6697
|
feature = sgqlc.types.Field(CustomerPortalPricingFeature, graphql_name='feature')
|
|
5813
6698
|
price = sgqlc.types.Field('Money', graphql_name='price')
|
|
5814
6699
|
|
|
5815
6700
|
|
|
5816
6701
|
class CustomerPortalSubscriptionPricing(sgqlc.types.Type):
|
|
5817
6702
|
__schema__ = schema
|
|
5818
|
-
__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')
|
|
5819
6704
|
billing_country_code = sgqlc.types.Field(String, graphql_name='billingCountryCode')
|
|
5820
6705
|
billing_model = sgqlc.types.Field(BillingModel, graphql_name='billingModel')
|
|
5821
6706
|
billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
|
|
6707
|
+
credit_rate = sgqlc.types.Field(CreditRate, graphql_name='creditRate')
|
|
5822
6708
|
feature = sgqlc.types.Field(CustomerPortalPricingFeature, graphql_name='feature')
|
|
5823
6709
|
price = sgqlc.types.Field('Money', graphql_name='price')
|
|
5824
6710
|
pricing_type = sgqlc.types.Field(sgqlc.types.non_null(PricingType), graphql_name='pricingType')
|
|
@@ -6134,13 +7020,14 @@ class DefaultTrialConfigChange(sgqlc.types.Type):
|
|
|
6134
7020
|
|
|
6135
7021
|
class DowngradeChangeVariables(sgqlc.types.Type):
|
|
6136
7022
|
__schema__ = schema
|
|
6137
|
-
__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')
|
|
6138
7024
|
addon_ref_ids = sgqlc.types.Field(String, graphql_name='addonRefIds')
|
|
6139
7025
|
addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PlanChangeAddon')), graphql_name='addons')
|
|
6140
7026
|
billable_features = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(BillableFeature)), graphql_name='billableFeatures')
|
|
6141
7027
|
billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
|
|
6142
7028
|
downgrade_plan_ref_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='downgradePlanRefId')
|
|
6143
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')
|
|
6144
7031
|
|
|
6145
7032
|
|
|
6146
7033
|
class DumpEnvironmentForMergeComparison(sgqlc.types.Type):
|
|
@@ -6176,8 +7063,9 @@ class EligibleForTrial(sgqlc.types.Type):
|
|
|
6176
7063
|
|
|
6177
7064
|
class Entitlement(sgqlc.types.Type):
|
|
6178
7065
|
__schema__ = schema
|
|
6179
|
-
__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')
|
|
6180
7067
|
access_denied_reason = sgqlc.types.Field(AccessDeniedReason, graphql_name='accessDeniedReason')
|
|
7068
|
+
credit_rate = sgqlc.types.Field(CreditRate, graphql_name='creditRate')
|
|
6181
7069
|
current_usage = sgqlc.types.Field(Float, graphql_name='currentUsage')
|
|
6182
7070
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
6183
7071
|
display_name_override = sgqlc.types.Field(String, graphql_name='displayNameOverride')
|
|
@@ -6200,6 +7088,7 @@ class Entitlement(sgqlc.types.Type):
|
|
|
6200
7088
|
usage_period_end = sgqlc.types.Field(DateTime, graphql_name='usagePeriodEnd')
|
|
6201
7089
|
usage_period_start = sgqlc.types.Field(DateTime, graphql_name='usagePeriodStart')
|
|
6202
7090
|
usage_updated_at = sgqlc.types.Field(DateTime, graphql_name='usageUpdatedAt')
|
|
7091
|
+
valid_until = sgqlc.types.Field(Float, graphql_name='validUntil')
|
|
6203
7092
|
|
|
6204
7093
|
|
|
6205
7094
|
class EntitlementFeature(sgqlc.types.Type):
|
|
@@ -6241,8 +7130,9 @@ class EntitlementSummary(sgqlc.types.Type):
|
|
|
6241
7130
|
|
|
6242
7131
|
class EntitlementWithSummary(sgqlc.types.Type):
|
|
6243
7132
|
__schema__ = schema
|
|
6244
|
-
__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')
|
|
6245
7134
|
access_denied_reason = sgqlc.types.Field(AccessDeniedReason, graphql_name='accessDeniedReason')
|
|
7135
|
+
credit_rate = sgqlc.types.Field(CreditRate, graphql_name='creditRate')
|
|
6246
7136
|
current_usage = sgqlc.types.Field(Float, graphql_name='currentUsage')
|
|
6247
7137
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
6248
7138
|
display_name_override = sgqlc.types.Field(String, graphql_name='displayNameOverride')
|
|
@@ -6266,6 +7156,14 @@ class EntitlementWithSummary(sgqlc.types.Type):
|
|
|
6266
7156
|
usage_period_end = sgqlc.types.Field(DateTime, graphql_name='usagePeriodEnd')
|
|
6267
7157
|
usage_period_start = sgqlc.types.Field(DateTime, graphql_name='usagePeriodStart')
|
|
6268
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')
|
|
6269
7167
|
|
|
6270
7168
|
|
|
6271
7169
|
class EntitlementsUpdated(sgqlc.types.Type):
|
|
@@ -6385,7 +7283,7 @@ class EventActorInfo(sgqlc.types.Type):
|
|
|
6385
7283
|
|
|
6386
7284
|
class EventLog(sgqlc.types.Type):
|
|
6387
7285
|
__schema__ = schema
|
|
6388
|
-
__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')
|
|
6389
7287
|
account_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='accountId')
|
|
6390
7288
|
actor = sgqlc.types.Field(EventActorInfo, graphql_name='actor')
|
|
6391
7289
|
created_at = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='createdAt')
|
|
@@ -6397,18 +7295,21 @@ class EventLog(sgqlc.types.Type):
|
|
|
6397
7295
|
parent_entity_id = sgqlc.types.Field(String, graphql_name='parentEntityId')
|
|
6398
7296
|
payload = sgqlc.types.Field(sgqlc.types.non_null(JSON), graphql_name='payload')
|
|
6399
7297
|
request = sgqlc.types.Field('EventRequest', graphql_name='request')
|
|
7298
|
+
trace_id = sgqlc.types.Field(String, graphql_name='traceId')
|
|
6400
7299
|
webhooks = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('EventWebhook')), graphql_name='webhooks')
|
|
6401
7300
|
|
|
6402
7301
|
|
|
6403
7302
|
class EventLogAggregateGroupBy(sgqlc.types.Type):
|
|
6404
7303
|
__schema__ = schema
|
|
6405
|
-
__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')
|
|
6406
7305
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
6407
7306
|
entity_id = sgqlc.types.Field(String, graphql_name='entityId')
|
|
7307
|
+
entity_type = sgqlc.types.Field(EventEntityType, graphql_name='entityType')
|
|
6408
7308
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
6409
7309
|
event_log_type = sgqlc.types.Field(EventLogType, graphql_name='eventLogType')
|
|
6410
7310
|
id = sgqlc.types.Field(String, graphql_name='id')
|
|
6411
7311
|
parent_entity_id = sgqlc.types.Field(String, graphql_name='parentEntityId')
|
|
7312
|
+
trace_id = sgqlc.types.Field(String, graphql_name='traceId')
|
|
6412
7313
|
|
|
6413
7314
|
|
|
6414
7315
|
class EventLogConnection(sgqlc.types.relay.Connection):
|
|
@@ -6420,13 +7321,15 @@ class EventLogConnection(sgqlc.types.relay.Connection):
|
|
|
6420
7321
|
|
|
6421
7322
|
class EventLogCountAggregate(sgqlc.types.Type):
|
|
6422
7323
|
__schema__ = schema
|
|
6423
|
-
__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')
|
|
6424
7325
|
created_at = sgqlc.types.Field(Int, graphql_name='createdAt')
|
|
6425
7326
|
entity_id = sgqlc.types.Field(Int, graphql_name='entityId')
|
|
7327
|
+
entity_type = sgqlc.types.Field(Int, graphql_name='entityType')
|
|
6426
7328
|
environment_id = sgqlc.types.Field(Int, graphql_name='environmentId')
|
|
6427
7329
|
event_log_type = sgqlc.types.Field(Int, graphql_name='eventLogType')
|
|
6428
7330
|
id = sgqlc.types.Field(Int, graphql_name='id')
|
|
6429
7331
|
parent_entity_id = sgqlc.types.Field(Int, graphql_name='parentEntityId')
|
|
7332
|
+
trace_id = sgqlc.types.Field(Int, graphql_name='traceId')
|
|
6430
7333
|
|
|
6431
7334
|
|
|
6432
7335
|
class EventLogEdge(sgqlc.types.Type):
|
|
@@ -6438,24 +7341,28 @@ class EventLogEdge(sgqlc.types.Type):
|
|
|
6438
7341
|
|
|
6439
7342
|
class EventLogMaxAggregate(sgqlc.types.Type):
|
|
6440
7343
|
__schema__ = schema
|
|
6441
|
-
__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')
|
|
6442
7345
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
6443
7346
|
entity_id = sgqlc.types.Field(String, graphql_name='entityId')
|
|
7347
|
+
entity_type = sgqlc.types.Field(EventEntityType, graphql_name='entityType')
|
|
6444
7348
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
6445
7349
|
event_log_type = sgqlc.types.Field(EventLogType, graphql_name='eventLogType')
|
|
6446
7350
|
id = sgqlc.types.Field(String, graphql_name='id')
|
|
6447
7351
|
parent_entity_id = sgqlc.types.Field(String, graphql_name='parentEntityId')
|
|
7352
|
+
trace_id = sgqlc.types.Field(String, graphql_name='traceId')
|
|
6448
7353
|
|
|
6449
7354
|
|
|
6450
7355
|
class EventLogMinAggregate(sgqlc.types.Type):
|
|
6451
7356
|
__schema__ = schema
|
|
6452
|
-
__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')
|
|
6453
7358
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
6454
7359
|
entity_id = sgqlc.types.Field(String, graphql_name='entityId')
|
|
7360
|
+
entity_type = sgqlc.types.Field(EventEntityType, graphql_name='entityType')
|
|
6455
7361
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
6456
7362
|
event_log_type = sgqlc.types.Field(EventLogType, graphql_name='eventLogType')
|
|
6457
7363
|
id = sgqlc.types.Field(String, graphql_name='id')
|
|
6458
7364
|
parent_entity_id = sgqlc.types.Field(String, graphql_name='parentEntityId')
|
|
7365
|
+
trace_id = sgqlc.types.Field(String, graphql_name='traceId')
|
|
6459
7366
|
|
|
6460
7367
|
|
|
6461
7368
|
class EventRequest(sgqlc.types.Type):
|
|
@@ -7185,6 +8092,18 @@ class InvoiceLine(sgqlc.types.Type):
|
|
|
7185
8092
|
quantity = sgqlc.types.Field(Int, graphql_name='quantity')
|
|
7186
8093
|
|
|
7187
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
|
+
|
|
7188
8107
|
class ListAwsProductDimensionsDTO(sgqlc.types.Type):
|
|
7189
8108
|
__schema__ = schema
|
|
7190
8109
|
__field_names__ = ('dimensions',)
|
|
@@ -7197,6 +8116,12 @@ class ListAwsProductsResult(sgqlc.types.Type):
|
|
|
7197
8116
|
products = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(AwsProduct))), graphql_name='products')
|
|
7198
8117
|
|
|
7199
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
|
+
|
|
7200
8125
|
class Member(sgqlc.types.Type):
|
|
7201
8126
|
__schema__ = schema
|
|
7202
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')
|
|
@@ -7302,10 +8227,11 @@ class Meter(sgqlc.types.Type):
|
|
|
7302
8227
|
|
|
7303
8228
|
class MeterCondition(sgqlc.types.Type):
|
|
7304
8229
|
__schema__ = schema
|
|
7305
|
-
__field_names__ = ('field', 'operation', 'value')
|
|
8230
|
+
__field_names__ = ('field', 'operation', 'value', 'values')
|
|
7306
8231
|
field = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='field')
|
|
7307
8232
|
operation = sgqlc.types.Field(sgqlc.types.non_null(ConditionOperation), graphql_name='operation')
|
|
7308
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')
|
|
7309
8235
|
|
|
7310
8236
|
|
|
7311
8237
|
class MeterFilterDefinition(sgqlc.types.Type):
|
|
@@ -7359,7 +8285,7 @@ class MonthlyResetPeriodConfig(sgqlc.types.Type):
|
|
|
7359
8285
|
|
|
7360
8286
|
class Mutation(sgqlc.types.Type):
|
|
7361
8287
|
__schema__ = schema
|
|
7362
|
-
__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')
|
|
7363
8289
|
add_compatible_addons_to_plan = sgqlc.types.Field(sgqlc.types.non_null('Plan'), graphql_name='addCompatibleAddonsToPlan', args=sgqlc.types.ArgDict((
|
|
7364
8290
|
('input', sgqlc.types.Arg(sgqlc.types.non_null(AddCompatibleAddonsToPlanInput), graphql_name='input', default=None)),
|
|
7365
8291
|
))
|
|
@@ -7390,6 +8316,10 @@ class Mutation(sgqlc.types.Type):
|
|
|
7390
8316
|
)
|
|
7391
8317
|
archive_one_coupon = sgqlc.types.Field(sgqlc.types.non_null(Coupon), graphql_name='archiveOneCoupon', args=sgqlc.types.ArgDict((
|
|
7392
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)),
|
|
7393
8323
|
))
|
|
7394
8324
|
)
|
|
7395
8325
|
archive_package_group = sgqlc.types.Field(sgqlc.types.non_null('PackageGroup'), graphql_name='archivePackageGroup', args=sgqlc.types.ArgDict((
|
|
@@ -7454,6 +8384,14 @@ class Mutation(sgqlc.types.Type):
|
|
|
7454
8384
|
)
|
|
7455
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((
|
|
7456
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)),
|
|
7457
8395
|
))
|
|
7458
8396
|
)
|
|
7459
8397
|
create_one_addon = sgqlc.types.Field(sgqlc.types.non_null(Addon), graphql_name='createOneAddon', args=sgqlc.types.ArgDict((
|
|
@@ -7498,6 +8436,10 @@ class Mutation(sgqlc.types.Type):
|
|
|
7498
8436
|
)
|
|
7499
8437
|
create_package_group = sgqlc.types.Field(sgqlc.types.non_null('PackageGroup'), graphql_name='createPackageGroup', args=sgqlc.types.ArgDict((
|
|
7500
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)),
|
|
7501
8443
|
))
|
|
7502
8444
|
)
|
|
7503
8445
|
create_plan_draft = sgqlc.types.Field(sgqlc.types.non_null('Plan'), graphql_name='createPlanDraft', args=sgqlc.types.ArgDict((
|
|
@@ -7578,6 +8520,10 @@ class Mutation(sgqlc.types.Type):
|
|
|
7578
8520
|
)
|
|
7579
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((
|
|
7580
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)),
|
|
7581
8527
|
))
|
|
7582
8528
|
)
|
|
7583
8529
|
hide_getting_started_page = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='hideGettingStartedPage', args=sgqlc.types.ArgDict((
|
|
@@ -7602,6 +8548,14 @@ class Mutation(sgqlc.types.Type):
|
|
|
7602
8548
|
)
|
|
7603
8549
|
invite_members = sgqlc.types.Field(sgqlc.types.non_null(MembersInviteResponse), graphql_name='inviteMembers', args=sgqlc.types.ArgDict((
|
|
7604
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)),
|
|
7605
8559
|
))
|
|
7606
8560
|
)
|
|
7607
8561
|
mark_invoice_as_paid = sgqlc.types.Field(String, graphql_name='markInvoiceAsPaid', args=sgqlc.types.ArgDict((
|
|
@@ -7622,6 +8576,10 @@ class Mutation(sgqlc.types.Type):
|
|
|
7622
8576
|
)
|
|
7623
8577
|
prepare_payment_method_form = sgqlc.types.Field(sgqlc.types.non_null('PreparedPaymentMethodForm'), graphql_name='preparePaymentMethodForm', args=sgqlc.types.ArgDict((
|
|
7624
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)),
|
|
7625
8583
|
))
|
|
7626
8584
|
)
|
|
7627
8585
|
preview_next_invoice = sgqlc.types.Field(sgqlc.types.non_null('SubscriptionInvoicePreview'), graphql_name='previewNextInvoice', args=sgqlc.types.ArgDict((
|
|
@@ -7650,6 +8608,10 @@ class Mutation(sgqlc.types.Type):
|
|
|
7650
8608
|
)
|
|
7651
8609
|
publish_addon = sgqlc.types.Field(sgqlc.types.non_null('PublishPackageResult'), graphql_name='publishAddon', args=sgqlc.types.ArgDict((
|
|
7652
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)),
|
|
7653
8615
|
))
|
|
7654
8616
|
)
|
|
7655
8617
|
publish_plan = sgqlc.types.Field(sgqlc.types.non_null('PublishPackageResult'), graphql_name='publishPlan', args=sgqlc.types.ArgDict((
|
|
@@ -7695,6 +8657,10 @@ class Mutation(sgqlc.types.Type):
|
|
|
7695
8657
|
)
|
|
7696
8658
|
remove_member = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='removeMember', args=sgqlc.types.ArgDict((
|
|
7697
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)),
|
|
7698
8664
|
))
|
|
7699
8665
|
)
|
|
7700
8666
|
remove_plan_draft = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='removePlanDraft', args=sgqlc.types.ArgDict((
|
|
@@ -7724,10 +8690,22 @@ class Mutation(sgqlc.types.Type):
|
|
|
7724
8690
|
)
|
|
7725
8691
|
revoke_promotional_entitlement = sgqlc.types.Field(sgqlc.types.non_null('PromotionalEntitlement'), graphql_name='revokePromotionalEntitlement', args=sgqlc.types.ArgDict((
|
|
7726
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)),
|
|
7727
8701
|
))
|
|
7728
8702
|
)
|
|
7729
8703
|
set_access_roles = sgqlc.types.Field(String, graphql_name='setAccessRoles', args=sgqlc.types.ArgDict((
|
|
7730
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)),
|
|
7731
8709
|
))
|
|
7732
8710
|
)
|
|
7733
8711
|
set_base_plan_on_plan = sgqlc.types.Field(sgqlc.types.non_null('Plan'), graphql_name='setBasePlanOnPlan', args=sgqlc.types.ArgDict((
|
|
@@ -7833,6 +8811,10 @@ class Mutation(sgqlc.types.Type):
|
|
|
7833
8811
|
)
|
|
7834
8812
|
unarchive_feature_group = sgqlc.types.Field(sgqlc.types.non_null(FeatureGroup), graphql_name='unarchiveFeatureGroup', args=sgqlc.types.ArgDict((
|
|
7835
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)),
|
|
7836
8818
|
))
|
|
7837
8819
|
)
|
|
7838
8820
|
unarchive_plan = sgqlc.types.Field(sgqlc.types.non_null('Plan'), graphql_name='unarchivePlan', args=sgqlc.types.ArgDict((
|
|
@@ -7841,6 +8823,10 @@ class Mutation(sgqlc.types.Type):
|
|
|
7841
8823
|
)
|
|
7842
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((
|
|
7843
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)),
|
|
7844
8830
|
))
|
|
7845
8831
|
)
|
|
7846
8832
|
update_account = sgqlc.types.Field(sgqlc.types.non_null(Account), graphql_name='updateAccount', args=sgqlc.types.ArgDict((
|
|
@@ -7861,6 +8847,10 @@ class Mutation(sgqlc.types.Type):
|
|
|
7861
8847
|
)
|
|
7862
8848
|
update_feature = sgqlc.types.Field(sgqlc.types.non_null(Feature), graphql_name='updateFeature', args=sgqlc.types.ArgDict((
|
|
7863
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)),
|
|
7864
8854
|
))
|
|
7865
8855
|
)
|
|
7866
8856
|
update_one_addon = sgqlc.types.Field(sgqlc.types.non_null(Addon), graphql_name='updateOneAddon', args=sgqlc.types.ArgDict((
|
|
@@ -7913,6 +8903,10 @@ class Mutation(sgqlc.types.Type):
|
|
|
7913
8903
|
)
|
|
7914
8904
|
update_user = sgqlc.types.Field(sgqlc.types.non_null('User'), graphql_name='updateUser', args=sgqlc.types.ArgDict((
|
|
7915
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)),
|
|
7916
8910
|
))
|
|
7917
8911
|
)
|
|
7918
8912
|
workflows_login = sgqlc.types.Field(sgqlc.types.non_null('WorkflowsLoginDTO'), graphql_name='workflowsLogin', args=sgqlc.types.ArgDict((
|
|
@@ -7921,6 +8915,14 @@ class Mutation(sgqlc.types.Type):
|
|
|
7921
8915
|
)
|
|
7922
8916
|
|
|
7923
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
|
+
|
|
7924
8926
|
class NumberChange(sgqlc.types.Type):
|
|
7925
8927
|
__schema__ = schema
|
|
7926
8928
|
__field_names__ = ('after', 'before', 'change_type')
|
|
@@ -7929,6 +8931,106 @@ class NumberChange(sgqlc.types.Type):
|
|
|
7929
8931
|
change_type = sgqlc.types.Field(ChangeType, graphql_name='changeType')
|
|
7930
8932
|
|
|
7931
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
|
+
|
|
7932
9034
|
class OpenFGACredentials(sgqlc.types.Type):
|
|
7933
9035
|
__schema__ = schema
|
|
7934
9036
|
__field_names__ = ('api_audience', 'api_token_issuer', 'api_url', 'client_id', 'model_id', 'store_id')
|
|
@@ -7979,7 +9081,7 @@ class PackageChanges(sgqlc.types.Type):
|
|
|
7979
9081
|
|
|
7980
9082
|
class PackageDTO(sgqlc.types.Type):
|
|
7981
9083
|
__schema__ = schema
|
|
7982
|
-
__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')
|
|
7983
9085
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
7984
9086
|
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
7985
9087
|
billing_link_url = sgqlc.types.Field(String, graphql_name='billingLinkUrl')
|
|
@@ -7993,6 +9095,7 @@ class PackageDTO(sgqlc.types.Type):
|
|
|
7993
9095
|
hidden_from_widgets = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(WidgetType)), graphql_name='hiddenFromWidgets')
|
|
7994
9096
|
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
7995
9097
|
is_latest = sgqlc.types.Field(Boolean, graphql_name='isLatest')
|
|
9098
|
+
offer = sgqlc.types.Field(Offer, graphql_name='offer')
|
|
7996
9099
|
overage_billing_period = sgqlc.types.Field(OverageBillingPeriod, graphql_name='overageBillingPeriod')
|
|
7997
9100
|
overage_prices = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('Price')), graphql_name='overagePrices')
|
|
7998
9101
|
prices = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('Price')), graphql_name='prices')
|
|
@@ -8028,7 +9131,7 @@ class PackageDraftSummary(sgqlc.types.Type):
|
|
|
8028
9131
|
|
|
8029
9132
|
class PackageEntitlement(sgqlc.types.Type):
|
|
8030
9133
|
__schema__ = schema
|
|
8031
|
-
__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')
|
|
8032
9135
|
behavior = sgqlc.types.Field(sgqlc.types.non_null(EntitlementBehavior), graphql_name='behavior')
|
|
8033
9136
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
8034
9137
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
@@ -8044,6 +9147,7 @@ class PackageEntitlement(sgqlc.types.Type):
|
|
|
8044
9147
|
hidden_from_widgets = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(WidgetType)), graphql_name='hiddenFromWidgets')
|
|
8045
9148
|
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
8046
9149
|
is_custom = sgqlc.types.Field(Boolean, graphql_name='isCustom')
|
|
9150
|
+
is_granted = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='isGranted')
|
|
8047
9151
|
meter = sgqlc.types.Field(Meter, graphql_name='meter')
|
|
8048
9152
|
order = sgqlc.types.Field(Float, graphql_name='order')
|
|
8049
9153
|
package = sgqlc.types.Field(PackageDTO, graphql_name='package')
|
|
@@ -8092,7 +9196,7 @@ class PackageEntitlementCountAggregate(sgqlc.types.Type):
|
|
|
8092
9196
|
|
|
8093
9197
|
class PackageEntitlementDeleteResponse(sgqlc.types.Type):
|
|
8094
9198
|
__schema__ = schema
|
|
8095
|
-
__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')
|
|
8096
9200
|
behavior = sgqlc.types.Field(EntitlementBehavior, graphql_name='behavior')
|
|
8097
9201
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
8098
9202
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
@@ -8107,6 +9211,7 @@ class PackageEntitlementDeleteResponse(sgqlc.types.Type):
|
|
|
8107
9211
|
hidden_from_widgets = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(WidgetType)), graphql_name='hiddenFromWidgets')
|
|
8108
9212
|
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
8109
9213
|
is_custom = sgqlc.types.Field(Boolean, graphql_name='isCustom')
|
|
9214
|
+
is_granted = sgqlc.types.Field(Boolean, graphql_name='isGranted')
|
|
8110
9215
|
order = sgqlc.types.Field(Float, graphql_name='order')
|
|
8111
9216
|
package_id = sgqlc.types.Field(String, graphql_name='packageId')
|
|
8112
9217
|
reset_period = sgqlc.types.Field(EntitlementResetPeriod, graphql_name='resetPeriod')
|
|
@@ -8287,6 +9392,12 @@ class PageInfo(sgqlc.types.Type):
|
|
|
8287
9392
|
start_cursor = sgqlc.types.Field(ConnectionCursor, graphql_name='startCursor')
|
|
8288
9393
|
|
|
8289
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
|
+
|
|
8290
9401
|
class Paywall(sgqlc.types.Type):
|
|
8291
9402
|
__schema__ = schema
|
|
8292
9403
|
__field_names__ = ('active_subscriptions', 'configuration', 'currency', 'customer', 'paywall_calculated_price_points', 'plans', 'resource')
|
|
@@ -8396,12 +9507,13 @@ class PaywallPlanCompatiblePackageGroupOptions(sgqlc.types.Type):
|
|
|
8396
9507
|
|
|
8397
9508
|
class PaywallPrice(sgqlc.types.Type):
|
|
8398
9509
|
__schema__ = schema
|
|
8399
|
-
__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')
|
|
8400
9511
|
billing_country_code = sgqlc.types.Field(String, graphql_name='billingCountryCode')
|
|
8401
9512
|
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
8402
9513
|
billing_model = sgqlc.types.Field(sgqlc.types.non_null(BillingModel), graphql_name='billingModel')
|
|
8403
9514
|
billing_period = sgqlc.types.Field(sgqlc.types.non_null(BillingPeriod), graphql_name='billingPeriod')
|
|
8404
9515
|
block_size = sgqlc.types.Field(Float, graphql_name='blockSize')
|
|
9516
|
+
credit_rate = sgqlc.types.Field(CreditRate, graphql_name='creditRate')
|
|
8405
9517
|
feature = sgqlc.types.Field(EntitlementFeature, graphql_name='feature')
|
|
8406
9518
|
feature_id = sgqlc.types.Field(String, graphql_name='featureId')
|
|
8407
9519
|
max_unit_quantity = sgqlc.types.Field(Float, graphql_name='maxUnitQuantity')
|
|
@@ -8434,7 +9546,7 @@ class PaywallProduct(sgqlc.types.Type):
|
|
|
8434
9546
|
|
|
8435
9547
|
class Plan(sgqlc.types.Type):
|
|
8436
9548
|
__schema__ = schema
|
|
8437
|
-
__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')
|
|
8438
9550
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
8439
9551
|
aws_marketplace_plan_dimension = sgqlc.types.Field(String, graphql_name='awsMarketplacePlanDimension')
|
|
8440
9552
|
base_plan = sgqlc.types.Field('Plan', graphql_name='basePlan')
|
|
@@ -8464,6 +9576,7 @@ class Plan(sgqlc.types.Type):
|
|
|
8464
9576
|
is_latest = sgqlc.types.Field(Boolean, graphql_name='isLatest')
|
|
8465
9577
|
is_parent = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='isParent')
|
|
8466
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')
|
|
8467
9580
|
overage_billing_period = sgqlc.types.Field(OverageBillingPeriod, graphql_name='overageBillingPeriod')
|
|
8468
9581
|
overage_prices = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('Price')), graphql_name='overagePrices')
|
|
8469
9582
|
prices = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('Price')), graphql_name='prices')
|
|
@@ -8511,13 +9624,14 @@ class PlanChangeAddon(sgqlc.types.Type):
|
|
|
8511
9624
|
|
|
8512
9625
|
class PlanChangeVariables(sgqlc.types.Type):
|
|
8513
9626
|
__schema__ = schema
|
|
8514
|
-
__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')
|
|
8515
9628
|
addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(PlanChangeAddon)), graphql_name='addons')
|
|
8516
9629
|
billable_features = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(BillableFeature)), graphql_name='billableFeatures')
|
|
8517
9630
|
billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
|
|
8518
9631
|
change_type = sgqlc.types.Field(sgqlc.types.non_null(PlanChangeType), graphql_name='changeType')
|
|
8519
9632
|
plan_ref_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='planRefId')
|
|
8520
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')
|
|
8521
9635
|
|
|
8522
9636
|
|
|
8523
9637
|
class PlanCompatibleAddonChange(sgqlc.types.Type):
|
|
@@ -8659,7 +9773,7 @@ class PreparedPaymentMethodForm(sgqlc.types.Type):
|
|
|
8659
9773
|
|
|
8660
9774
|
class Price(sgqlc.types.Type):
|
|
8661
9775
|
__schema__ = schema
|
|
8662
|
-
__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')
|
|
8663
9777
|
billing_cadence = sgqlc.types.Field(sgqlc.types.non_null(BillingCadence), graphql_name='billingCadence')
|
|
8664
9778
|
billing_country_code = sgqlc.types.Field(String, graphql_name='billingCountryCode')
|
|
8665
9779
|
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
@@ -8667,8 +9781,11 @@ class Price(sgqlc.types.Type):
|
|
|
8667
9781
|
billing_period = sgqlc.types.Field(sgqlc.types.non_null(BillingPeriod), graphql_name='billingPeriod')
|
|
8668
9782
|
block_size = sgqlc.types.Field(Float, graphql_name='blockSize')
|
|
8669
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')
|
|
8670
9786
|
crm_id = sgqlc.types.Field(String, graphql_name='crmId')
|
|
8671
9787
|
crm_link_url = sgqlc.types.Field(String, graphql_name='crmLinkUrl')
|
|
9788
|
+
custom_currency = sgqlc.types.Field(CustomCurrency, graphql_name='customCurrency')
|
|
8672
9789
|
environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
|
|
8673
9790
|
feature = sgqlc.types.Field(Feature, graphql_name='feature')
|
|
8674
9791
|
feature_id = sgqlc.types.Field(String, graphql_name='featureId')
|
|
@@ -8683,6 +9800,7 @@ class Price(sgqlc.types.Type):
|
|
|
8683
9800
|
reset_period_configuration = sgqlc.types.Field('ResetPeriodConfiguration', graphql_name='resetPeriodConfiguration')
|
|
8684
9801
|
tiers = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PriceTier')), graphql_name='tiers')
|
|
8685
9802
|
tiers_mode = sgqlc.types.Field(TiersMode, graphql_name='tiersMode')
|
|
9803
|
+
top_up_custom_currency_id = sgqlc.types.Field(UUID, graphql_name='topUpCustomCurrencyId')
|
|
8686
9804
|
used_in_subscriptions = sgqlc.types.Field(Boolean, graphql_name='usedInSubscriptions')
|
|
8687
9805
|
|
|
8688
9806
|
|
|
@@ -8712,7 +9830,7 @@ class PriceCountAggregate(sgqlc.types.Type):
|
|
|
8712
9830
|
|
|
8713
9831
|
class PriceDeleteResponse(sgqlc.types.Type):
|
|
8714
9832
|
__schema__ = schema
|
|
8715
|
-
__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')
|
|
8716
9834
|
billing_cadence = sgqlc.types.Field(BillingCadence, graphql_name='billingCadence')
|
|
8717
9835
|
billing_country_code = sgqlc.types.Field(String, graphql_name='billingCountryCode')
|
|
8718
9836
|
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
@@ -8720,8 +9838,11 @@ class PriceDeleteResponse(sgqlc.types.Type):
|
|
|
8720
9838
|
billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
|
|
8721
9839
|
block_size = sgqlc.types.Field(Float, graphql_name='blockSize')
|
|
8722
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')
|
|
8723
9843
|
crm_id = sgqlc.types.Field(String, graphql_name='crmId')
|
|
8724
9844
|
crm_link_url = sgqlc.types.Field(String, graphql_name='crmLinkUrl')
|
|
9845
|
+
custom_currency = sgqlc.types.Field(CustomCurrency, graphql_name='customCurrency')
|
|
8725
9846
|
environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
|
|
8726
9847
|
feature = sgqlc.types.Field(Feature, graphql_name='feature')
|
|
8727
9848
|
feature_id = sgqlc.types.Field(String, graphql_name='featureId')
|
|
@@ -8734,6 +9855,7 @@ class PriceDeleteResponse(sgqlc.types.Type):
|
|
|
8734
9855
|
reset_period_configuration = sgqlc.types.Field('ResetPeriodConfiguration', graphql_name='resetPeriodConfiguration')
|
|
8735
9856
|
tiers = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PriceTier')), graphql_name='tiers')
|
|
8736
9857
|
tiers_mode = sgqlc.types.Field(TiersMode, graphql_name='tiersMode')
|
|
9858
|
+
top_up_custom_currency_id = sgqlc.types.Field(UUID, graphql_name='topUpCustomCurrencyId')
|
|
8737
9859
|
used_in_subscriptions = sgqlc.types.Field(Boolean, graphql_name='usedInSubscriptions')
|
|
8738
9860
|
|
|
8739
9861
|
|
|
@@ -8817,7 +9939,7 @@ class PricingTypeChange(sgqlc.types.Type):
|
|
|
8817
9939
|
|
|
8818
9940
|
class Product(sgqlc.types.Type):
|
|
8819
9941
|
__schema__ = schema
|
|
8820
|
-
__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')
|
|
8821
9943
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
8822
9944
|
addons = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Addon))), graphql_name='addons')
|
|
8823
9945
|
auto_cancellation_rules = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(AutoCancellationRule))), graphql_name='autoCancellationRules')
|
|
@@ -8836,6 +9958,7 @@ class Product(sgqlc.types.Type):
|
|
|
8836
9958
|
plans = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Plan))), graphql_name='plans')
|
|
8837
9959
|
product_settings = sgqlc.types.Field(sgqlc.types.non_null('ProductSettings'), graphql_name='productSettings')
|
|
8838
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')
|
|
8839
9962
|
subscription_start_plan = sgqlc.types.Field(Plan, graphql_name='subscriptionStartPlan')
|
|
8840
9963
|
subscription_update_usage_reset_cutoff_rule = sgqlc.types.Field(sgqlc.types.non_null('SubscriptionUpdateUsageResetCutoffRule'), graphql_name='subscriptionUpdateUsageResetCutoffRule')
|
|
8841
9964
|
updated_at = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='updatedAt')
|
|
@@ -8843,7 +9966,7 @@ class Product(sgqlc.types.Type):
|
|
|
8843
9966
|
|
|
8844
9967
|
class ProductAggregateGroupBy(sgqlc.types.Type):
|
|
8845
9968
|
__schema__ = schema
|
|
8846
|
-
__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')
|
|
8847
9970
|
aws_marketplace_product_code = sgqlc.types.Field(String, graphql_name='awsMarketplaceProductCode')
|
|
8848
9971
|
aws_marketplace_product_id = sgqlc.types.Field(String, graphql_name='awsMarketplaceProductId')
|
|
8849
9972
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
@@ -8854,6 +9977,7 @@ class ProductAggregateGroupBy(sgqlc.types.Type):
|
|
|
8854
9977
|
is_default_product = sgqlc.types.Field(Boolean, graphql_name='isDefaultProduct')
|
|
8855
9978
|
multiple_subscriptions = sgqlc.types.Field(Boolean, graphql_name='multipleSubscriptions')
|
|
8856
9979
|
ref_id = sgqlc.types.Field(String, graphql_name='refId')
|
|
9980
|
+
status = sgqlc.types.Field(ProductStatus, graphql_name='status')
|
|
8857
9981
|
updated_at = sgqlc.types.Field(DateTime, graphql_name='updatedAt')
|
|
8858
9982
|
|
|
8859
9983
|
|
|
@@ -8873,7 +9997,7 @@ class ProductConnection(sgqlc.types.relay.Connection):
|
|
|
8873
9997
|
|
|
8874
9998
|
class ProductCountAggregate(sgqlc.types.Type):
|
|
8875
9999
|
__schema__ = schema
|
|
8876
|
-
__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')
|
|
8877
10001
|
aws_marketplace_product_code = sgqlc.types.Field(Int, graphql_name='awsMarketplaceProductCode')
|
|
8878
10002
|
aws_marketplace_product_id = sgqlc.types.Field(Int, graphql_name='awsMarketplaceProductId')
|
|
8879
10003
|
created_at = sgqlc.types.Field(Int, graphql_name='createdAt')
|
|
@@ -8884,6 +10008,7 @@ class ProductCountAggregate(sgqlc.types.Type):
|
|
|
8884
10008
|
is_default_product = sgqlc.types.Field(Int, graphql_name='isDefaultProduct')
|
|
8885
10009
|
multiple_subscriptions = sgqlc.types.Field(Int, graphql_name='multipleSubscriptions')
|
|
8886
10010
|
ref_id = sgqlc.types.Field(Int, graphql_name='refId')
|
|
10011
|
+
status = sgqlc.types.Field(Int, graphql_name='status')
|
|
8887
10012
|
updated_at = sgqlc.types.Field(Int, graphql_name='updatedAt')
|
|
8888
10013
|
|
|
8889
10014
|
|
|
@@ -8916,7 +10041,7 @@ class ProductEdge(sgqlc.types.Type):
|
|
|
8916
10041
|
|
|
8917
10042
|
class ProductMaxAggregate(sgqlc.types.Type):
|
|
8918
10043
|
__schema__ = schema
|
|
8919
|
-
__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')
|
|
8920
10045
|
aws_marketplace_product_code = sgqlc.types.Field(String, graphql_name='awsMarketplaceProductCode')
|
|
8921
10046
|
aws_marketplace_product_id = sgqlc.types.Field(String, graphql_name='awsMarketplaceProductId')
|
|
8922
10047
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
@@ -8925,12 +10050,13 @@ class ProductMaxAggregate(sgqlc.types.Type):
|
|
|
8925
10050
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
8926
10051
|
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
8927
10052
|
ref_id = sgqlc.types.Field(String, graphql_name='refId')
|
|
10053
|
+
status = sgqlc.types.Field(ProductStatus, graphql_name='status')
|
|
8928
10054
|
updated_at = sgqlc.types.Field(DateTime, graphql_name='updatedAt')
|
|
8929
10055
|
|
|
8930
10056
|
|
|
8931
10057
|
class ProductMinAggregate(sgqlc.types.Type):
|
|
8932
10058
|
__schema__ = schema
|
|
8933
|
-
__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')
|
|
8934
10060
|
aws_marketplace_product_code = sgqlc.types.Field(String, graphql_name='awsMarketplaceProductCode')
|
|
8935
10061
|
aws_marketplace_product_id = sgqlc.types.Field(String, graphql_name='awsMarketplaceProductId')
|
|
8936
10062
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
@@ -8939,6 +10065,7 @@ class ProductMinAggregate(sgqlc.types.Type):
|
|
|
8939
10065
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
8940
10066
|
id = sgqlc.types.Field(UUID, graphql_name='id')
|
|
8941
10067
|
ref_id = sgqlc.types.Field(String, graphql_name='refId')
|
|
10068
|
+
status = sgqlc.types.Field(ProductStatus, graphql_name='status')
|
|
8942
10069
|
updated_at = sgqlc.types.Field(DateTime, graphql_name='updatedAt')
|
|
8943
10070
|
|
|
8944
10071
|
|
|
@@ -8999,7 +10126,7 @@ class PromotionCodeNotFound(sgqlc.types.Type):
|
|
|
8999
10126
|
|
|
9000
10127
|
class PromotionalEntitlement(sgqlc.types.Type):
|
|
9001
10128
|
__schema__ = schema
|
|
9002
|
-
__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')
|
|
9003
10130
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
9004
10131
|
customer = sgqlc.types.Field(sgqlc.types.non_null(Customer), graphql_name='customer')
|
|
9005
10132
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
@@ -9007,6 +10134,8 @@ class PromotionalEntitlement(sgqlc.types.Type):
|
|
|
9007
10134
|
enum_values = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='enumValues')
|
|
9008
10135
|
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
9009
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')
|
|
9010
10139
|
feature_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='featureId')
|
|
9011
10140
|
has_soft_limit = sgqlc.types.Field(Boolean, graphql_name='hasSoftLimit')
|
|
9012
10141
|
has_unlimited_usage = sgqlc.types.Field(Boolean, graphql_name='hasUnlimitedUsage')
|
|
@@ -9053,12 +10182,14 @@ class PromotionalEntitlementCountAggregate(sgqlc.types.Type):
|
|
|
9053
10182
|
|
|
9054
10183
|
class PromotionalEntitlementDeleteResponse(sgqlc.types.Type):
|
|
9055
10184
|
__schema__ = schema
|
|
9056
|
-
__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')
|
|
9057
10186
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
9058
10187
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
9059
10188
|
end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
|
|
9060
10189
|
enum_values = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='enumValues')
|
|
9061
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')
|
|
9062
10193
|
feature_id = sgqlc.types.Field(UUID, graphql_name='featureId')
|
|
9063
10194
|
has_soft_limit = sgqlc.types.Field(Boolean, graphql_name='hasSoftLimit')
|
|
9064
10195
|
has_unlimited_usage = sgqlc.types.Field(Boolean, graphql_name='hasUnlimitedUsage')
|
|
@@ -9131,7 +10262,7 @@ class PublishPackageResult(sgqlc.types.Type):
|
|
|
9131
10262
|
|
|
9132
10263
|
class Query(sgqlc.types.Type):
|
|
9133
10264
|
__schema__ = schema
|
|
9134
|
-
__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')
|
|
9135
10266
|
addon_associated_entities = sgqlc.types.Field(sgqlc.types.non_null(AddonAssociatedEntities), graphql_name='addonAssociatedEntities', args=sgqlc.types.ArgDict((
|
|
9136
10267
|
('input', sgqlc.types.Arg(sgqlc.types.non_null(AddonAssociatedEntitiesInput), graphql_name='input', default=None)),
|
|
9137
10268
|
))
|
|
@@ -9144,6 +10275,10 @@ class Query(sgqlc.types.Type):
|
|
|
9144
10275
|
)
|
|
9145
10276
|
aggregated_events_by_customer = sgqlc.types.Field(sgqlc.types.non_null(AggregatedEventsByCustomer), graphql_name='aggregatedEventsByCustomer', args=sgqlc.types.ArgDict((
|
|
9146
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)),
|
|
9147
10282
|
))
|
|
9148
10283
|
)
|
|
9149
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((
|
|
@@ -9164,12 +10299,20 @@ class Query(sgqlc.types.Type):
|
|
|
9164
10299
|
('sorting', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(CouponSort)), graphql_name='sorting', default=[{'direction': 'DESC', 'field': 'createdAt'}])),
|
|
9165
10300
|
))
|
|
9166
10301
|
)
|
|
9167
|
-
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((
|
|
9168
10303
|
('input', sgqlc.types.Arg(sgqlc.types.non_null(CreditBalanceSummaryInput), graphql_name='input', default=None)),
|
|
9169
10304
|
))
|
|
9170
10305
|
)
|
|
9171
|
-
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((
|
|
9172
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)),
|
|
9173
10316
|
))
|
|
9174
10317
|
)
|
|
9175
10318
|
current_environment = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='currentEnvironment')
|
|
@@ -9218,6 +10361,10 @@ class Query(sgqlc.types.Type):
|
|
|
9218
10361
|
)
|
|
9219
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((
|
|
9220
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)),
|
|
9221
10368
|
))
|
|
9222
10369
|
)
|
|
9223
10370
|
environments = sgqlc.types.Field(sgqlc.types.non_null(EnvironmentConnection), graphql_name='environments', args=sgqlc.types.ArgDict((
|
|
@@ -9227,7 +10374,7 @@ class Query(sgqlc.types.Type):
|
|
|
9227
10374
|
))
|
|
9228
10375
|
)
|
|
9229
10376
|
event_logs = sgqlc.types.Field(sgqlc.types.non_null(EventLogConnection), graphql_name='eventLogs', args=sgqlc.types.ArgDict((
|
|
9230
|
-
('filter', sgqlc.types.Arg(
|
|
10377
|
+
('filter', sgqlc.types.Arg(EventLogFilter, graphql_name='filter', default={})),
|
|
9231
10378
|
('paging', sgqlc.types.Arg(CursorPaging, graphql_name='paging', default={'first': 10})),
|
|
9232
10379
|
('sorting', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(EventLogSort)), graphql_name='sorting', default=[{'direction': 'DESC', 'field': 'createdAt'}])),
|
|
9233
10380
|
))
|
|
@@ -9281,6 +10428,10 @@ class Query(sgqlc.types.Type):
|
|
|
9281
10428
|
)
|
|
9282
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((
|
|
9283
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)),
|
|
9284
10435
|
))
|
|
9285
10436
|
)
|
|
9286
10437
|
get_aws_external_id = sgqlc.types.Field(sgqlc.types.non_null(GetAwsExternalIdResult), graphql_name='getAwsExternalId')
|
|
@@ -9290,6 +10441,10 @@ class Query(sgqlc.types.Type):
|
|
|
9290
10441
|
)
|
|
9291
10442
|
get_experiment_stats = sgqlc.types.Field(sgqlc.types.non_null(ExperimentStats), graphql_name='getExperimentStats', args=sgqlc.types.ArgDict((
|
|
9292
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)),
|
|
9293
10448
|
))
|
|
9294
10449
|
)
|
|
9295
10450
|
get_package_group = sgqlc.types.Field(sgqlc.types.non_null(PackageGroup), graphql_name='getPackageGroup', args=sgqlc.types.ArgDict((
|
|
@@ -9328,6 +10483,18 @@ class Query(sgqlc.types.Type):
|
|
|
9328
10483
|
('filter', sgqlc.types.Arg(IntegrationFilter, graphql_name='filter', default={})),
|
|
9329
10484
|
('paging', sgqlc.types.Arg(CursorPaging, graphql_name='paging', default={'first': 10})),
|
|
9330
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)),
|
|
9331
10498
|
))
|
|
9332
10499
|
)
|
|
9333
10500
|
list_aws_product_dimensions = sgqlc.types.Field(sgqlc.types.non_null(ListAwsProductDimensionsDTO), graphql_name='listAwsProductDimensions', args=sgqlc.types.ArgDict((
|
|
@@ -9346,6 +10513,12 @@ class Query(sgqlc.types.Type):
|
|
|
9346
10513
|
)
|
|
9347
10514
|
mock_paywall = sgqlc.types.Field(sgqlc.types.non_null(MockPaywall), graphql_name='mockPaywall', args=sgqlc.types.ArgDict((
|
|
9348
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'}])),
|
|
9349
10522
|
))
|
|
9350
10523
|
)
|
|
9351
10524
|
package_entitlements = sgqlc.types.Field(sgqlc.types.non_null(PackageEntitlementConnection), graphql_name='packageEntitlements', args=sgqlc.types.ArgDict((
|
|
@@ -9468,6 +10641,20 @@ class RecalculateEntitlementsResult(sgqlc.types.Type):
|
|
|
9468
10641
|
task_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='taskId')
|
|
9469
10642
|
|
|
9470
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
|
+
|
|
9471
10658
|
class ResyncIntegrationResult(sgqlc.types.Type):
|
|
9472
10659
|
__schema__ = schema
|
|
9473
10660
|
__field_names__ = ('integration_id', 'task_id')
|
|
@@ -9483,18 +10670,31 @@ class SalesforceCredentials(sgqlc.types.Type):
|
|
|
9483
10670
|
|
|
9484
10671
|
class SdkConfiguration(sgqlc.types.Type):
|
|
9485
10672
|
__schema__ = schema
|
|
9486
|
-
__field_names__ = ('is_widget_watermark_enabled', 'sentry_dsn')
|
|
10673
|
+
__field_names__ = ('is_widget_watermark_enabled', 'sentry_dsn', 'show_watermark')
|
|
9487
10674
|
is_widget_watermark_enabled = sgqlc.types.Field(Boolean, graphql_name='isWidgetWatermarkEnabled')
|
|
9488
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')
|
|
9489
10686
|
|
|
9490
10687
|
|
|
9491
10688
|
class SnowflakeCredentials(sgqlc.types.Type):
|
|
9492
10689
|
__schema__ = schema
|
|
9493
|
-
__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')
|
|
9494
10691
|
airbyte_connection_id = sgqlc.types.Field(String, graphql_name='airbyteConnectionId')
|
|
9495
10692
|
airbyte_destination_id = sgqlc.types.Field(String, graphql_name='airbyteDestinationId')
|
|
9496
10693
|
database = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='database')
|
|
9497
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')
|
|
9498
10698
|
role = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='role')
|
|
9499
10699
|
schema_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='schemaName')
|
|
9500
10700
|
username = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='username')
|
|
@@ -9509,6 +10709,14 @@ class StringChangeDTO(sgqlc.types.Type):
|
|
|
9509
10709
|
change_type = sgqlc.types.Field(ChangeType, graphql_name='changeType')
|
|
9510
10710
|
|
|
9511
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
|
+
|
|
9512
10720
|
class StripeCredentials(sgqlc.types.Type):
|
|
9513
10721
|
__schema__ = schema
|
|
9514
10722
|
__field_names__ = ('account_display_name', 'account_id', 'is_tax_enabled', 'is_test_mode')
|
|
@@ -9598,7 +10806,8 @@ class StripeSubscriptionSearchResult(sgqlc.types.Type):
|
|
|
9598
10806
|
|
|
9599
10807
|
class Subscription(sgqlc.types.Type):
|
|
9600
10808
|
__schema__ = schema
|
|
9601
|
-
__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')
|
|
9602
10811
|
entitlements_updated = sgqlc.types.Field(sgqlc.types.non_null(EntitlementsUpdated), graphql_name='entitlementsUpdated')
|
|
9603
10812
|
package_published = sgqlc.types.Field(sgqlc.types.non_null(PackagePublished), graphql_name='packagePublished')
|
|
9604
10813
|
usage_updated = sgqlc.types.Field(sgqlc.types.non_null('UsageUpdated'), graphql_name='usageUpdated')
|
|
@@ -9786,7 +10995,7 @@ class SubscriptionFutureUpdate(sgqlc.types.Type):
|
|
|
9786
10995
|
|
|
9787
10996
|
class SubscriptionInvoice(sgqlc.types.Type):
|
|
9788
10997
|
__schema__ = schema
|
|
9789
|
-
__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')
|
|
9790
10999
|
amount_due = sgqlc.types.Field(Float, graphql_name='amountDue')
|
|
9791
11000
|
applied_balance = sgqlc.types.Field(Float, graphql_name='appliedBalance')
|
|
9792
11001
|
attempt_count = sgqlc.types.Field(Float, graphql_name='attemptCount')
|
|
@@ -9794,6 +11003,7 @@ class SubscriptionInvoice(sgqlc.types.Type):
|
|
|
9794
11003
|
billing_reason = sgqlc.types.Field(SubscriptionInvoiceBillingReason, graphql_name='billingReason')
|
|
9795
11004
|
created_at = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='createdAt')
|
|
9796
11005
|
currency = sgqlc.types.Field(String, graphql_name='currency')
|
|
11006
|
+
due_date = sgqlc.types.Field(DateTime, graphql_name='dueDate')
|
|
9797
11007
|
ending_balance = sgqlc.types.Field(Float, graphql_name='endingBalance')
|
|
9798
11008
|
error_message = sgqlc.types.Field(String, graphql_name='errorMessage')
|
|
9799
11009
|
lines = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(InvoiceLine)), graphql_name='lines')
|
|
@@ -10073,9 +11283,10 @@ class SubscriptionPreviewV2(sgqlc.types.Type):
|
|
|
10073
11283
|
|
|
10074
11284
|
class SubscriptionPrice(sgqlc.types.Type):
|
|
10075
11285
|
__schema__ = schema
|
|
10076
|
-
__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')
|
|
10077
11287
|
billing_model = sgqlc.types.Field(BillingModel, graphql_name='billingModel')
|
|
10078
11288
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
11289
|
+
credits_quantity = sgqlc.types.Field(Float, graphql_name='creditsQuantity')
|
|
10079
11290
|
feature_id = sgqlc.types.Field(String, graphql_name='featureId')
|
|
10080
11291
|
has_soft_limit = sgqlc.types.Field(Boolean, graphql_name='hasSoftLimit')
|
|
10081
11292
|
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
@@ -10240,13 +11451,21 @@ class SubscriptionQuery(sgqlc.types.Type):
|
|
|
10240
11451
|
|
|
10241
11452
|
class SubscriptionQueryAggregateGroupBy(sgqlc.types.Type):
|
|
10242
11453
|
__schema__ = schema
|
|
10243
|
-
__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')
|
|
10244
11457
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
10245
11458
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
11459
|
+
end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
|
|
10246
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')
|
|
10247
11463
|
product_id = sgqlc.types.Field(String, graphql_name='productId')
|
|
10248
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')
|
|
10249
11467
|
status = sgqlc.types.Field(SubscriptionStatus, graphql_name='status')
|
|
11468
|
+
subscription_id = sgqlc.types.Field(String, graphql_name='subscriptionId')
|
|
10250
11469
|
|
|
10251
11470
|
|
|
10252
11471
|
class SubscriptionQueryConnection(sgqlc.types.relay.Connection):
|
|
@@ -10259,13 +11478,21 @@ class SubscriptionQueryConnection(sgqlc.types.relay.Connection):
|
|
|
10259
11478
|
|
|
10260
11479
|
class SubscriptionQueryCountAggregate(sgqlc.types.Type):
|
|
10261
11480
|
__schema__ = schema
|
|
10262
|
-
__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')
|
|
10263
11484
|
created_at = sgqlc.types.Field(Int, graphql_name='createdAt')
|
|
10264
11485
|
customer_id = sgqlc.types.Field(Int, graphql_name='customerId')
|
|
11486
|
+
end_date = sgqlc.types.Field(Int, graphql_name='endDate')
|
|
10265
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')
|
|
10266
11490
|
product_id = sgqlc.types.Field(Int, graphql_name='productId')
|
|
10267
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')
|
|
10268
11494
|
status = sgqlc.types.Field(Int, graphql_name='status')
|
|
11495
|
+
subscription_id = sgqlc.types.Field(Int, graphql_name='subscriptionId')
|
|
10269
11496
|
|
|
10270
11497
|
|
|
10271
11498
|
class SubscriptionQueryEdge(sgqlc.types.Type):
|
|
@@ -10277,24 +11504,40 @@ class SubscriptionQueryEdge(sgqlc.types.Type):
|
|
|
10277
11504
|
|
|
10278
11505
|
class SubscriptionQueryMaxAggregate(sgqlc.types.Type):
|
|
10279
11506
|
__schema__ = schema
|
|
10280
|
-
__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')
|
|
10281
11510
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
10282
11511
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
11512
|
+
end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
|
|
10283
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')
|
|
10284
11516
|
product_id = sgqlc.types.Field(String, graphql_name='productId')
|
|
10285
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')
|
|
10286
11520
|
status = sgqlc.types.Field(SubscriptionStatus, graphql_name='status')
|
|
11521
|
+
subscription_id = sgqlc.types.Field(String, graphql_name='subscriptionId')
|
|
10287
11522
|
|
|
10288
11523
|
|
|
10289
11524
|
class SubscriptionQueryMinAggregate(sgqlc.types.Type):
|
|
10290
11525
|
__schema__ = schema
|
|
10291
|
-
__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')
|
|
10292
11529
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
10293
11530
|
customer_id = sgqlc.types.Field(String, graphql_name='customerId')
|
|
11531
|
+
end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
|
|
10294
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')
|
|
10295
11535
|
product_id = sgqlc.types.Field(String, graphql_name='productId')
|
|
10296
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')
|
|
10297
11539
|
status = sgqlc.types.Field(SubscriptionStatus, graphql_name='status')
|
|
11540
|
+
subscription_id = sgqlc.types.Field(String, graphql_name='subscriptionId')
|
|
10298
11541
|
|
|
10299
11542
|
|
|
10300
11543
|
class SubscriptionScheduledUpdate(sgqlc.types.Type):
|
|
@@ -10425,6 +11668,13 @@ class UnitTransformation(sgqlc.types.Type):
|
|
|
10425
11668
|
round = sgqlc.types.Field(sgqlc.types.non_null(UnitTransformationRound), graphql_name='round')
|
|
10426
11669
|
|
|
10427
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
|
+
|
|
10428
11678
|
class UnsupportedFeatureTypeError(sgqlc.types.Type):
|
|
10429
11679
|
__schema__ = schema
|
|
10430
11680
|
__field_names__ = ('code', 'feature_type')
|
|
@@ -10681,14 +11931,24 @@ class YearlyResetPeriodConfig(sgqlc.types.Type):
|
|
|
10681
11931
|
yearly_according_to = sgqlc.types.Field(YearlyAccordingTo, graphql_name='yearlyAccordingTo')
|
|
10682
11932
|
|
|
10683
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
|
+
|
|
10684
11940
|
class ZuoraCredentials(sgqlc.types.Type):
|
|
10685
11941
|
__schema__ = schema
|
|
10686
|
-
__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')
|
|
10687
11943
|
base_url = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='baseUrl')
|
|
10688
11944
|
client_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientId')
|
|
10689
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')
|
|
10690
11948
|
payment_gateway_id = sgqlc.types.Field(String, graphql_name='paymentGatewayId')
|
|
10691
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')
|
|
10692
11952
|
stripe_publishable_key = sgqlc.types.Field(String, graphql_name='stripePublishableKey')
|
|
10693
11953
|
stripe_secret_key = sgqlc.types.Field(String, graphql_name='stripeSecretKey')
|
|
10694
11954
|
webhook_secret = sgqlc.types.Field(String, graphql_name='webhookSecret')
|
|
@@ -10719,9 +11979,14 @@ class experimentInfo(sgqlc.types.Type):
|
|
|
10719
11979
|
########################################################################
|
|
10720
11980
|
# Unions
|
|
10721
11981
|
########################################################################
|
|
11982
|
+
class BillingCredentials(sgqlc.types.Union):
|
|
11983
|
+
__schema__ = schema
|
|
11984
|
+
__types__ = (StripeCheckoutCredentials, ZuoraCheckoutCredentials)
|
|
11985
|
+
|
|
11986
|
+
|
|
10722
11987
|
class Credentials(sgqlc.types.Union):
|
|
10723
11988
|
__schema__ = schema
|
|
10724
|
-
__types__ = (Auth0Credentials, AwsMarketplaceCredentials, BigQueryCredentials, HubspotCredentials, OpenFGACredentials, SalesforceCredentials, SnowflakeCredentials, StripeCredentials, ZuoraCredentials)
|
|
11989
|
+
__types__ = (AppStoreCredentials, Auth0Credentials, AwsMarketplaceCredentials, BigQueryCredentials, HubspotCredentials, OpenFGACredentials, SalesforceCredentials, SnowflakeCredentials, StripeCredentials, ZuoraCredentials)
|
|
10725
11990
|
|
|
10726
11991
|
|
|
10727
11992
|
class PaymentMethodForm(sgqlc.types.Union):
|
|
@@ -10736,7 +12001,7 @@ class ResetPeriodConfiguration(sgqlc.types.Union):
|
|
|
10736
12001
|
|
|
10737
12002
|
class ScheduleVariables(sgqlc.types.Union):
|
|
10738
12003
|
__schema__ = schema
|
|
10739
|
-
__types__ = (AddonChangeVariables, AddonPriceOverrideChangeVariables, BillingPeriodChangeVariables, CouponChangeVariables, DowngradeChangeVariables, PlanChangeVariables, PlanPriceOverrideChangeVariables, UnitAmountChangeVariables)
|
|
12004
|
+
__types__ = (AddonChangeVariables, AddonPriceOverrideChangeVariables, BillingPeriodChangeVariables, CouponChangeVariables, DowngradeChangeVariables, PlanChangeVariables, PlanPriceOverrideChangeVariables, RecurringCreditsChangeVariables, UnitAmountChangeVariables)
|
|
10740
12005
|
|
|
10741
12006
|
|
|
10742
12007
|
class SyncRevisionData(sgqlc.types.Union):
|