stigg-api-client 1.190.3__py3-none-any.whl → 1.194.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.
Potentially problematic release.
This version of stigg-api-client might be problematic. Click here for more details.
- stigg/generated/schema.py +122 -17
- {stigg_api_client-1.190.3.dist-info → stigg_api_client-1.194.0.dist-info}/METADATA +1 -1
- {stigg_api_client-1.190.3.dist-info → stigg_api_client-1.194.0.dist-info}/RECORD +5 -5
- {stigg_api_client-1.190.3.dist-info → stigg_api_client-1.194.0.dist-info}/LICENSE +0 -0
- {stigg_api_client-1.190.3.dist-info → stigg_api_client-1.194.0.dist-info}/WHEEL +0 -0
stigg/generated/schema.py
CHANGED
|
@@ -178,6 +178,16 @@ class ErrorCode(sgqlc.types.Enum):
|
|
|
178
178
|
__choices__ = ('AccountNotFoundError', 'AddonDependencyMissingError', 'AddonHasToHavePriceError', 'AddonNotFound', 'AddonQuantityExceedsLimitError', 'AddonWithDraftCannotBeDeletedError', 'AmountTooLarge', 'ArchivedCouponCantBeApplied', 'AuthCustomerMismatch', 'AwsMarketplaceIntegrationError', 'AwsMarketplaceIntegrationValidationError', 'BadUserInput', 'BillingIntegrationMissing', 'BillingPeriodMissingError', 'CannotAddOverrideEntitlementToPlan', 'CannotArchiveFeatureError', 'CannotDeleteCustomerError', 'CannotDeleteFeatureError', 'CannotDeleteProductError', 'CannotEditPackageInNonDraftMode', 'CannotRemovePaymentMethodFromCustomerError', 'CannotReportUsageForEntitlementWithMeterError', 'CannotUpsertToPackageThatHasDraft', 'CheckoutIsNotSupported', 'CouponNotFound', 'CustomerAlreadyHaveCustomerCoupon', 'CustomerAlreadyUsesCoupon', 'CustomerHasNoEmailAddress', 'CustomerNoBillingId', 'CustomerNotFound', 'CustomerResourceNotFound', 'DowngradeBillingPeriodNotSupportedError', 'DraftPlanCantBeArchived', 'DuplicateAddonProvisionedError', 'DuplicateProductValidationError', 'DuplicatedEntityNotAllowed', 'EditAllowedOnDraftPackageOnlyError', 'EntitlementLimitExceededError', 'EntitlementUsageOutOfRangeError', 'EntitlementsMustBelongToSamePackage', 'EntityIdDifferentFromRefIdError', 'EntityIsArchivedError', 'EnvironmentMissing', 'ExperimentAlreadyRunning', 'ExperimentNotFoundError', 'ExperimentStatusError', 'FailedToCreateCheckoutSessionError', 'FailedToImportCustomer', 'FeatureNotFound', 'FetchAllCountriesPricesNotAllowed', 'FreePlanCantHaveCompatiblePackageGroupError', 'IdentityForbidden', 'ImportAlreadyInProgress', 'ImportSubscriptionsBulkError', 'InitStripePaymentMethodError', 'IntegrationNotFound', 'IntegrationValidationError', 'IntegrityViolation', 'InvalidAddressError', 'InvalidArgumentError', 'InvalidCancellationDate', 'InvalidEntitlementResetPeriod', 'InvalidMemberDelete', 'InvalidMetadataError', 'InvalidQuantity', 'InvalidSubscriptionStatus', 'InvalidUpdatePriceUnitAmountError', 'MemberInvitationError', 'MemberNotFound', 'MergeEnvironmentValidationError', 'MeterMustBeAssociatedToMeteredFeature', 'MeteringNotAvailableForFeatureType', 'MissingEntityIdError', 'MissingSubscriptionInvoiceError', 'NoFeatureEntitlementInSubscription', 'NoProductsAvailable', 'OperationNotAllowedDuringInProgressExperiment', 'PackageAlreadyPublished', 'PackageGroupMinItemsError', 'PackageGroupNotFound', 'PackagePricingTypeNotSet', 'PaymentMethodNotFoundError', 'PlanCannotBePublishWhenBasePlanIsDraft', 'PlanCannotBePublishWhenCompatibleAddonIsDraft', 'PlanIsUsedAsDefaultStartPlan', 'PlanIsUsedAsDowngradePlan', 'PlanNotFound', 'PlanWithChildCantBeDeleted', 'PlansCircularDependencyError', 'PriceNotFound', 'ProductNotFoundError', 'PromotionCodeCustomerNotFirstPurchase', 'PromotionCodeMaxRedemptionsReached', 'PromotionCodeMinimumAmountNotReached', 'PromotionCodeNotActive', 'PromotionCodeNotForCustomer', 'PromotionCodeNotFound', 'PromotionalEntitlementNotFoundError', 'RateLimitExceeded', 'RecalculateEntitlementsError', 'ResyncAlreadyInProgress', 'ScheduledMigrationAlreadyExistsError', 'SelectedBillingModelDoesntMatchImportedItemError', 'StripeCustomerIsDeleted', 'StripeError', 'SubscriptionAlreadyCanceledOrExpired', 'SubscriptionAlreadyOnLatestPlanError', 'SubscriptionInvoiceStatusError', 'SubscriptionMustHaveSinglePlanError', 'SubscriptionNoBillingId', 'SubscriptionNotFound', 'TooManySubscriptionsPerCustomer', 'TrialMinDateError', 'TrialMustBeCancelledImmediately', 'UnPublishedPackage', 'Unauthenticated', 'UncompatibleSubscriptionAddon', 'UnexpectedError', 'UnsupportedFeatureType', 'UnsupportedSubscriptionScheduleType', 'UnsupportedVendorIdentifier', 'UsageMeasurementDiffOutOfRangeError')
|
|
179
179
|
|
|
180
180
|
|
|
181
|
+
class EventActor(sgqlc.types.Enum):
|
|
182
|
+
__schema__ = schema
|
|
183
|
+
__choices__ = ('APP_CUSTOMER', 'APP_PUBLIC', 'APP_SERVER', 'SALESFORCE', 'SERVICE', 'STRIPE', 'SUPPORT', 'USER')
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
class EventLogSortFields(sgqlc.types.Enum):
|
|
187
|
+
__schema__ = schema
|
|
188
|
+
__choices__ = ('createdAt', 'entityId', 'eventLogType', 'parentEntityId')
|
|
189
|
+
|
|
190
|
+
|
|
181
191
|
class EventLogType(sgqlc.types.Enum):
|
|
182
192
|
__schema__ = schema
|
|
183
193
|
__choices__ = ('ADDON_CREATED', 'ADDON_DELETED', 'ADDON_UPDATED', 'COUPON_ARCHIVED', 'COUPON_CREATED', 'COUPON_UPDATED', 'CREATE_SUBSCRIPTION_FAILED', 'CUSTOMER_CREATED', 'CUSTOMER_DELETED', 'CUSTOMER_ENTITLEMENT_CALCULATION_TRIGGERED', 'CUSTOMER_PAYMENT_FAILED', 'CUSTOMER_RESOURCE_ENTITLEMENT_CALCULATION_TRIGGERED', 'CUSTOMER_UPDATED', '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_UPDATED', 'IMPORT_INTEGRATION_CATALOG_TRIGGERED', 'IMPORT_INTEGRATION_CUSTOMERS_TRIGGERED', 'IMPORT_SUBSCRIPTIONS_BULK_TRIGGERED', 'MEASUREMENT_REPORTED', 'PACKAGE_GROUP_CREATED', 'PACKAGE_GROUP_UPDATED', 'PACKAGE_PUBLISHED', 'PLAN_CREATED', 'PLAN_DELETED', 'PLAN_UPDATED', 'PRODUCT_CREATED', 'PRODUCT_DELETED', 'PRODUCT_UPDATED', 'PROMOTIONAL_ENTITLEMENT_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')
|
|
@@ -1709,6 +1719,53 @@ class EstimateSubscriptionUpdateInput(sgqlc.types.Input):
|
|
|
1709
1719
|
unit_quantity = sgqlc.types.Field(Float, graphql_name='unitQuantity')
|
|
1710
1720
|
|
|
1711
1721
|
|
|
1722
|
+
class EventLogCreatedAtFilterComparison(sgqlc.types.Input):
|
|
1723
|
+
__schema__ = schema
|
|
1724
|
+
__field_names__ = ('gte', 'lte')
|
|
1725
|
+
gte = sgqlc.types.Field(DateTime, graphql_name='gte')
|
|
1726
|
+
lte = sgqlc.types.Field(DateTime, graphql_name='lte')
|
|
1727
|
+
|
|
1728
|
+
|
|
1729
|
+
class EventLogEntityIdFilterComparison(sgqlc.types.Input):
|
|
1730
|
+
__schema__ = schema
|
|
1731
|
+
__field_names__ = ('eq', 'in_')
|
|
1732
|
+
eq = sgqlc.types.Field(String, graphql_name='eq')
|
|
1733
|
+
in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='in')
|
|
1734
|
+
|
|
1735
|
+
|
|
1736
|
+
class EventLogEventLogTypeFilterComparison(sgqlc.types.Input):
|
|
1737
|
+
__schema__ = schema
|
|
1738
|
+
__field_names__ = ('eq', 'in_')
|
|
1739
|
+
eq = sgqlc.types.Field(EventLogType, graphql_name='eq')
|
|
1740
|
+
in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(EventLogType)), graphql_name='in')
|
|
1741
|
+
|
|
1742
|
+
|
|
1743
|
+
class EventLogFilter(sgqlc.types.Input):
|
|
1744
|
+
__schema__ = schema
|
|
1745
|
+
__field_names__ = ('and_', 'created_at', 'entity_id', 'event_log_type', 'or_', 'parent_entity_id')
|
|
1746
|
+
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('EventLogFilter')), graphql_name='and')
|
|
1747
|
+
created_at = sgqlc.types.Field(EventLogCreatedAtFilterComparison, graphql_name='createdAt')
|
|
1748
|
+
entity_id = sgqlc.types.Field(EventLogEntityIdFilterComparison, graphql_name='entityId')
|
|
1749
|
+
event_log_type = sgqlc.types.Field(EventLogEventLogTypeFilterComparison, graphql_name='eventLogType')
|
|
1750
|
+
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('EventLogFilter')), graphql_name='or')
|
|
1751
|
+
parent_entity_id = sgqlc.types.Field('EventLogParentEntityIdFilterComparison', graphql_name='parentEntityId')
|
|
1752
|
+
|
|
1753
|
+
|
|
1754
|
+
class EventLogParentEntityIdFilterComparison(sgqlc.types.Input):
|
|
1755
|
+
__schema__ = schema
|
|
1756
|
+
__field_names__ = ('eq', 'in_')
|
|
1757
|
+
eq = sgqlc.types.Field(String, graphql_name='eq')
|
|
1758
|
+
in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='in')
|
|
1759
|
+
|
|
1760
|
+
|
|
1761
|
+
class EventLogSort(sgqlc.types.Input):
|
|
1762
|
+
__schema__ = schema
|
|
1763
|
+
__field_names__ = ('direction', 'field', 'nulls')
|
|
1764
|
+
direction = sgqlc.types.Field(sgqlc.types.non_null(SortDirection), graphql_name='direction')
|
|
1765
|
+
field = sgqlc.types.Field(sgqlc.types.non_null(EventLogSortFields), graphql_name='field')
|
|
1766
|
+
nulls = sgqlc.types.Field(SortNulls, graphql_name='nulls')
|
|
1767
|
+
|
|
1768
|
+
|
|
1712
1769
|
class EventsFieldsInput(sgqlc.types.Input):
|
|
1713
1770
|
__schema__ = schema
|
|
1714
1771
|
__field_names__ = ('customer_id', 'environment_id', 'filters', 'meter_id', 'resource_id', 'unique_values_limit')
|
|
@@ -5534,29 +5591,54 @@ class EnvironmentMissingError(sgqlc.types.Type):
|
|
|
5534
5591
|
is_validation_error = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='isValidationError')
|
|
5535
5592
|
|
|
5536
5593
|
|
|
5594
|
+
class EventActorInfo(sgqlc.types.Type):
|
|
5595
|
+
__schema__ = schema
|
|
5596
|
+
__field_names__ = ('email', 'ip_address', 'name', 'type')
|
|
5597
|
+
email = sgqlc.types.Field(String, graphql_name='email')
|
|
5598
|
+
ip_address = sgqlc.types.Field(String, graphql_name='ipAddress')
|
|
5599
|
+
name = sgqlc.types.Field(String, graphql_name='name')
|
|
5600
|
+
type = sgqlc.types.Field(EventActor, graphql_name='type')
|
|
5601
|
+
|
|
5602
|
+
|
|
5537
5603
|
class EventLog(sgqlc.types.Type):
|
|
5538
5604
|
__schema__ = schema
|
|
5539
|
-
__field_names__ = ('
|
|
5540
|
-
|
|
5541
|
-
|
|
5605
|
+
__field_names__ = ('account_id', 'actor', 'created_at', 'entity_id', 'environment_id', 'event_log_type', 'id', 'parent_entity_id', 'payload', 'request', 'webhooks')
|
|
5606
|
+
account_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='accountId')
|
|
5607
|
+
actor = sgqlc.types.Field(EventActorInfo, graphql_name='actor')
|
|
5608
|
+
created_at = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='createdAt')
|
|
5609
|
+
entity_id = sgqlc.types.Field(String, graphql_name='entityId')
|
|
5542
5610
|
environment_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='environmentId')
|
|
5543
5611
|
event_log_type = sgqlc.types.Field(sgqlc.types.non_null(EventLogType), graphql_name='eventLogType')
|
|
5544
5612
|
id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id')
|
|
5545
|
-
|
|
5613
|
+
parent_entity_id = sgqlc.types.Field(String, graphql_name='parentEntityId')
|
|
5614
|
+
payload = sgqlc.types.Field(sgqlc.types.non_null(JSON), graphql_name='payload')
|
|
5615
|
+
request = sgqlc.types.Field('EventRequest', graphql_name='request')
|
|
5616
|
+
webhooks = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('EventWebhook')), graphql_name='webhooks')
|
|
5546
5617
|
|
|
5547
5618
|
|
|
5548
5619
|
class EventLogAggregateGroupBy(sgqlc.types.Type):
|
|
5549
5620
|
__schema__ = schema
|
|
5550
|
-
__field_names__ = ('
|
|
5551
|
-
|
|
5552
|
-
|
|
5621
|
+
__field_names__ = ('created_at', 'entity_id', 'event_log_type', 'parent_entity_id')
|
|
5622
|
+
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
5623
|
+
entity_id = sgqlc.types.Field(String, graphql_name='entityId')
|
|
5624
|
+
event_log_type = sgqlc.types.Field(EventLogType, graphql_name='eventLogType')
|
|
5625
|
+
parent_entity_id = sgqlc.types.Field(String, graphql_name='parentEntityId')
|
|
5626
|
+
|
|
5627
|
+
|
|
5628
|
+
class EventLogConnection(sgqlc.types.relay.Connection):
|
|
5629
|
+
__schema__ = schema
|
|
5630
|
+
__field_names__ = ('edges', 'page_info')
|
|
5631
|
+
edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('EventLogEdge'))), graphql_name='edges')
|
|
5632
|
+
page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo')
|
|
5553
5633
|
|
|
5554
5634
|
|
|
5555
5635
|
class EventLogCountAggregate(sgqlc.types.Type):
|
|
5556
5636
|
__schema__ = schema
|
|
5557
|
-
__field_names__ = ('
|
|
5558
|
-
|
|
5559
|
-
|
|
5637
|
+
__field_names__ = ('created_at', 'entity_id', 'event_log_type', 'parent_entity_id')
|
|
5638
|
+
created_at = sgqlc.types.Field(Int, graphql_name='createdAt')
|
|
5639
|
+
entity_id = sgqlc.types.Field(Int, graphql_name='entityId')
|
|
5640
|
+
event_log_type = sgqlc.types.Field(Int, graphql_name='eventLogType')
|
|
5641
|
+
parent_entity_id = sgqlc.types.Field(Int, graphql_name='parentEntityId')
|
|
5560
5642
|
|
|
5561
5643
|
|
|
5562
5644
|
class EventLogEdge(sgqlc.types.Type):
|
|
@@ -5568,16 +5650,33 @@ class EventLogEdge(sgqlc.types.Type):
|
|
|
5568
5650
|
|
|
5569
5651
|
class EventLogMaxAggregate(sgqlc.types.Type):
|
|
5570
5652
|
__schema__ = schema
|
|
5571
|
-
__field_names__ = ('
|
|
5572
|
-
|
|
5573
|
-
|
|
5653
|
+
__field_names__ = ('created_at', 'entity_id', 'event_log_type', 'parent_entity_id')
|
|
5654
|
+
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
5655
|
+
entity_id = sgqlc.types.Field(String, graphql_name='entityId')
|
|
5656
|
+
event_log_type = sgqlc.types.Field(EventLogType, graphql_name='eventLogType')
|
|
5657
|
+
parent_entity_id = sgqlc.types.Field(String, graphql_name='parentEntityId')
|
|
5574
5658
|
|
|
5575
5659
|
|
|
5576
5660
|
class EventLogMinAggregate(sgqlc.types.Type):
|
|
5577
5661
|
__schema__ = schema
|
|
5578
|
-
__field_names__ = ('
|
|
5579
|
-
|
|
5580
|
-
|
|
5662
|
+
__field_names__ = ('created_at', 'entity_id', 'event_log_type', 'parent_entity_id')
|
|
5663
|
+
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
5664
|
+
entity_id = sgqlc.types.Field(String, graphql_name='entityId')
|
|
5665
|
+
event_log_type = sgqlc.types.Field(EventLogType, graphql_name='eventLogType')
|
|
5666
|
+
parent_entity_id = sgqlc.types.Field(String, graphql_name='parentEntityId')
|
|
5667
|
+
|
|
5668
|
+
|
|
5669
|
+
class EventRequest(sgqlc.types.Type):
|
|
5670
|
+
__schema__ = schema
|
|
5671
|
+
__field_names__ = ('trace_id',)
|
|
5672
|
+
trace_id = sgqlc.types.Field(String, graphql_name='traceId')
|
|
5673
|
+
|
|
5674
|
+
|
|
5675
|
+
class EventWebhook(sgqlc.types.Type):
|
|
5676
|
+
__schema__ = schema
|
|
5677
|
+
__field_names__ = ('endpoint', 'id')
|
|
5678
|
+
endpoint = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='endpoint')
|
|
5679
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id')
|
|
5581
5680
|
|
|
5582
5681
|
|
|
5583
5682
|
class EventsFields(sgqlc.types.Type):
|
|
@@ -8000,7 +8099,7 @@ class PublishPackageResult(sgqlc.types.Type):
|
|
|
8000
8099
|
|
|
8001
8100
|
class Query(sgqlc.types.Type):
|
|
8002
8101
|
__schema__ = schema
|
|
8003
|
-
__field_names__ = ('addons', 'aggregated_events_by_customer', 'cached_entitlements', 'checkout_state', 'coupon', 'coupons', 'current_environment', 'current_user', 'customer_portal', 'customer_resources', 'customer_subscriptions', 'customers', 'does_feature_exist', 'dump_environment_for_merge_comparison', 'dump_environment_product_catalog', 'entitlement', 'entitlements', 'environments', 'events_fields', 'experiment', 'experiments', 'feature_associated_latest_packages', 'features', 'fetch_account', 'get_active_subscriptions', 'get_addon_by_ref_id', 'get_aws_external_id', 'get_customer_by_ref_id', 'get_experiment_stats', 'get_package_group', 'get_paywall', 'get_plan_by_ref_id', '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', 'test_hook_data', 'usage_events', 'usage_history', 'usage_measurements', 'validate_merge_environment', 'widget_configuration')
|
|
8102
|
+
__field_names__ = ('addons', 'aggregated_events_by_customer', 'cached_entitlements', 'checkout_state', 'coupon', 'coupons', 'current_environment', 'current_user', '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', 'features', 'fetch_account', 'get_active_subscriptions', 'get_addon_by_ref_id', 'get_aws_external_id', 'get_customer_by_ref_id', 'get_experiment_stats', 'get_package_group', 'get_paywall', 'get_plan_by_ref_id', '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', 'test_hook_data', 'usage_events', 'usage_history', 'usage_measurements', 'validate_merge_environment', 'widget_configuration')
|
|
8004
8103
|
addons = sgqlc.types.Field(sgqlc.types.non_null(AddonConnection), graphql_name='addons', args=sgqlc.types.ArgDict((
|
|
8005
8104
|
('filter', sgqlc.types.Arg(AddonFilter, graphql_name='filter', default={})),
|
|
8006
8105
|
('paging', sgqlc.types.Arg(CursorPaging, graphql_name='paging', default={'first': 10})),
|
|
@@ -8077,6 +8176,12 @@ class Query(sgqlc.types.Type):
|
|
|
8077
8176
|
('filter', sgqlc.types.Arg(EnvironmentFilter, graphql_name='filter', default={})),
|
|
8078
8177
|
('paging', sgqlc.types.Arg(CursorPaging, graphql_name='paging', default={'first': 10})),
|
|
8079
8178
|
('sorting', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(EnvironmentSort)), graphql_name='sorting', default=[{'direction': 'DESC', 'field': 'createdAt'}])),
|
|
8179
|
+
))
|
|
8180
|
+
)
|
|
8181
|
+
event_logs = sgqlc.types.Field(sgqlc.types.non_null(EventLogConnection), graphql_name='eventLogs', args=sgqlc.types.ArgDict((
|
|
8182
|
+
('filter', sgqlc.types.Arg(EventLogFilter, graphql_name='filter', default={})),
|
|
8183
|
+
('paging', sgqlc.types.Arg(CursorPaging, graphql_name='paging', default={'first': 50})),
|
|
8184
|
+
('sorting', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(EventLogSort)), graphql_name='sorting', default=[{'direction': 'DESC', 'field': 'createdAt'}])),
|
|
8080
8185
|
))
|
|
8081
8186
|
)
|
|
8082
8187
|
events_fields = sgqlc.types.Field(sgqlc.types.non_null(EventsFields), graphql_name='eventsFields', args=sgqlc.types.ArgDict((
|
|
@@ -2,8 +2,8 @@ stigg/__init__.py,sha256=uQeM3YjvH1X56xOPknIEQezw0yjNNS-m9gi3B0XlSOM,44
|
|
|
2
2
|
stigg/client.py,sha256=z9u5SptafEM-tN_K0o_zGKYDy6VVS9LWvkH0ZBMO4jc,3721
|
|
3
3
|
stigg/generated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
stigg/generated/operations.py,sha256=XpHk4JUXsg1TEwy_43Q4D6MsaYQ8veITNggFZUnpM80,68759
|
|
5
|
-
stigg/generated/schema.py,sha256=
|
|
6
|
-
stigg_api_client-1.
|
|
7
|
-
stigg_api_client-1.
|
|
8
|
-
stigg_api_client-1.
|
|
9
|
-
stigg_api_client-1.
|
|
5
|
+
stigg/generated/schema.py,sha256=PaARNjQYMA6zVe28buvUG4NmkvKKbn5p-8JQ9Wqyr4s,597967
|
|
6
|
+
stigg_api_client-1.194.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
7
|
+
stigg_api_client-1.194.0.dist-info/METADATA,sha256=oUMTXYhIoS8eiJaQSUnl4sIEhzdqewcauObxgHZ71nE,3198
|
|
8
|
+
stigg_api_client-1.194.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
9
|
+
stigg_api_client-1.194.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|