stigg-api-client 2.503.0__py3-none-any.whl → 3.3.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/generated/schema.py +12 -1
- {stigg_api_client-2.503.0.dist-info → stigg_api_client-3.3.0.dist-info}/METADATA +1 -1
- stigg_api_client-3.3.0.dist-info/RECORD +9 -0
- stigg_api_client-2.503.0.dist-info/RECORD +0 -9
- {stigg_api_client-2.503.0.dist-info → stigg_api_client-3.3.0.dist-info}/LICENSE +0 -0
- {stigg_api_client-2.503.0.dist-info → stigg_api_client-3.3.0.dist-info}/WHEEL +0 -0
stigg/generated/schema.py
CHANGED
|
@@ -2142,6 +2142,13 @@ class FeatureFilter(sgqlc.types.Input):
|
|
|
2142
2142
|
updated_at = sgqlc.types.Field(DateFieldComparison, graphql_name='updatedAt')
|
|
2143
2143
|
|
|
2144
2144
|
|
|
2145
|
+
class FeatureGroupAssociatedLatestPackagesInput(sgqlc.types.Input):
|
|
2146
|
+
__schema__ = schema
|
|
2147
|
+
__field_names__ = ('environment_id', 'feature_group_id')
|
|
2148
|
+
environment_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='environmentId')
|
|
2149
|
+
feature_group_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='featureGroupId')
|
|
2150
|
+
|
|
2151
|
+
|
|
2145
2152
|
class FeatureGroupFilter(sgqlc.types.Input):
|
|
2146
2153
|
__schema__ = schema
|
|
2147
2154
|
__field_names__ = ('and_', 'created_at', 'display_name', 'environment_id', 'feature_group_id', 'id', 'is_latest', 'or_', 'status', 'updated_at', 'version_number')
|
|
@@ -9085,7 +9092,7 @@ class PublishPackageResult(sgqlc.types.Type):
|
|
|
9085
9092
|
|
|
9086
9093
|
class Query(sgqlc.types.Type):
|
|
9087
9094
|
__schema__ = schema
|
|
9088
|
-
__field_names__ = ('addon_associated_entities', 'addons', 'aggregated_events_by_customer', 'cached_entitlements', 'checkout_state', 'coupon', 'coupons', '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_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')
|
|
9095
|
+
__field_names__ = ('addon_associated_entities', 'addons', 'aggregated_events_by_customer', 'cached_entitlements', 'checkout_state', 'coupon', 'coupons', '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')
|
|
9089
9096
|
addon_associated_entities = sgqlc.types.Field(sgqlc.types.non_null(AddonAssociatedEntities), graphql_name='addonAssociatedEntities', args=sgqlc.types.ArgDict((
|
|
9090
9097
|
('input', sgqlc.types.Arg(sgqlc.types.non_null(AddonAssociatedEntitiesInput), graphql_name='input', default=None)),
|
|
9091
9098
|
))
|
|
@@ -9202,6 +9209,10 @@ class Query(sgqlc.types.Type):
|
|
|
9202
9209
|
)
|
|
9203
9210
|
feature_group = sgqlc.types.Field(FeatureGroup, graphql_name='featureGroup', args=sgqlc.types.ArgDict((
|
|
9204
9211
|
('id', sgqlc.types.Arg(sgqlc.types.non_null(UUID), graphql_name='id', default=None)),
|
|
9212
|
+
))
|
|
9213
|
+
)
|
|
9214
|
+
feature_group_associated_latest_packages = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(PackageDTO))), graphql_name='featureGroupAssociatedLatestPackages', args=sgqlc.types.ArgDict((
|
|
9215
|
+
('input', sgqlc.types.Arg(sgqlc.types.non_null(FeatureGroupAssociatedLatestPackagesInput), graphql_name='input', default=None)),
|
|
9205
9216
|
))
|
|
9206
9217
|
)
|
|
9207
9218
|
feature_groups = sgqlc.types.Field(sgqlc.types.non_null(FeatureGroupConnection), graphql_name='featureGroups', args=sgqlc.types.ArgDict((
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
stigg/__init__.py,sha256=uQeM3YjvH1X56xOPknIEQezw0yjNNS-m9gi3B0XlSOM,44
|
|
2
|
+
stigg/client.py,sha256=z9u5SptafEM-tN_K0o_zGKYDy6VVS9LWvkH0ZBMO4jc,3721
|
|
3
|
+
stigg/generated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
stigg/generated/operations.py,sha256=6upyj_LMavtOecQ_LzXeGpqN5dSZZGDhbZbS_5VdBA8,82008
|
|
5
|
+
stigg/generated/schema.py,sha256=xgFdt5WMyD1vL_llwqUswLJC9TTy3x8BrH6cezb1Tw4,690741
|
|
6
|
+
stigg_api_client-3.3.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
7
|
+
stigg_api_client-3.3.0.dist-info/METADATA,sha256=xYzeAHiR8DW5Ox93DOBlS8uD3IiulThf1dQP_skcxbM,3196
|
|
8
|
+
stigg_api_client-3.3.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
9
|
+
stigg_api_client-3.3.0.dist-info/RECORD,,
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
stigg/__init__.py,sha256=uQeM3YjvH1X56xOPknIEQezw0yjNNS-m9gi3B0XlSOM,44
|
|
2
|
-
stigg/client.py,sha256=z9u5SptafEM-tN_K0o_zGKYDy6VVS9LWvkH0ZBMO4jc,3721
|
|
3
|
-
stigg/generated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
stigg/generated/operations.py,sha256=6upyj_LMavtOecQ_LzXeGpqN5dSZZGDhbZbS_5VdBA8,82008
|
|
5
|
-
stigg/generated/schema.py,sha256=Tw-pEtvpaHmorMJaPwgOdaAxtpu0Y7x_D702JCVDZCk,689975
|
|
6
|
-
stigg_api_client-2.503.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
7
|
-
stigg_api_client-2.503.0.dist-info/METADATA,sha256=Wiqn6lWq6xGCnJgjdo14-gh2aqX8sHLjGB_RxT0uPFs,3198
|
|
8
|
-
stigg_api_client-2.503.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
9
|
-
stigg_api_client-2.503.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|