stigg-api-client-v2 3.17.0__py3-none-any.whl → 3.22.2__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-v2 might be problematic. Click here for more details.

@@ -99,7 +99,6 @@ from .enums import (
99
99
  PromotionalEntitlementSortFields,
100
100
  PromotionalEntitlementStatus,
101
101
  ProrationBehavior,
102
- ProrationBehaviorExtended,
103
102
  ProvisionSubscriptionStatus,
104
103
  PublishMigrationType,
105
104
  ScheduleStrategy,
@@ -119,6 +118,7 @@ from .enums import (
119
118
  SubscriptionMigrationTaskSortFields,
120
119
  SubscriptionMigrationTime,
121
120
  SubscriptionPriceSortFields,
121
+ SubscriptionProrationBehavior,
122
122
  SubscriptionQuerySortFields,
123
123
  SubscriptionScheduleStatus,
124
124
  SubscriptionScheduleType,
@@ -1580,7 +1580,6 @@ __all__ = [
1580
1580
  "PromotionalEntitlementStatusFilterComparison",
1581
1581
  "PromotionalEntitlementUpdateInput",
1582
1582
  "ProrationBehavior",
1583
- "ProrationBehaviorExtended",
1584
1583
  "ProvisionCustomer",
1585
1584
  "ProvisionCustomerFragment",
1586
1585
  "ProvisionCustomerFragmentCustomer",
@@ -1791,6 +1790,7 @@ __all__ = [
1791
1790
  "SubscriptionPriceFilterPriceFilter",
1792
1791
  "SubscriptionPriceSort",
1793
1792
  "SubscriptionPriceSortFields",
1793
+ "SubscriptionProrationBehavior",
1794
1794
  "SubscriptionQueryFilter",
1795
1795
  "SubscriptionQueryFragment",
1796
1796
  "SubscriptionQueryFragmentAddons",
stigg/generated/enums.py CHANGED
@@ -987,12 +987,6 @@ class ProrationBehavior(str, Enum):
987
987
  INVOICE_IMMEDIATELY = "INVOICE_IMMEDIATELY"
988
988
 
989
989
 
990
- class ProrationBehaviorExtended(str, Enum):
991
- CREATE_PRORATIONS = "CREATE_PRORATIONS"
992
- INVOICE_IMMEDIATELY = "INVOICE_IMMEDIATELY"
993
- NONE = "NONE"
994
-
995
-
996
990
  class ProvisionSubscriptionStatus(str, Enum):
997
991
  PAYMENT_REQUIRED = "PAYMENT_REQUIRED"
998
992
  SUCCESS = "SUCCESS"
@@ -1121,6 +1115,12 @@ class SubscriptionPriceSortFields(str, Enum):
1121
1115
  usageLimit = "usageLimit"
1122
1116
 
1123
1117
 
1118
+ class SubscriptionProrationBehavior(str, Enum):
1119
+ CREATE_PRORATIONS = "CREATE_PRORATIONS"
1120
+ INVOICE_IMMEDIATELY = "INVOICE_IMMEDIATELY"
1121
+ NONE = "NONE"
1122
+
1123
+
1124
1124
  class SubscriptionQuerySortFields(str, Enum):
1125
1125
  createdAt = "createdAt"
1126
1126
  customerId = "customerId"