stigg-api-client 0.666.0__py3-none-any.whl → 0.677.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 CHANGED
@@ -165,7 +165,7 @@ class ErrorCode(sgqlc.types.Enum):
165
165
 
166
166
  class EventLogType(sgqlc.types.Enum):
167
167
  __schema__ = schema
168
- __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_PACKAGE_ENTITLEMENTS_DATA_RESYNC', 'EDGE_API_SUBSCRIPTIONS_DATA_RESYNC', 'ENTITLEMENTS_UPDATED', 'ENTITLEMENT_DENIED', 'ENTITLEMENT_GRANTED', 'ENTITLEMENT_REQUESTED', '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_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', 'SUBSCRIPTION_CANCELED', 'SUBSCRIPTION_CREATED', 'SUBSCRIPTION_EXPIRED', 'SUBSCRIPTION_TRIAL_CONVERTED', 'SUBSCRIPTION_TRIAL_ENDS_SOON', 'SUBSCRIPTION_TRIAL_EXPIRED', 'SUBSCRIPTION_TRIAL_STARTED', 'SUBSCRIPTION_UPDATED', 'SUBSCRIPTION_USAGE_UPDATED', 'SYNC_FAILED', 'WIDGET_CONFIGURATION_UPDATED')
168
+ __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_PACKAGE_ENTITLEMENTS_DATA_RESYNC', 'EDGE_API_SUBSCRIPTIONS_DATA_RESYNC', 'ENTITLEMENTS_UPDATED', 'ENTITLEMENT_DENIED', 'ENTITLEMENT_GRANTED', 'ENTITLEMENT_REQUESTED', '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_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', 'SUBSCRIPTION_CANCELED', 'SUBSCRIPTION_CREATED', 'SUBSCRIPTION_EXPIRED', 'SUBSCRIPTION_TRIAL_CONVERTED', 'SUBSCRIPTION_TRIAL_ENDS_SOON', 'SUBSCRIPTION_TRIAL_EXPIRED', 'SUBSCRIPTION_TRIAL_STARTED', 'SUBSCRIPTION_UPDATED', 'SUBSCRIPTION_USAGE_UPDATED', 'SYNC_FAILED', 'WIDGET_CONFIGURATION_UPDATED')
169
169
 
170
170
 
171
171
  class ExperimentSortFields(sgqlc.types.Enum):
@@ -295,7 +295,7 @@ class ProductIntegrationType(sgqlc.types.Enum):
295
295
 
296
296
  class ProductSortFields(sgqlc.types.Enum):
297
297
  __schema__ = schema
298
- __choices__ = ('createdAt', 'description', 'displayName', 'environmentId', 'id', 'isDefaultProduct', 'refId', 'updatedAt')
298
+ __choices__ = ('awsMarketplaceProductCode', 'awsMarketplaceProductId', 'createdAt', 'description', 'displayName', 'environmentId', 'id', 'isDefaultProduct', 'refId', 'updatedAt')
299
299
 
300
300
 
301
301
  class PromotionalEntitlementPeriod(sgqlc.types.Enum):
@@ -2317,8 +2317,10 @@ class PlanFilterAddonFilter(sgqlc.types.Input):
2317
2317
 
2318
2318
  class PlanFilterProductFilter(sgqlc.types.Input):
2319
2319
  __schema__ = schema
2320
- __field_names__ = ('and_', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'is_default_product', 'or_', 'ref_id', 'updated_at')
2320
+ __field_names__ = ('and_', 'aws_marketplace_product_code', 'aws_marketplace_product_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'is_default_product', 'or_', 'ref_id', 'updated_at')
2321
2321
  and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PlanFilterProductFilter')), graphql_name='and')
2322
+ aws_marketplace_product_code = sgqlc.types.Field('StringFieldComparison', graphql_name='awsMarketplaceProductCode')
2323
+ aws_marketplace_product_id = sgqlc.types.Field('StringFieldComparison', graphql_name='awsMarketplaceProductId')
2322
2324
  created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
2323
2325
  description = sgqlc.types.Field('StringFieldComparison', graphql_name='description')
2324
2326
  display_name = sgqlc.types.Field('StringFieldComparison', graphql_name='displayName')
@@ -2472,8 +2474,10 @@ class ProductCreateInput(sgqlc.types.Input):
2472
2474
 
2473
2475
  class ProductFilter(sgqlc.types.Input):
2474
2476
  __schema__ = schema
2475
- __field_names__ = ('and_', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'is_default_product', 'or_', 'ref_id', 'updated_at')
2477
+ __field_names__ = ('and_', 'aws_marketplace_product_code', 'aws_marketplace_product_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'is_default_product', 'or_', 'ref_id', 'updated_at')
2476
2478
  and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ProductFilter')), graphql_name='and')
2479
+ aws_marketplace_product_code = sgqlc.types.Field('StringFieldComparison', graphql_name='awsMarketplaceProductCode')
2480
+ aws_marketplace_product_id = sgqlc.types.Field('StringFieldComparison', graphql_name='awsMarketplaceProductId')
2477
2481
  created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
2478
2482
  description = sgqlc.types.Field('StringFieldComparison', graphql_name='description')
2479
2483
  display_name = sgqlc.types.Field('StringFieldComparison', graphql_name='displayName')
@@ -2958,10 +2962,11 @@ class SubscriptionAddonSort(sgqlc.types.Input):
2958
2962
 
2959
2963
  class SubscriptionBillingInfo(sgqlc.types.Input):
2960
2964
  __schema__ = schema
2961
- __field_names__ = ('billing_address', 'charge_on_behalf_of_account', 'coupon_id', 'metadata', 'tax_percentage', 'tax_rate_ids')
2965
+ __field_names__ = ('billing_address', 'charge_on_behalf_of_account', 'coupon_id', 'is_backdated', 'metadata', 'tax_percentage', 'tax_rate_ids')
2962
2966
  billing_address = sgqlc.types.Field(BillingAddress, graphql_name='billingAddress')
2963
2967
  charge_on_behalf_of_account = sgqlc.types.Field(String, graphql_name='chargeOnBehalfOfAccount')
2964
2968
  coupon_id = sgqlc.types.Field(String, graphql_name='couponId')
2969
+ is_backdated = sgqlc.types.Field(Boolean, graphql_name='isBackdated')
2965
2970
  metadata = sgqlc.types.Field(JSON, graphql_name='metadata')
2966
2971
  tax_percentage = sgqlc.types.Field(Float, graphql_name='taxPercentage')
2967
2972
  tax_rate_ids = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='taxRateIds')
@@ -6434,8 +6439,9 @@ class PaywallProduct(sgqlc.types.Type):
6434
6439
 
6435
6440
  class Plan(sgqlc.types.Type):
6436
6441
  __schema__ = schema
6437
- __field_names__ = ('additional_meta_data', 'base_plan', 'billing_id', 'billing_link_url', 'compatible_addons', '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', 'prices', 'pricing_type', 'product', 'product_id', 'ref_id', 'status', 'sync_states', 'type', 'updated_at', 'version_number')
6442
+ __field_names__ = ('additional_meta_data', 'aws_marketplace_plan_dimension', 'base_plan', 'billing_id', 'billing_link_url', 'compatible_addons', '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', 'prices', 'pricing_type', 'product', 'product_id', 'ref_id', 'status', 'sync_states', 'type', 'updated_at', 'version_number')
6438
6443
  additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
6444
+ aws_marketplace_plan_dimension = sgqlc.types.Field(String, graphql_name='awsMarketplacePlanDimension')
6439
6445
  base_plan = sgqlc.types.Field('Plan', graphql_name='basePlan')
6440
6446
  billing_id = sgqlc.types.Field(String, graphql_name='billingId')
6441
6447
  billing_link_url = sgqlc.types.Field(String, graphql_name='billingLinkUrl')
@@ -6721,9 +6727,11 @@ class PricingTypeChange(sgqlc.types.Type):
6721
6727
 
6722
6728
  class Product(sgqlc.types.Type):
6723
6729
  __schema__ = schema
6724
- __field_names__ = ('additional_meta_data', 'addons', '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', 'updated_at')
6730
+ __field_names__ = ('additional_meta_data', 'addons', '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', 'updated_at')
6725
6731
  additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
6726
6732
  addons = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Addon))), graphql_name='addons')
6733
+ aws_marketplace_product_code = sgqlc.types.Field(String, graphql_name='awsMarketplaceProductCode')
6734
+ aws_marketplace_product_id = sgqlc.types.Field(String, graphql_name='awsMarketplaceProductId')
6727
6735
  created_at = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='createdAt')
6728
6736
  description = sgqlc.types.Field(String, graphql_name='description')
6729
6737
  display_name = sgqlc.types.Field(String, graphql_name='displayName')
@@ -6743,7 +6751,9 @@ class Product(sgqlc.types.Type):
6743
6751
 
6744
6752
  class ProductAggregateGroupBy(sgqlc.types.Type):
6745
6753
  __schema__ = schema
6746
- __field_names__ = ('created_at', 'description', 'display_name', 'environment_id', 'id', 'is_default_product', 'ref_id', 'updated_at')
6754
+ __field_names__ = ('aws_marketplace_product_code', 'aws_marketplace_product_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'is_default_product', 'ref_id', 'updated_at')
6755
+ aws_marketplace_product_code = sgqlc.types.Field(String, graphql_name='awsMarketplaceProductCode')
6756
+ aws_marketplace_product_id = sgqlc.types.Field(String, graphql_name='awsMarketplaceProductId')
6747
6757
  created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
6748
6758
  description = sgqlc.types.Field(String, graphql_name='description')
6749
6759
  display_name = sgqlc.types.Field(String, graphql_name='displayName')
@@ -6764,7 +6774,9 @@ class ProductConnection(sgqlc.types.relay.Connection):
6764
6774
 
6765
6775
  class ProductCountAggregate(sgqlc.types.Type):
6766
6776
  __schema__ = schema
6767
- __field_names__ = ('created_at', 'description', 'display_name', 'environment_id', 'id', 'is_default_product', 'ref_id', 'updated_at')
6777
+ __field_names__ = ('aws_marketplace_product_code', 'aws_marketplace_product_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'is_default_product', 'ref_id', 'updated_at')
6778
+ aws_marketplace_product_code = sgqlc.types.Field(Int, graphql_name='awsMarketplaceProductCode')
6779
+ aws_marketplace_product_id = sgqlc.types.Field(Int, graphql_name='awsMarketplaceProductId')
6768
6780
  created_at = sgqlc.types.Field(Int, graphql_name='createdAt')
6769
6781
  description = sgqlc.types.Field(Int, graphql_name='description')
6770
6782
  display_name = sgqlc.types.Field(Int, graphql_name='displayName')
@@ -6777,9 +6789,11 @@ class ProductCountAggregate(sgqlc.types.Type):
6777
6789
 
6778
6790
  class ProductDeleteResponse(sgqlc.types.Type):
6779
6791
  __schema__ = schema
6780
- __field_names__ = ('additional_meta_data', 'addons', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'is_default_product', 'multiple_subscriptions', 'plans', 'product_settings', 'ref_id', 'updated_at')
6792
+ __field_names__ = ('additional_meta_data', 'addons', 'aws_marketplace_product_code', 'aws_marketplace_product_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'is_default_product', 'multiple_subscriptions', 'plans', 'product_settings', 'ref_id', 'updated_at')
6781
6793
  additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
6782
6794
  addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(Addon)), graphql_name='addons')
6795
+ aws_marketplace_product_code = sgqlc.types.Field(String, graphql_name='awsMarketplaceProductCode')
6796
+ aws_marketplace_product_id = sgqlc.types.Field(String, graphql_name='awsMarketplaceProductId')
6783
6797
  created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
6784
6798
  description = sgqlc.types.Field(String, graphql_name='description')
6785
6799
  display_name = sgqlc.types.Field(String, graphql_name='displayName')
@@ -6802,7 +6816,9 @@ class ProductEdge(sgqlc.types.Type):
6802
6816
 
6803
6817
  class ProductMaxAggregate(sgqlc.types.Type):
6804
6818
  __schema__ = schema
6805
- __field_names__ = ('created_at', 'description', 'display_name', 'environment_id', 'id', 'ref_id', 'updated_at')
6819
+ __field_names__ = ('aws_marketplace_product_code', 'aws_marketplace_product_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'ref_id', 'updated_at')
6820
+ aws_marketplace_product_code = sgqlc.types.Field(String, graphql_name='awsMarketplaceProductCode')
6821
+ aws_marketplace_product_id = sgqlc.types.Field(String, graphql_name='awsMarketplaceProductId')
6806
6822
  created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
6807
6823
  description = sgqlc.types.Field(String, graphql_name='description')
6808
6824
  display_name = sgqlc.types.Field(String, graphql_name='displayName')
@@ -6814,7 +6830,9 @@ class ProductMaxAggregate(sgqlc.types.Type):
6814
6830
 
6815
6831
  class ProductMinAggregate(sgqlc.types.Type):
6816
6832
  __schema__ = schema
6817
- __field_names__ = ('created_at', 'description', 'display_name', 'environment_id', 'id', 'ref_id', 'updated_at')
6833
+ __field_names__ = ('aws_marketplace_product_code', 'aws_marketplace_product_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'ref_id', 'updated_at')
6834
+ aws_marketplace_product_code = sgqlc.types.Field(String, graphql_name='awsMarketplaceProductCode')
6835
+ aws_marketplace_product_id = sgqlc.types.Field(String, graphql_name='awsMarketplaceProductId')
6818
6836
  created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
6819
6837
  description = sgqlc.types.Field(String, graphql_name='description')
6820
6838
  display_name = sgqlc.types.Field(String, graphql_name='displayName')
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: stigg-api-client
3
- Version: 0.666.0
3
+ Version: 0.677.0
4
4
  Summary:
5
5
  License: STIGG SDK LICENSE
6
6
  Author: Stigg
@@ -2,8 +2,8 @@ stigg/__init__.py,sha256=uQeM3YjvH1X56xOPknIEQezw0yjNNS-m9gi3B0XlSOM,44
2
2
  stigg/client.py,sha256=wSb0yyW13mWMr_4pooJArTtCa2fL5079ho9jGaZTdpE,3699
3
3
  stigg/generated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
4
  stigg/generated/operations.py,sha256=16LJlMDuaTK3tMZA5kJyB0duSamqBrnTW_hrCsWF0kI,62129
5
- stigg/generated/schema.py,sha256=83CBrhiRcqu-glASMwh9Msc8A4sCM3FEggzBhP-96qk,507366
6
- stigg_api_client-0.666.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
7
- stigg_api_client-0.666.0.dist-info/METADATA,sha256=BqgyXvNqrTN5wi-OnTGwL4duSPtzcY-iwWW6Jnw2cfs,3198
8
- stigg_api_client-0.666.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
9
- stigg_api_client-0.666.0.dist-info/RECORD,,
5
+ stigg/generated/schema.py,sha256=wvDB3feckjyI7dzcJ09cFxHqMKOUpcVACjSHLo3OWqM,509853
6
+ stigg_api_client-0.677.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
7
+ stigg_api_client-0.677.0.dist-info/METADATA,sha256=G0OMujnra7O-sLn6ZAWqaXEp-iwidm2AOtsV2TgXuxs,3198
8
+ stigg_api_client-0.677.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
9
+ stigg_api_client-0.677.0.dist-info/RECORD,,