stigg-api-client-v2 2.302.0__py3-none-any.whl → 2.303.1__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.
- stigg/generated/fragments.py +162 -162
- stigg/generated/input_types.py +1 -0
- {stigg_api_client_v2-2.302.0.dist-info → stigg_api_client_v2-2.303.1.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.302.0.dist-info → stigg_api_client_v2-2.303.1.dist-info}/RECORD +6 -6
- {stigg_api_client_v2-2.302.0.dist-info → stigg_api_client_v2-2.303.1.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.302.0.dist-info → stigg_api_client_v2-2.303.1.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -115,6 +115,38 @@ class PriceFragmentFeature(BaseModel):
|
|
|
115
115
|
description: Optional[str] = Field(default=None)
|
|
116
116
|
|
|
117
117
|
|
|
118
|
+
class OveragePriceFragment(BaseModel):
|
|
119
|
+
billing_model: BillingModel = Field(alias="billingModel")
|
|
120
|
+
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
121
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
122
|
+
billing_country_code: Optional[str] = Field(
|
|
123
|
+
alias="billingCountryCode", default=None
|
|
124
|
+
)
|
|
125
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
126
|
+
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
127
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
128
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
132
|
+
amount: float
|
|
133
|
+
currency: Currency
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
137
|
+
pass
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
141
|
+
ref_id: str = Field(alias="refId")
|
|
142
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
143
|
+
feature_units_plural: Optional[str] = Field(
|
|
144
|
+
alias="featureUnitsPlural", default=None
|
|
145
|
+
)
|
|
146
|
+
display_name: str = Field(alias="displayName")
|
|
147
|
+
description: Optional[str] = Field(default=None)
|
|
148
|
+
|
|
149
|
+
|
|
118
150
|
class PackageEntitlementFragment(BaseModel):
|
|
119
151
|
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
120
152
|
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
@@ -148,38 +180,6 @@ class PackageEntitlementFragmentFeature(BaseModel):
|
|
|
148
180
|
)
|
|
149
181
|
|
|
150
182
|
|
|
151
|
-
class OveragePriceFragment(BaseModel):
|
|
152
|
-
billing_model: BillingModel = Field(alias="billingModel")
|
|
153
|
-
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
154
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
155
|
-
billing_country_code: Optional[str] = Field(
|
|
156
|
-
alias="billingCountryCode", default=None
|
|
157
|
-
)
|
|
158
|
-
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
159
|
-
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
160
|
-
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
161
|
-
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
class OveragePriceFragmentPrice(BaseModel):
|
|
165
|
-
amount: float
|
|
166
|
-
currency: Currency
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
170
|
-
pass
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
class OveragePriceFragmentFeature(BaseModel):
|
|
174
|
-
ref_id: str = Field(alias="refId")
|
|
175
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
176
|
-
feature_units_plural: Optional[str] = Field(
|
|
177
|
-
alias="featureUnitsPlural", default=None
|
|
178
|
-
)
|
|
179
|
-
display_name: str = Field(alias="displayName")
|
|
180
|
-
description: Optional[str] = Field(default=None)
|
|
181
|
-
|
|
182
|
-
|
|
183
183
|
class AddonFragment(BaseModel):
|
|
184
184
|
id: str
|
|
185
185
|
ref_id: str = Field(alias="refId")
|
|
@@ -298,27 +298,6 @@ class EntitlementFragmentFeature(FeatureFragment):
|
|
|
298
298
|
pass
|
|
299
299
|
|
|
300
300
|
|
|
301
|
-
class SlimCustomerFragment(BaseModel):
|
|
302
|
-
id: str
|
|
303
|
-
name: Optional[str] = Field(default=None)
|
|
304
|
-
email: Optional[str] = Field(default=None)
|
|
305
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
306
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
307
|
-
ref_id: str = Field(alias="refId")
|
|
308
|
-
customer_id: str = Field(alias="customerId")
|
|
309
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
310
|
-
additional_meta_data: Optional[Any] = Field(
|
|
311
|
-
alias="additionalMetaData", default=None
|
|
312
|
-
)
|
|
313
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
314
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
315
|
-
)
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
319
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
320
|
-
|
|
321
|
-
|
|
322
301
|
class TotalPriceFragment(BaseModel):
|
|
323
302
|
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
324
303
|
total: "TotalPriceFragmentTotal"
|
|
@@ -480,8 +459,21 @@ class SubscriptionInvoiceFragment(BaseModel):
|
|
|
480
459
|
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
481
460
|
|
|
482
461
|
|
|
483
|
-
class
|
|
484
|
-
|
|
462
|
+
class SlimCustomerFragment(BaseModel):
|
|
463
|
+
id: str
|
|
464
|
+
name: Optional[str] = Field(default=None)
|
|
465
|
+
email: Optional[str] = Field(default=None)
|
|
466
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
467
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
468
|
+
ref_id: str = Field(alias="refId")
|
|
469
|
+
customer_id: str = Field(alias="customerId")
|
|
470
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
471
|
+
additional_meta_data: Optional[Any] = Field(
|
|
472
|
+
alias="additionalMetaData", default=None
|
|
473
|
+
)
|
|
474
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
475
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
476
|
+
)
|
|
485
477
|
|
|
486
478
|
|
|
487
479
|
class SubscriptionFutureUpdateData(BaseModel):
|
|
@@ -638,6 +630,14 @@ class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(Bas
|
|
|
638
630
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
639
631
|
|
|
640
632
|
|
|
633
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
634
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
635
|
+
|
|
636
|
+
|
|
637
|
+
class CustomerResourceFragment(BaseModel):
|
|
638
|
+
resource_id: str = Field(alias="resourceId")
|
|
639
|
+
|
|
640
|
+
|
|
641
641
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
642
642
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
643
643
|
alias="subscriptionScheduleType"
|
|
@@ -986,35 +986,6 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
986
986
|
)
|
|
987
987
|
|
|
988
988
|
|
|
989
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
990
|
-
status: PromotionalEntitlementStatus
|
|
991
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
992
|
-
feature_id: str = Field(alias="featureId")
|
|
993
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
994
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
995
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
996
|
-
alias="resetPeriod", default=None
|
|
997
|
-
)
|
|
998
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
999
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1000
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1004
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1005
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1006
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1007
|
-
feature_units_plural: Optional[str] = Field(
|
|
1008
|
-
alias="featureUnitsPlural", default=None
|
|
1009
|
-
)
|
|
1010
|
-
display_name: str = Field(alias="displayName")
|
|
1011
|
-
description: Optional[str] = Field(default=None)
|
|
1012
|
-
ref_id: str = Field(alias="refId")
|
|
1013
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1014
|
-
alias="additionalMetaData", default=None
|
|
1015
|
-
)
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
989
|
class CouponFragment(BaseModel):
|
|
1019
990
|
id: str
|
|
1020
991
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1049,6 +1020,35 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1049
1020
|
status: SyncStatus
|
|
1050
1021
|
|
|
1051
1022
|
|
|
1023
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
1024
|
+
status: PromotionalEntitlementStatus
|
|
1025
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1026
|
+
feature_id: str = Field(alias="featureId")
|
|
1027
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1028
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1029
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1030
|
+
alias="resetPeriod", default=None
|
|
1031
|
+
)
|
|
1032
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1033
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1034
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1035
|
+
|
|
1036
|
+
|
|
1037
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1038
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1039
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1040
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1041
|
+
feature_units_plural: Optional[str] = Field(
|
|
1042
|
+
alias="featureUnitsPlural", default=None
|
|
1043
|
+
)
|
|
1044
|
+
display_name: str = Field(alias="displayName")
|
|
1045
|
+
description: Optional[str] = Field(default=None)
|
|
1046
|
+
ref_id: str = Field(alias="refId")
|
|
1047
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1048
|
+
alias="additionalMetaData", default=None
|
|
1049
|
+
)
|
|
1050
|
+
|
|
1051
|
+
|
|
1052
1052
|
class CustomerFragment(SlimCustomerFragment):
|
|
1053
1053
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1054
1054
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1249,6 +1249,43 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1249
1249
|
pass
|
|
1250
1250
|
|
|
1251
1251
|
|
|
1252
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1253
|
+
display_name: str = Field(alias="displayName")
|
|
1254
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1255
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1256
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1257
|
+
period: PromotionalEntitlementPeriod
|
|
1258
|
+
start_date: Any = Field(alias="startDate")
|
|
1259
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1260
|
+
|
|
1261
|
+
|
|
1262
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1263
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1264
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1265
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1266
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1267
|
+
default=None
|
|
1268
|
+
)
|
|
1269
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1270
|
+
default=None
|
|
1271
|
+
)
|
|
1272
|
+
|
|
1273
|
+
|
|
1274
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1275
|
+
amount: float
|
|
1276
|
+
currency: Currency
|
|
1277
|
+
|
|
1278
|
+
|
|
1279
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1280
|
+
id: str
|
|
1281
|
+
ref_id: str = Field(alias="refId")
|
|
1282
|
+
display_name: str = Field(alias="displayName")
|
|
1283
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1284
|
+
feature_units_plural: Optional[str] = Field(
|
|
1285
|
+
alias="featureUnitsPlural", default=None
|
|
1286
|
+
)
|
|
1287
|
+
|
|
1288
|
+
|
|
1252
1289
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1253
1290
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1254
1291
|
alias="subscriptionScheduleType"
|
|
@@ -1418,33 +1455,6 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1418
1455
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1419
1456
|
|
|
1420
1457
|
|
|
1421
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1422
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1423
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1424
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1425
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1426
|
-
default=None
|
|
1427
|
-
)
|
|
1428
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1429
|
-
default=None
|
|
1430
|
-
)
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1434
|
-
amount: float
|
|
1435
|
-
currency: Currency
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1439
|
-
id: str
|
|
1440
|
-
ref_id: str = Field(alias="refId")
|
|
1441
|
-
display_name: str = Field(alias="displayName")
|
|
1442
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1443
|
-
feature_units_plural: Optional[str] = Field(
|
|
1444
|
-
alias="featureUnitsPlural", default=None
|
|
1445
|
-
)
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
1458
|
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1449
1459
|
addon_id: str = Field(alias="addonId")
|
|
1450
1460
|
description: Optional[str] = Field(default=None)
|
|
@@ -1548,16 +1558,6 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1548
1558
|
pass
|
|
1549
1559
|
|
|
1550
1560
|
|
|
1551
|
-
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1552
|
-
display_name: str = Field(alias="displayName")
|
|
1553
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1554
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1555
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1556
|
-
period: PromotionalEntitlementPeriod
|
|
1557
|
-
start_date: Any = Field(alias="startDate")
|
|
1558
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
1561
|
class CustomerPortalFragment(BaseModel):
|
|
1562
1562
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1563
1563
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -1785,39 +1785,6 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1785
1785
|
description: Optional[str] = Field(default=None)
|
|
1786
1786
|
|
|
1787
1787
|
|
|
1788
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1789
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1790
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1791
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1792
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1793
|
-
alias="resetPeriod", default=None
|
|
1794
|
-
)
|
|
1795
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1796
|
-
alias="hiddenFromWidgets", default=None
|
|
1797
|
-
)
|
|
1798
|
-
display_name_override: Optional[str] = Field(
|
|
1799
|
-
alias="displayNameOverride", default=None
|
|
1800
|
-
)
|
|
1801
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1802
|
-
default=None
|
|
1803
|
-
)
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1807
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1808
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1809
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1810
|
-
feature_units_plural: Optional[str] = Field(
|
|
1811
|
-
alias="featureUnitsPlural", default=None
|
|
1812
|
-
)
|
|
1813
|
-
display_name: str = Field(alias="displayName")
|
|
1814
|
-
description: Optional[str] = Field(default=None)
|
|
1815
|
-
ref_id: str = Field(alias="refId")
|
|
1816
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1817
|
-
alias="additionalMetaData", default=None
|
|
1818
|
-
)
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
1788
|
class MockPaywallPriceFragment(BaseModel):
|
|
1822
1789
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1823
1790
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1852,6 +1819,39 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1852
1819
|
display_name: str = Field(alias="displayName")
|
|
1853
1820
|
|
|
1854
1821
|
|
|
1822
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1823
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1824
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1825
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1826
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1827
|
+
alias="resetPeriod", default=None
|
|
1828
|
+
)
|
|
1829
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1830
|
+
alias="hiddenFromWidgets", default=None
|
|
1831
|
+
)
|
|
1832
|
+
display_name_override: Optional[str] = Field(
|
|
1833
|
+
alias="displayNameOverride", default=None
|
|
1834
|
+
)
|
|
1835
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1836
|
+
default=None
|
|
1837
|
+
)
|
|
1838
|
+
|
|
1839
|
+
|
|
1840
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1841
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1842
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1843
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1844
|
+
feature_units_plural: Optional[str] = Field(
|
|
1845
|
+
alias="featureUnitsPlural", default=None
|
|
1846
|
+
)
|
|
1847
|
+
display_name: str = Field(alias="displayName")
|
|
1848
|
+
description: Optional[str] = Field(default=None)
|
|
1849
|
+
ref_id: str = Field(alias="refId")
|
|
1850
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1851
|
+
alias="additionalMetaData", default=None
|
|
1852
|
+
)
|
|
1853
|
+
|
|
1854
|
+
|
|
1855
1855
|
class MockPaywallAddonFragment(BaseModel):
|
|
1856
1856
|
ref_id: str = Field(alias="refId")
|
|
1857
1857
|
display_name: str = Field(alias="displayName")
|
|
@@ -2764,38 +2764,38 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2764
2764
|
AddonDependencyFragment.model_rebuild()
|
|
2765
2765
|
PriceTierFragment.model_rebuild()
|
|
2766
2766
|
PriceFragment.model_rebuild()
|
|
2767
|
-
PackageEntitlementFragment.model_rebuild()
|
|
2768
2767
|
OveragePriceFragment.model_rebuild()
|
|
2768
|
+
PackageEntitlementFragment.model_rebuild()
|
|
2769
2769
|
AddonFragment.model_rebuild()
|
|
2770
2770
|
FeatureFragment.model_rebuild()
|
|
2771
2771
|
EntitlementFragment.model_rebuild()
|
|
2772
|
-
SlimCustomerFragment.model_rebuild()
|
|
2773
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2774
2772
|
TotalPriceFragment.model_rebuild()
|
|
2775
2773
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2776
2774
|
ProductFragment.model_rebuild()
|
|
2777
2775
|
PlanFragment.model_rebuild()
|
|
2778
2776
|
SubscriptionInvoiceFragment.model_rebuild()
|
|
2779
|
-
|
|
2777
|
+
SlimCustomerFragment.model_rebuild()
|
|
2780
2778
|
SubscriptionFutureUpdateData.model_rebuild()
|
|
2779
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2780
|
+
CustomerResourceFragment.model_rebuild()
|
|
2781
2781
|
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2782
2782
|
SubscriptionFragment.model_rebuild()
|
|
2783
2783
|
ApplySubscriptionFragment.model_rebuild()
|
|
2784
2784
|
FontVariantFragment.model_rebuild()
|
|
2785
2785
|
TypographyConfigurationFragment.model_rebuild()
|
|
2786
2786
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2787
|
-
PromotionalEntitlementFragment.model_rebuild()
|
|
2788
2787
|
CouponFragment.model_rebuild()
|
|
2788
|
+
PromotionalEntitlementFragment.model_rebuild()
|
|
2789
2789
|
CustomerFragment.model_rebuild()
|
|
2790
2790
|
CheckoutStateFragment.model_rebuild()
|
|
2791
2791
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2792
2792
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2793
2793
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2794
|
-
|
|
2794
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2795
2795
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2796
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2796
2797
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2797
2798
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2798
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2799
2799
|
CustomerPortalFragment.model_rebuild()
|
|
2800
2800
|
CustomerStatisticsFragment.model_rebuild()
|
|
2801
2801
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
|
@@ -2805,8 +2805,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
2805
2805
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
2806
2806
|
LayoutConfigurationFragment.model_rebuild()
|
|
2807
2807
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
2808
|
-
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2809
2808
|
MockPaywallPriceFragment.model_rebuild()
|
|
2809
|
+
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2810
2810
|
MockPaywallAddonFragment.model_rebuild()
|
|
2811
2811
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2812
2812
|
MockPaywallPlanFragment.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -4651,6 +4651,7 @@ class ZuoraCredentialsInput(BaseModel):
|
|
|
4651
4651
|
base_url: str = Field(alias="baseUrl")
|
|
4652
4652
|
client_id: str = Field(alias="clientId")
|
|
4653
4653
|
client_secret: str = Field(alias="clientSecret")
|
|
4654
|
+
payment_page_id: Optional[str] = Field(alias="paymentPageId", default=None)
|
|
4654
4655
|
stripe_publishable_key: Optional[str] = Field(
|
|
4655
4656
|
alias="stripePublishableKey", default=None
|
|
4656
4657
|
)
|
|
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=pc9LCxX-JHp05iOwlZI6QCpzXH5kinzBRAvgTHMBXyE,3433
|
|
|
123
123
|
stigg/generated/estimate_subscription.py,sha256=c0_vg0A_Hi8fdjeGudWZ0WziUF9jcjX5rlRitGMAMaQ,479
|
|
124
124
|
stigg/generated/estimate_subscription_update.py,sha256=ZYIFqqHHDfzhrOn95QnMmPNTXZ7JrKWRlUFzk8fWwKA,528
|
|
125
125
|
stigg/generated/exceptions.py,sha256=OQu-ZYCCV4VyMWTd1HR8gIjIK2CrA_JMlFxqOAJugWY,2411
|
|
126
|
-
stigg/generated/fragments.py,sha256=
|
|
126
|
+
stigg/generated/fragments.py,sha256=dWcM6DA9BqI7Zh0Mp8GXNdFaroGTx0qBYIIj3Mar8Ko,100553
|
|
127
127
|
stigg/generated/get_active_subscriptions.py,sha256=ngZ9jr8vzGI59wT8FhUFl46a8j9waoNjeZ1_lrcu2ww,513
|
|
128
128
|
stigg/generated/get_active_subscriptions_list.py,sha256=Awi9al2MXxdt_y7ZnWYZh8U3R9XiX50c7TyO4WZxyhw,541
|
|
129
129
|
stigg/generated/get_checkout_state.py,sha256=SAOXGAND879dwb7R5mr5LPZuPVuMUDwNR5M4mgmHv6w,409
|
|
@@ -144,7 +144,7 @@ stigg/generated/grant_promotional_entitlements.py,sha256=72PRYuqecL-0SkWb7deygkh
|
|
|
144
144
|
stigg/generated/import_customer.py,sha256=yEtrEB7T-Aykv3AUl-rAQz2XL6hKL0j-7JL3h-xi87o,403
|
|
145
145
|
stigg/generated/import_customer_bulk.py,sha256=miLn2ScWlPOH1IipltY5Vgd-ZQ_BkBk9t3-EsLvU5ZQ,284
|
|
146
146
|
stigg/generated/import_subscriptions_bulk.py,sha256=QgitpZkjE7eBhP1o5W0PTVAbKOvz61dNoeBAWupIcgU,297
|
|
147
|
-
stigg/generated/input_types.py,sha256=
|
|
147
|
+
stigg/generated/input_types.py,sha256=m8rA6TdE1Q8LynQM6PH9lNLoy4mQPuffBO3hmD-OpMA,191204
|
|
148
148
|
stigg/generated/migrate_subscription_to_latest.py,sha256=qQDwH7EodYAeJFb62IIl-MAEB5MbthgCJ0v1RMxpdYk,516
|
|
149
149
|
stigg/generated/preview_next_invoice.py,sha256=MiQ4Gv7Ve1Hv60xhaQi7uj82aq0xLP2UB-gjvcQdOL8,478
|
|
150
150
|
stigg/generated/preview_subscription.py,sha256=Qo2vlFs7sFzqaE8J_e-EHTRfLvG46lko-dcJMxDSCR0,475
|
|
@@ -160,7 +160,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
|
|
|
160
160
|
stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
|
|
161
161
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
162
162
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
163
|
-
stigg_api_client_v2-2.
|
|
164
|
-
stigg_api_client_v2-2.
|
|
165
|
-
stigg_api_client_v2-2.
|
|
166
|
-
stigg_api_client_v2-2.
|
|
163
|
+
stigg_api_client_v2-2.303.1.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.303.1.dist-info/METADATA,sha256=txBLdqgZczlKfZ1XDdhMiNOUaQKoPXguDhatvAG4-NU,2258
|
|
165
|
+
stigg_api_client_v2-2.303.1.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.303.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|