stigg-api-client-v2 3.53.4__py3-none-any.whl → 3.54.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-v2 might be problematic. Click here for more details.
- stigg/generated/fragments.py +204 -204
- {stigg_api_client_v2-3.53.4.dist-info → stigg_api_client_v2-3.54.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-3.53.4.dist-info → stigg_api_client_v2-3.54.0.dist-info}/RECORD +5 -5
- {stigg_api_client_v2-3.53.4.dist-info → stigg_api_client_v2-3.54.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-3.53.4.dist-info → stigg_api_client_v2-3.54.0.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -61,58 +61,6 @@ class AddonDependencyFragment(BaseModel):
|
|
|
61
61
|
description: Optional[str] = Field(default=None)
|
|
62
62
|
|
|
63
63
|
|
|
64
|
-
class PriceTierFragment(BaseModel):
|
|
65
|
-
up_to: Optional[float] = Field(alias="upTo", default=None)
|
|
66
|
-
unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
|
|
67
|
-
alias="unitPrice", default=None
|
|
68
|
-
)
|
|
69
|
-
flat_price: Optional["PriceTierFragmentFlatPrice"] = Field(
|
|
70
|
-
alias="flatPrice", default=None
|
|
71
|
-
)
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
class PriceTierFragmentUnitPrice(BaseModel):
|
|
75
|
-
amount: float
|
|
76
|
-
currency: Currency
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
class PriceTierFragmentFlatPrice(BaseModel):
|
|
80
|
-
amount: float
|
|
81
|
-
currency: Currency
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
class OveragePriceFragment(BaseModel):
|
|
85
|
-
billing_model: BillingModel = Field(alias="billingModel")
|
|
86
|
-
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
87
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
88
|
-
billing_country_code: Optional[str] = Field(
|
|
89
|
-
alias="billingCountryCode", default=None
|
|
90
|
-
)
|
|
91
|
-
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
92
|
-
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
93
|
-
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
94
|
-
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
class OveragePriceFragmentPrice(BaseModel):
|
|
98
|
-
amount: float
|
|
99
|
-
currency: Currency
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
103
|
-
pass
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
class OveragePriceFragmentFeature(BaseModel):
|
|
107
|
-
ref_id: str = Field(alias="refId")
|
|
108
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
109
|
-
feature_units_plural: Optional[str] = Field(
|
|
110
|
-
alias="featureUnitsPlural", default=None
|
|
111
|
-
)
|
|
112
|
-
display_name: str = Field(alias="displayName")
|
|
113
|
-
description: Optional[str] = Field(default=None)
|
|
114
|
-
|
|
115
|
-
|
|
116
64
|
class PackageEntitlementFragment(BaseModel):
|
|
117
65
|
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
118
66
|
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
@@ -148,6 +96,26 @@ class PackageEntitlementFragmentFeature(BaseModel):
|
|
|
148
96
|
)
|
|
149
97
|
|
|
150
98
|
|
|
99
|
+
class PriceTierFragment(BaseModel):
|
|
100
|
+
up_to: Optional[float] = Field(alias="upTo", default=None)
|
|
101
|
+
unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
|
|
102
|
+
alias="unitPrice", default=None
|
|
103
|
+
)
|
|
104
|
+
flat_price: Optional["PriceTierFragmentFlatPrice"] = Field(
|
|
105
|
+
alias="flatPrice", default=None
|
|
106
|
+
)
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
class PriceTierFragmentUnitPrice(BaseModel):
|
|
110
|
+
amount: float
|
|
111
|
+
currency: Currency
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
class PriceTierFragmentFlatPrice(BaseModel):
|
|
115
|
+
amount: float
|
|
116
|
+
currency: Currency
|
|
117
|
+
|
|
118
|
+
|
|
151
119
|
class PriceFragment(BaseModel):
|
|
152
120
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
153
121
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -192,6 +160,38 @@ class PriceFragmentFeature(BaseModel):
|
|
|
192
160
|
description: Optional[str] = Field(default=None)
|
|
193
161
|
|
|
194
162
|
|
|
163
|
+
class OveragePriceFragment(BaseModel):
|
|
164
|
+
billing_model: BillingModel = Field(alias="billingModel")
|
|
165
|
+
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
166
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
167
|
+
billing_country_code: Optional[str] = Field(
|
|
168
|
+
alias="billingCountryCode", default=None
|
|
169
|
+
)
|
|
170
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
171
|
+
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
172
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
173
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
177
|
+
amount: float
|
|
178
|
+
currency: Currency
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
182
|
+
pass
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
186
|
+
ref_id: str = Field(alias="refId")
|
|
187
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
188
|
+
feature_units_plural: Optional[str] = Field(
|
|
189
|
+
alias="featureUnitsPlural", default=None
|
|
190
|
+
)
|
|
191
|
+
display_name: str = Field(alias="displayName")
|
|
192
|
+
description: Optional[str] = Field(default=None)
|
|
193
|
+
|
|
194
|
+
|
|
195
195
|
class AddonFragment(BaseModel):
|
|
196
196
|
id: Any
|
|
197
197
|
ref_id: str = Field(alias="refId")
|
|
@@ -230,36 +230,21 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
230
230
|
pass
|
|
231
231
|
|
|
232
232
|
|
|
233
|
-
class
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
billing_id: str = Field(alias="billingId")
|
|
239
|
-
status: SubscriptionInvoiceStatus
|
|
240
|
-
created_at: Any = Field(alias="createdAt")
|
|
241
|
-
due_date: Optional[Any] = Field(alias="dueDate", default=None)
|
|
233
|
+
class SlimCustomerFragment(BaseModel):
|
|
234
|
+
id: Any
|
|
235
|
+
name: Optional[str] = Field(default=None)
|
|
236
|
+
email: Optional[str] = Field(default=None)
|
|
237
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
242
238
|
updated_at: Any = Field(alias="updatedAt")
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
249
|
-
alias="billingReason", default=None
|
|
250
|
-
)
|
|
251
|
-
currency: Optional[str] = Field(default=None)
|
|
252
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
253
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
254
|
-
alias="subTotalExcludingTax", default=None
|
|
239
|
+
ref_id: str = Field(alias="refId")
|
|
240
|
+
customer_id: str = Field(alias="customerId")
|
|
241
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
242
|
+
additional_meta_data: Optional[Any] = Field(
|
|
243
|
+
alias="additionalMetaData", default=None
|
|
255
244
|
)
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
alias="totalExcludingTax", default=None
|
|
245
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
246
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
259
247
|
)
|
|
260
|
-
tax: Optional[float] = Field(default=None)
|
|
261
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
262
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
263
248
|
|
|
264
249
|
|
|
265
250
|
class SubscriptionFutureUpdateData(BaseModel):
|
|
@@ -416,42 +401,23 @@ class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(Bas
|
|
|
416
401
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
417
402
|
|
|
418
403
|
|
|
419
|
-
class
|
|
420
|
-
|
|
421
|
-
name: Optional[str] = Field(default=None)
|
|
422
|
-
email: Optional[str] = Field(default=None)
|
|
423
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
424
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
425
|
-
ref_id: str = Field(alias="refId")
|
|
426
|
-
customer_id: str = Field(alias="customerId")
|
|
427
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
428
|
-
additional_meta_data: Optional[Any] = Field(
|
|
429
|
-
alias="additionalMetaData", default=None
|
|
430
|
-
)
|
|
431
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
432
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
433
|
-
)
|
|
404
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
405
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
434
406
|
|
|
435
407
|
|
|
436
|
-
class
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
description: Optional[str] = Field(default=None)
|
|
440
|
-
additional_meta_data: Optional[Any] = Field(
|
|
441
|
-
alias="additionalMetaData", default=None
|
|
442
|
-
)
|
|
443
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
408
|
+
class TotalPriceFragment(BaseModel):
|
|
409
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
410
|
+
total: "TotalPriceFragmentTotal"
|
|
444
411
|
|
|
445
412
|
|
|
446
|
-
class
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
)
|
|
413
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
414
|
+
amount: float
|
|
415
|
+
currency: Currency
|
|
450
416
|
|
|
451
417
|
|
|
452
|
-
class
|
|
453
|
-
|
|
454
|
-
|
|
418
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
419
|
+
amount: float
|
|
420
|
+
currency: Currency
|
|
455
421
|
|
|
456
422
|
|
|
457
423
|
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
@@ -472,6 +438,27 @@ class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
|
472
438
|
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
473
439
|
|
|
474
440
|
|
|
441
|
+
class ProductFragment(BaseModel):
|
|
442
|
+
ref_id: str = Field(alias="refId")
|
|
443
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
444
|
+
description: Optional[str] = Field(default=None)
|
|
445
|
+
additional_meta_data: Optional[Any] = Field(
|
|
446
|
+
alias="additionalMetaData", default=None
|
|
447
|
+
)
|
|
448
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
452
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
453
|
+
alias="downgradePlan", default=None
|
|
454
|
+
)
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
458
|
+
ref_id: str = Field(alias="refId")
|
|
459
|
+
display_name: str = Field(alias="displayName")
|
|
460
|
+
|
|
461
|
+
|
|
475
462
|
class PlanFragment(BaseModel):
|
|
476
463
|
id: Any
|
|
477
464
|
ref_id: str = Field(alias="refId")
|
|
@@ -715,23 +702,36 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
715
702
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
716
703
|
|
|
717
704
|
|
|
718
|
-
class
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
class TotalPriceFragment(BaseModel):
|
|
723
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
724
|
-
total: "TotalPriceFragmentTotal"
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
728
|
-
amount: float
|
|
729
|
-
currency: Currency
|
|
705
|
+
class CustomerResourceFragment(BaseModel):
|
|
706
|
+
resource_id: str = Field(alias="resourceId")
|
|
730
707
|
|
|
731
708
|
|
|
732
|
-
class
|
|
733
|
-
|
|
734
|
-
|
|
709
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
710
|
+
billing_id: str = Field(alias="billingId")
|
|
711
|
+
status: SubscriptionInvoiceStatus
|
|
712
|
+
created_at: Any = Field(alias="createdAt")
|
|
713
|
+
due_date: Optional[Any] = Field(alias="dueDate", default=None)
|
|
714
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
715
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
716
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
717
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
718
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
719
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
720
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
721
|
+
alias="billingReason", default=None
|
|
722
|
+
)
|
|
723
|
+
currency: Optional[str] = Field(default=None)
|
|
724
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
725
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
726
|
+
alias="subTotalExcludingTax", default=None
|
|
727
|
+
)
|
|
728
|
+
total: Optional[float] = Field(default=None)
|
|
729
|
+
total_excluding_tax: Optional[float] = Field(
|
|
730
|
+
alias="totalExcludingTax", default=None
|
|
731
|
+
)
|
|
732
|
+
tax: Optional[float] = Field(default=None)
|
|
733
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
734
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
735
735
|
|
|
736
736
|
|
|
737
737
|
class SubscriptionFragment(BaseModel):
|
|
@@ -1318,6 +1318,41 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1318
1318
|
pass
|
|
1319
1319
|
|
|
1320
1320
|
|
|
1321
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1322
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1323
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1324
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1325
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1326
|
+
default=None
|
|
1327
|
+
)
|
|
1328
|
+
credit_rate: Optional["CustomerPortalSubscriptionPriceFragmentCreditRate"] = Field(
|
|
1329
|
+
alias="creditRate", default=None
|
|
1330
|
+
)
|
|
1331
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1332
|
+
default=None
|
|
1333
|
+
)
|
|
1334
|
+
|
|
1335
|
+
|
|
1336
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1337
|
+
amount: float
|
|
1338
|
+
currency: Currency
|
|
1339
|
+
|
|
1340
|
+
|
|
1341
|
+
class CustomerPortalSubscriptionPriceFragmentCreditRate(BaseModel):
|
|
1342
|
+
amount: float
|
|
1343
|
+
custom_currency_id: Any = Field(alias="customCurrencyId")
|
|
1344
|
+
|
|
1345
|
+
|
|
1346
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1347
|
+
id: Any
|
|
1348
|
+
ref_id: str = Field(alias="refId")
|
|
1349
|
+
display_name: str = Field(alias="displayName")
|
|
1350
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1351
|
+
feature_units_plural: Optional[str] = Field(
|
|
1352
|
+
alias="featureUnitsPlural", default=None
|
|
1353
|
+
)
|
|
1354
|
+
|
|
1355
|
+
|
|
1321
1356
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1322
1357
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1323
1358
|
alias="subscriptionScheduleType"
|
|
@@ -1487,41 +1522,6 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1487
1522
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1488
1523
|
|
|
1489
1524
|
|
|
1490
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1491
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1492
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1493
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1494
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1495
|
-
default=None
|
|
1496
|
-
)
|
|
1497
|
-
credit_rate: Optional["CustomerPortalSubscriptionPriceFragmentCreditRate"] = Field(
|
|
1498
|
-
alias="creditRate", default=None
|
|
1499
|
-
)
|
|
1500
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1501
|
-
default=None
|
|
1502
|
-
)
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1506
|
-
amount: float
|
|
1507
|
-
currency: Currency
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
class CustomerPortalSubscriptionPriceFragmentCreditRate(BaseModel):
|
|
1511
|
-
amount: float
|
|
1512
|
-
custom_currency_id: Any = Field(alias="customCurrencyId")
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1516
|
-
id: Any
|
|
1517
|
-
ref_id: str = Field(alias="refId")
|
|
1518
|
-
display_name: str = Field(alias="displayName")
|
|
1519
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1520
|
-
feature_units_plural: Optional[str] = Field(
|
|
1521
|
-
alias="featureUnitsPlural", default=None
|
|
1522
|
-
)
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
1525
|
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1526
1526
|
addon_id: str = Field(alias="addonId")
|
|
1527
1527
|
description: Optional[str] = Field(default=None)
|
|
@@ -1870,41 +1870,6 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1870
1870
|
description: Optional[str] = Field(default=None)
|
|
1871
1871
|
|
|
1872
1872
|
|
|
1873
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1874
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1875
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1876
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1877
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1878
|
-
alias="resetPeriod", default=None
|
|
1879
|
-
)
|
|
1880
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1881
|
-
alias="hiddenFromWidgets", default=None
|
|
1882
|
-
)
|
|
1883
|
-
display_name_override: Optional[str] = Field(
|
|
1884
|
-
alias="displayNameOverride", default=None
|
|
1885
|
-
)
|
|
1886
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
1887
|
-
is_granted: bool = Field(alias="isGranted")
|
|
1888
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1889
|
-
default=None
|
|
1890
|
-
)
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1894
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1895
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1896
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1897
|
-
feature_units_plural: Optional[str] = Field(
|
|
1898
|
-
alias="featureUnitsPlural", default=None
|
|
1899
|
-
)
|
|
1900
|
-
display_name: str = Field(alias="displayName")
|
|
1901
|
-
description: Optional[str] = Field(default=None)
|
|
1902
|
-
ref_id: str = Field(alias="refId")
|
|
1903
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1904
|
-
alias="additionalMetaData", default=None
|
|
1905
|
-
)
|
|
1906
|
-
|
|
1907
|
-
|
|
1908
1873
|
class MockPaywallPriceFragment(BaseModel):
|
|
1909
1874
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1910
1875
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1947,6 +1912,41 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1947
1912
|
display_name: str = Field(alias="displayName")
|
|
1948
1913
|
|
|
1949
1914
|
|
|
1915
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1916
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1917
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1918
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1919
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1920
|
+
alias="resetPeriod", default=None
|
|
1921
|
+
)
|
|
1922
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1923
|
+
alias="hiddenFromWidgets", default=None
|
|
1924
|
+
)
|
|
1925
|
+
display_name_override: Optional[str] = Field(
|
|
1926
|
+
alias="displayNameOverride", default=None
|
|
1927
|
+
)
|
|
1928
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
1929
|
+
is_granted: bool = Field(alias="isGranted")
|
|
1930
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1931
|
+
default=None
|
|
1932
|
+
)
|
|
1933
|
+
|
|
1934
|
+
|
|
1935
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1936
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1937
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1938
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1939
|
+
feature_units_plural: Optional[str] = Field(
|
|
1940
|
+
alias="featureUnitsPlural", default=None
|
|
1941
|
+
)
|
|
1942
|
+
display_name: str = Field(alias="displayName")
|
|
1943
|
+
description: Optional[str] = Field(default=None)
|
|
1944
|
+
ref_id: str = Field(alias="refId")
|
|
1945
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1946
|
+
alias="additionalMetaData", default=None
|
|
1947
|
+
)
|
|
1948
|
+
|
|
1949
|
+
|
|
1950
1950
|
class MockPaywallAddonFragment(BaseModel):
|
|
1951
1951
|
ref_id: str = Field(alias="refId")
|
|
1952
1952
|
display_name: str = Field(alias="displayName")
|
|
@@ -2920,21 +2920,21 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2920
2920
|
|
|
2921
2921
|
|
|
2922
2922
|
AddonDependencyFragment.model_rebuild()
|
|
2923
|
-
PriceTierFragment.model_rebuild()
|
|
2924
|
-
OveragePriceFragment.model_rebuild()
|
|
2925
2923
|
PackageEntitlementFragment.model_rebuild()
|
|
2924
|
+
PriceTierFragment.model_rebuild()
|
|
2926
2925
|
PriceFragment.model_rebuild()
|
|
2926
|
+
OveragePriceFragment.model_rebuild()
|
|
2927
2927
|
AddonFragment.model_rebuild()
|
|
2928
|
-
CustomerResourceFragment.model_rebuild()
|
|
2929
|
-
SubscriptionInvoiceFragment.model_rebuild()
|
|
2930
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2931
2928
|
SlimCustomerFragment.model_rebuild()
|
|
2932
|
-
|
|
2929
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2930
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2931
|
+
TotalPriceFragment.model_rebuild()
|
|
2933
2932
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2933
|
+
ProductFragment.model_rebuild()
|
|
2934
2934
|
PlanFragment.model_rebuild()
|
|
2935
2935
|
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2936
|
-
|
|
2937
|
-
|
|
2936
|
+
CustomerResourceFragment.model_rebuild()
|
|
2937
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2938
2938
|
SubscriptionFragment.model_rebuild()
|
|
2939
2939
|
FeatureFragment.model_rebuild()
|
|
2940
2940
|
EntitlementFragment.model_rebuild()
|
|
@@ -2951,8 +2951,8 @@ CreditsBalanceSummaryFragment.model_rebuild()
|
|
|
2951
2951
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2952
2952
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2953
2953
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2954
|
-
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2955
2954
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2955
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2956
2956
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2957
2957
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2958
2958
|
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
@@ -2965,8 +2965,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
2965
2965
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
2966
2966
|
LayoutConfigurationFragment.model_rebuild()
|
|
2967
2967
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
2968
|
-
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2969
2968
|
MockPaywallPriceFragment.model_rebuild()
|
|
2969
|
+
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2970
2970
|
MockPaywallAddonFragment.model_rebuild()
|
|
2971
2971
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2972
2972
|
MockPaywallPlanFragment.model_rebuild()
|
|
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=4wSfEXeZZqMSjsCsSG8baVg3Si8sjzV3bp_unHWHBtQ,3800
|
|
|
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=IzB-7d_4SAEO3-OTzKPmS33rX-Wm3sbzWxRu8AYUMfc,106791
|
|
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
|
|
@@ -164,7 +164,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
|
|
|
164
164
|
stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
|
|
165
165
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
166
166
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
167
|
-
stigg_api_client_v2-3.
|
|
168
|
-
stigg_api_client_v2-3.
|
|
169
|
-
stigg_api_client_v2-3.
|
|
170
|
-
stigg_api_client_v2-3.
|
|
167
|
+
stigg_api_client_v2-3.54.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
168
|
+
stigg_api_client_v2-3.54.0.dist-info/METADATA,sha256=x320ms5qroCUBvJiXIiMrBW4igDZgsm9dhOYS6RCqzw,2257
|
|
169
|
+
stigg_api_client_v2-3.54.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
170
|
+
stigg_api_client_v2-3.54.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|