stigg-api-client-v2 3.61.2__py3-none-any.whl → 3.64.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/__init__.py +18 -0
- stigg/generated/async_client.py +135 -0
- stigg/generated/client.py +135 -0
- stigg/generated/fragments.py +321 -321
- stigg/generated/grant_promotional_entitlements_group.py +24 -0
- stigg/generated/input_types.py +1 -0
- stigg/generated/revoke_promotional_entitlements_group.py +24 -0
- stigg/generated/unlink_promotional_entitlements_group.py +24 -0
- {stigg_api_client_v2-3.61.2.dist-info → stigg_api_client_v2-3.64.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-3.61.2.dist-info → stigg_api_client_v2-3.64.0.dist-info}/RECORD +12 -9
- {stigg_api_client_v2-3.61.2.dist-info → stigg_api_client_v2-3.64.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-3.61.2.dist-info → stigg_api_client_v2-3.64.0.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -81,41 +81,29 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
81
81
|
currency: Currency
|
|
82
82
|
|
|
83
83
|
|
|
84
|
-
class
|
|
84
|
+
class OveragePriceFragment(BaseModel):
|
|
85
85
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
86
86
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
87
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
88
87
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
89
|
-
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
90
|
-
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
91
88
|
billing_country_code: Optional[str] = Field(
|
|
92
89
|
alias="billingCountryCode", default=None
|
|
93
90
|
)
|
|
94
|
-
price: Optional["
|
|
95
|
-
credit_rate: Optional["PriceFragmentCreditRate"] = Field(
|
|
96
|
-
alias="creditRate", default=None
|
|
97
|
-
)
|
|
91
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
98
92
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
99
|
-
tiers: Optional[List["
|
|
100
|
-
feature: Optional["
|
|
101
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
93
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
94
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
102
95
|
|
|
103
96
|
|
|
104
|
-
class
|
|
97
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
105
98
|
amount: float
|
|
106
99
|
currency: Currency
|
|
107
100
|
|
|
108
101
|
|
|
109
|
-
class
|
|
110
|
-
amount: float
|
|
111
|
-
custom_currency_id: Any = Field(alias="customCurrencyId")
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
class PriceFragmentTiers(PriceTierFragment):
|
|
102
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
115
103
|
pass
|
|
116
104
|
|
|
117
105
|
|
|
118
|
-
class
|
|
106
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
119
107
|
ref_id: str = Field(alias="refId")
|
|
120
108
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
121
109
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -160,29 +148,41 @@ class PackageEntitlementFragmentFeature(BaseModel):
|
|
|
160
148
|
)
|
|
161
149
|
|
|
162
150
|
|
|
163
|
-
class
|
|
151
|
+
class PriceFragment(BaseModel):
|
|
164
152
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
165
153
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
154
|
+
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
166
155
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
156
|
+
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
157
|
+
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
167
158
|
billing_country_code: Optional[str] = Field(
|
|
168
159
|
alias="billingCountryCode", default=None
|
|
169
160
|
)
|
|
170
|
-
price: Optional["
|
|
161
|
+
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
162
|
+
credit_rate: Optional["PriceFragmentCreditRate"] = Field(
|
|
163
|
+
alias="creditRate", default=None
|
|
164
|
+
)
|
|
171
165
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
172
|
-
tiers: Optional[List["
|
|
173
|
-
feature: Optional["
|
|
166
|
+
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
167
|
+
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
168
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
174
169
|
|
|
175
170
|
|
|
176
|
-
class
|
|
171
|
+
class PriceFragmentPrice(BaseModel):
|
|
177
172
|
amount: float
|
|
178
173
|
currency: Currency
|
|
179
174
|
|
|
180
175
|
|
|
181
|
-
class
|
|
176
|
+
class PriceFragmentCreditRate(BaseModel):
|
|
177
|
+
amount: float
|
|
178
|
+
custom_currency_id: Any = Field(alias="customCurrencyId")
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
class PriceFragmentTiers(PriceTierFragment):
|
|
182
182
|
pass
|
|
183
183
|
|
|
184
184
|
|
|
185
|
-
class
|
|
185
|
+
class PriceFragmentFeature(BaseModel):
|
|
186
186
|
ref_id: str = Field(alias="refId")
|
|
187
187
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
188
188
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -230,91 +230,126 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
230
230
|
pass
|
|
231
231
|
|
|
232
232
|
|
|
233
|
-
class
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
237
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
238
|
-
feature_units_plural: Optional[str] = Field(
|
|
239
|
-
alias="featureUnitsPlural", default=None
|
|
240
|
-
)
|
|
233
|
+
class ProductFragment(BaseModel):
|
|
234
|
+
ref_id: str = Field(alias="refId")
|
|
235
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
241
236
|
description: Optional[str] = Field(default=None)
|
|
242
|
-
|
|
237
|
+
additional_meta_data: Optional[Any] = Field(
|
|
238
|
+
alias="additionalMetaData", default=None
|
|
239
|
+
)
|
|
240
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
244
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
245
|
+
alias="downgradePlan", default=None
|
|
246
|
+
)
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
243
250
|
ref_id: str = Field(alias="refId")
|
|
244
|
-
|
|
245
|
-
|
|
251
|
+
display_name: str = Field(alias="displayName")
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
255
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
256
|
+
display_name: str = Field(alias="displayName")
|
|
257
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
258
|
+
default=None
|
|
246
259
|
)
|
|
260
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
247
261
|
|
|
248
262
|
|
|
249
|
-
class
|
|
250
|
-
|
|
251
|
-
round: UnitTransformationRound
|
|
263
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
264
|
+
pass
|
|
252
265
|
|
|
253
266
|
|
|
254
|
-
class
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
267
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
268
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
269
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
class PlanFragment(BaseModel):
|
|
273
|
+
id: Any
|
|
274
|
+
ref_id: str = Field(alias="refId")
|
|
275
|
+
display_name: str = Field(alias="displayName")
|
|
276
|
+
description: Optional[str] = Field(default=None)
|
|
277
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
278
|
+
version_number: int = Field(alias="versionNumber")
|
|
279
|
+
additional_meta_data: Optional[Any] = Field(
|
|
280
|
+
alias="additionalMetaData", default=None
|
|
259
281
|
)
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
263
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
264
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
265
|
-
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
266
|
-
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
267
|
-
requested_values: Optional[List[str]] = Field(alias="requestedValues", default=None)
|
|
268
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
269
|
-
entitlement_updated_at: Optional[Any] = Field(
|
|
270
|
-
alias="entitlementUpdatedAt", default=None
|
|
282
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
283
|
+
alias="hiddenFromWidgets", default=None
|
|
271
284
|
)
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
285
|
+
product: "PlanFragmentProduct"
|
|
286
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
287
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
288
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
289
|
+
alias="inheritedEntitlements", default=None
|
|
290
|
+
)
|
|
291
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
292
|
+
alias="compatibleAddons", default=None
|
|
293
|
+
)
|
|
294
|
+
compatible_package_groups: Optional[
|
|
295
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
296
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
297
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
298
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
299
|
+
alias="overagePrices", default=None
|
|
300
|
+
)
|
|
301
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
302
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
303
|
+
alias="defaultTrialConfig", default=None
|
|
279
304
|
)
|
|
280
|
-
reset_period_configuration: Optional[
|
|
281
|
-
Annotated[
|
|
282
|
-
Union[
|
|
283
|
-
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
284
|
-
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
285
|
-
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
286
|
-
],
|
|
287
|
-
Field(discriminator="typename__"),
|
|
288
|
-
]
|
|
289
|
-
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
290
|
-
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
291
305
|
|
|
292
306
|
|
|
293
|
-
class
|
|
294
|
-
|
|
295
|
-
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
296
|
-
alias="monthlyAccordingTo", default=None
|
|
297
|
-
)
|
|
307
|
+
class PlanFragmentProduct(ProductFragment):
|
|
308
|
+
pass
|
|
298
309
|
|
|
299
310
|
|
|
300
|
-
class
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
alias="weeklyAccordingTo", default=None
|
|
304
|
-
)
|
|
311
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
312
|
+
ref_id: str = Field(alias="refId")
|
|
313
|
+
display_name: str = Field(alias="displayName")
|
|
305
314
|
|
|
306
315
|
|
|
307
|
-
class
|
|
308
|
-
|
|
309
|
-
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
310
|
-
alias="yearlyAccordingTo", default=None
|
|
311
|
-
)
|
|
316
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
317
|
+
pass
|
|
312
318
|
|
|
313
319
|
|
|
314
|
-
class
|
|
320
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
321
|
+
pass
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
325
|
+
pass
|
|
326
|
+
|
|
327
|
+
|
|
328
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
315
329
|
pass
|
|
316
330
|
|
|
317
331
|
|
|
332
|
+
class PlanFragmentPrices(PriceFragment):
|
|
333
|
+
pass
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
337
|
+
pass
|
|
338
|
+
|
|
339
|
+
|
|
340
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
341
|
+
duration: float
|
|
342
|
+
units: TrialPeriodUnits
|
|
343
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
344
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
345
|
+
alias="trialEndBehavior", default=None
|
|
346
|
+
)
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
350
|
+
limit: float
|
|
351
|
+
|
|
352
|
+
|
|
318
353
|
class SubscriptionFutureUpdateData(BaseModel):
|
|
319
354
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
320
355
|
alias="subscriptionScheduleType"
|
|
@@ -469,21 +504,12 @@ class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(Bas
|
|
|
469
504
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
470
505
|
|
|
471
506
|
|
|
472
|
-
class
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
ref_id: str = Field(alias="refId")
|
|
479
|
-
customer_id: str = Field(alias="customerId")
|
|
480
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
481
|
-
additional_meta_data: Optional[Any] = Field(
|
|
482
|
-
alias="additionalMetaData", default=None
|
|
483
|
-
)
|
|
484
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
485
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
486
|
-
)
|
|
507
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
508
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
509
|
+
|
|
510
|
+
|
|
511
|
+
class CustomerResourceFragment(BaseModel):
|
|
512
|
+
resource_id: str = Field(alias="resourceId")
|
|
487
513
|
|
|
488
514
|
|
|
489
515
|
class SubscriptionInvoiceFragment(BaseModel):
|
|
@@ -514,149 +540,23 @@ class SubscriptionInvoiceFragment(BaseModel):
|
|
|
514
540
|
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
515
541
|
|
|
516
542
|
|
|
517
|
-
class
|
|
518
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
class TotalPriceFragment(BaseModel):
|
|
522
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
523
|
-
total: "TotalPriceFragmentTotal"
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
527
|
-
amount: float
|
|
528
|
-
currency: Currency
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
532
|
-
amount: float
|
|
533
|
-
currency: Currency
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
537
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
538
|
-
display_name: str = Field(alias="displayName")
|
|
539
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
540
|
-
default=None
|
|
541
|
-
)
|
|
542
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
546
|
-
pass
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
550
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
551
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
class ProductFragment(BaseModel):
|
|
555
|
-
ref_id: str = Field(alias="refId")
|
|
556
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
557
|
-
description: Optional[str] = Field(default=None)
|
|
558
|
-
additional_meta_data: Optional[Any] = Field(
|
|
559
|
-
alias="additionalMetaData", default=None
|
|
560
|
-
)
|
|
561
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
565
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
566
|
-
alias="downgradePlan", default=None
|
|
567
|
-
)
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
571
|
-
ref_id: str = Field(alias="refId")
|
|
572
|
-
display_name: str = Field(alias="displayName")
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
class PlanFragment(BaseModel):
|
|
543
|
+
class SlimCustomerFragment(BaseModel):
|
|
576
544
|
id: Any
|
|
545
|
+
name: Optional[str] = Field(default=None)
|
|
546
|
+
email: Optional[str] = Field(default=None)
|
|
547
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
548
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
577
549
|
ref_id: str = Field(alias="refId")
|
|
578
|
-
|
|
579
|
-
description: Optional[str] = Field(default=None)
|
|
550
|
+
customer_id: str = Field(alias="customerId")
|
|
580
551
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
581
|
-
version_number: int = Field(alias="versionNumber")
|
|
582
552
|
additional_meta_data: Optional[Any] = Field(
|
|
583
553
|
alias="additionalMetaData", default=None
|
|
584
554
|
)
|
|
585
|
-
|
|
586
|
-
alias="
|
|
587
|
-
)
|
|
588
|
-
product: "PlanFragmentProduct"
|
|
589
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
590
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
591
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
592
|
-
alias="inheritedEntitlements", default=None
|
|
593
|
-
)
|
|
594
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
595
|
-
alias="compatibleAddons", default=None
|
|
596
|
-
)
|
|
597
|
-
compatible_package_groups: Optional[
|
|
598
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
599
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
600
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
601
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
602
|
-
alias="overagePrices", default=None
|
|
603
|
-
)
|
|
604
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
605
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
606
|
-
alias="defaultTrialConfig", default=None
|
|
607
|
-
)
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
class PlanFragmentProduct(ProductFragment):
|
|
611
|
-
pass
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
615
|
-
ref_id: str = Field(alias="refId")
|
|
616
|
-
display_name: str = Field(alias="displayName")
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
620
|
-
pass
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
624
|
-
pass
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
628
|
-
pass
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
632
|
-
pass
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
class PlanFragmentPrices(PriceFragment):
|
|
636
|
-
pass
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
640
|
-
pass
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
644
|
-
duration: float
|
|
645
|
-
units: TrialPeriodUnits
|
|
646
|
-
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
647
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
648
|
-
alias="trialEndBehavior", default=None
|
|
555
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
556
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
649
557
|
)
|
|
650
558
|
|
|
651
559
|
|
|
652
|
-
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
653
|
-
limit: float
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
class CustomerResourceFragment(BaseModel):
|
|
657
|
-
resource_id: str = Field(alias="resourceId")
|
|
658
|
-
|
|
659
|
-
|
|
660
560
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
661
561
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
662
562
|
alias="subscriptionScheduleType"
|
|
@@ -819,6 +719,21 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
819
719
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
820
720
|
|
|
821
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
|
|
730
|
+
|
|
731
|
+
|
|
732
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
733
|
+
amount: float
|
|
734
|
+
currency: Currency
|
|
735
|
+
|
|
736
|
+
|
|
822
737
|
class SubscriptionFragment(BaseModel):
|
|
823
738
|
id: Any
|
|
824
739
|
subscription_id: str = Field(alias="subscriptionId")
|
|
@@ -928,6 +843,91 @@ class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragm
|
|
|
928
843
|
pass
|
|
929
844
|
|
|
930
845
|
|
|
846
|
+
class FeatureFragment(BaseModel):
|
|
847
|
+
typename__: str = Field(alias="__typename")
|
|
848
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
849
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
850
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
851
|
+
feature_units_plural: Optional[str] = Field(
|
|
852
|
+
alias="featureUnitsPlural", default=None
|
|
853
|
+
)
|
|
854
|
+
description: Optional[str] = Field(default=None)
|
|
855
|
+
display_name: str = Field(alias="displayName")
|
|
856
|
+
ref_id: str = Field(alias="refId")
|
|
857
|
+
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
858
|
+
alias="unitTransformation", default=None
|
|
859
|
+
)
|
|
860
|
+
|
|
861
|
+
|
|
862
|
+
class FeatureFragmentUnitTransformation(BaseModel):
|
|
863
|
+
divide: float
|
|
864
|
+
round: UnitTransformationRound
|
|
865
|
+
|
|
866
|
+
|
|
867
|
+
class EntitlementFragment(BaseModel):
|
|
868
|
+
typename__: str = Field(alias="__typename")
|
|
869
|
+
is_granted: bool = Field(alias="isGranted")
|
|
870
|
+
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
871
|
+
alias="accessDeniedReason", default=None
|
|
872
|
+
)
|
|
873
|
+
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
874
|
+
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
875
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
876
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
877
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
878
|
+
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
879
|
+
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
880
|
+
requested_values: Optional[List[str]] = Field(alias="requestedValues", default=None)
|
|
881
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
882
|
+
entitlement_updated_at: Optional[Any] = Field(
|
|
883
|
+
alias="entitlementUpdatedAt", default=None
|
|
884
|
+
)
|
|
885
|
+
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
886
|
+
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
887
|
+
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
888
|
+
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
889
|
+
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
890
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
891
|
+
alias="resetPeriod", default=None
|
|
892
|
+
)
|
|
893
|
+
reset_period_configuration: Optional[
|
|
894
|
+
Annotated[
|
|
895
|
+
Union[
|
|
896
|
+
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
897
|
+
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
898
|
+
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
899
|
+
],
|
|
900
|
+
Field(discriminator="typename__"),
|
|
901
|
+
]
|
|
902
|
+
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
903
|
+
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
904
|
+
|
|
905
|
+
|
|
906
|
+
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
907
|
+
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
908
|
+
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
909
|
+
alias="monthlyAccordingTo", default=None
|
|
910
|
+
)
|
|
911
|
+
|
|
912
|
+
|
|
913
|
+
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
914
|
+
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
915
|
+
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
916
|
+
alias="weeklyAccordingTo", default=None
|
|
917
|
+
)
|
|
918
|
+
|
|
919
|
+
|
|
920
|
+
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
921
|
+
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
922
|
+
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
923
|
+
alias="yearlyAccordingTo", default=None
|
|
924
|
+
)
|
|
925
|
+
|
|
926
|
+
|
|
927
|
+
class EntitlementFragmentFeature(FeatureFragment):
|
|
928
|
+
pass
|
|
929
|
+
|
|
930
|
+
|
|
931
931
|
class ApplySubscriptionFragment(BaseModel):
|
|
932
932
|
subscription: Optional["ApplySubscriptionFragmentSubscription"] = Field(
|
|
933
933
|
default=None
|
|
@@ -1326,41 +1326,6 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1326
1326
|
pass
|
|
1327
1327
|
|
|
1328
1328
|
|
|
1329
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1330
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1331
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1332
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1333
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1334
|
-
default=None
|
|
1335
|
-
)
|
|
1336
|
-
credit_rate: Optional["CustomerPortalSubscriptionPriceFragmentCreditRate"] = Field(
|
|
1337
|
-
alias="creditRate", default=None
|
|
1338
|
-
)
|
|
1339
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1340
|
-
default=None
|
|
1341
|
-
)
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1345
|
-
amount: float
|
|
1346
|
-
currency: Currency
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
class CustomerPortalSubscriptionPriceFragmentCreditRate(BaseModel):
|
|
1350
|
-
amount: float
|
|
1351
|
-
custom_currency_id: Any = Field(alias="customCurrencyId")
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1355
|
-
id: Any
|
|
1356
|
-
ref_id: str = Field(alias="refId")
|
|
1357
|
-
display_name: str = Field(alias="displayName")
|
|
1358
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1359
|
-
feature_units_plural: Optional[str] = Field(
|
|
1360
|
-
alias="featureUnitsPlural", default=None
|
|
1361
|
-
)
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
1329
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1365
1330
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1366
1331
|
alias="subscriptionScheduleType"
|
|
@@ -1537,6 +1502,41 @@ class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
|
1537
1502
|
quantity: int
|
|
1538
1503
|
|
|
1539
1504
|
|
|
1505
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1506
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1507
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1508
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1509
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1510
|
+
default=None
|
|
1511
|
+
)
|
|
1512
|
+
credit_rate: Optional["CustomerPortalSubscriptionPriceFragmentCreditRate"] = Field(
|
|
1513
|
+
alias="creditRate", default=None
|
|
1514
|
+
)
|
|
1515
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1516
|
+
default=None
|
|
1517
|
+
)
|
|
1518
|
+
|
|
1519
|
+
|
|
1520
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1521
|
+
amount: float
|
|
1522
|
+
currency: Currency
|
|
1523
|
+
|
|
1524
|
+
|
|
1525
|
+
class CustomerPortalSubscriptionPriceFragmentCreditRate(BaseModel):
|
|
1526
|
+
amount: float
|
|
1527
|
+
custom_currency_id: Any = Field(alias="customCurrencyId")
|
|
1528
|
+
|
|
1529
|
+
|
|
1530
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1531
|
+
id: Any
|
|
1532
|
+
ref_id: str = Field(alias="refId")
|
|
1533
|
+
display_name: str = Field(alias="displayName")
|
|
1534
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1535
|
+
feature_units_plural: Optional[str] = Field(
|
|
1536
|
+
alias="featureUnitsPlural", default=None
|
|
1537
|
+
)
|
|
1538
|
+
|
|
1539
|
+
|
|
1540
1540
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1541
1541
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1542
1542
|
plan_id: str = Field(alias="planId")
|
|
@@ -1878,6 +1878,41 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1878
1878
|
description: Optional[str] = Field(default=None)
|
|
1879
1879
|
|
|
1880
1880
|
|
|
1881
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1882
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1883
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1884
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1885
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1886
|
+
alias="resetPeriod", default=None
|
|
1887
|
+
)
|
|
1888
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1889
|
+
alias="hiddenFromWidgets", default=None
|
|
1890
|
+
)
|
|
1891
|
+
display_name_override: Optional[str] = Field(
|
|
1892
|
+
alias="displayNameOverride", default=None
|
|
1893
|
+
)
|
|
1894
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
1895
|
+
is_granted: bool = Field(alias="isGranted")
|
|
1896
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1897
|
+
default=None
|
|
1898
|
+
)
|
|
1899
|
+
|
|
1900
|
+
|
|
1901
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1902
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1903
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1904
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1905
|
+
feature_units_plural: Optional[str] = Field(
|
|
1906
|
+
alias="featureUnitsPlural", default=None
|
|
1907
|
+
)
|
|
1908
|
+
display_name: str = Field(alias="displayName")
|
|
1909
|
+
description: Optional[str] = Field(default=None)
|
|
1910
|
+
ref_id: str = Field(alias="refId")
|
|
1911
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1912
|
+
alias="additionalMetaData", default=None
|
|
1913
|
+
)
|
|
1914
|
+
|
|
1915
|
+
|
|
1881
1916
|
class MockPaywallPriceFragment(BaseModel):
|
|
1882
1917
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1883
1918
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1920,41 +1955,6 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1920
1955
|
display_name: str = Field(alias="displayName")
|
|
1921
1956
|
|
|
1922
1957
|
|
|
1923
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1924
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1925
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1926
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1927
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1928
|
-
alias="resetPeriod", default=None
|
|
1929
|
-
)
|
|
1930
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1931
|
-
alias="hiddenFromWidgets", default=None
|
|
1932
|
-
)
|
|
1933
|
-
display_name_override: Optional[str] = Field(
|
|
1934
|
-
alias="displayNameOverride", default=None
|
|
1935
|
-
)
|
|
1936
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
1937
|
-
is_granted: bool = Field(alias="isGranted")
|
|
1938
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1939
|
-
default=None
|
|
1940
|
-
)
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1944
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1945
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1946
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1947
|
-
feature_units_plural: Optional[str] = Field(
|
|
1948
|
-
alias="featureUnitsPlural", default=None
|
|
1949
|
-
)
|
|
1950
|
-
display_name: str = Field(alias="displayName")
|
|
1951
|
-
description: Optional[str] = Field(default=None)
|
|
1952
|
-
ref_id: str = Field(alias="refId")
|
|
1953
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1954
|
-
alias="additionalMetaData", default=None
|
|
1955
|
-
)
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
1958
|
class MockPaywallAddonFragment(BaseModel):
|
|
1959
1959
|
ref_id: str = Field(alias="refId")
|
|
1960
1960
|
display_name: str = Field(alias="displayName")
|
|
@@ -2929,23 +2929,23 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2929
2929
|
|
|
2930
2930
|
AddonDependencyFragment.model_rebuild()
|
|
2931
2931
|
PriceTierFragment.model_rebuild()
|
|
2932
|
-
PriceFragment.model_rebuild()
|
|
2933
|
-
PackageEntitlementFragment.model_rebuild()
|
|
2934
2932
|
OveragePriceFragment.model_rebuild()
|
|
2933
|
+
PackageEntitlementFragment.model_rebuild()
|
|
2934
|
+
PriceFragment.model_rebuild()
|
|
2935
2935
|
AddonFragment.model_rebuild()
|
|
2936
|
-
FeatureFragment.model_rebuild()
|
|
2937
|
-
EntitlementFragment.model_rebuild()
|
|
2938
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2939
|
-
SlimCustomerFragment.model_rebuild()
|
|
2940
|
-
SubscriptionInvoiceFragment.model_rebuild()
|
|
2941
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2942
|
-
TotalPriceFragment.model_rebuild()
|
|
2943
|
-
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2944
2936
|
ProductFragment.model_rebuild()
|
|
2937
|
+
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2945
2938
|
PlanFragment.model_rebuild()
|
|
2939
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2940
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2946
2941
|
CustomerResourceFragment.model_rebuild()
|
|
2942
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2943
|
+
SlimCustomerFragment.model_rebuild()
|
|
2947
2944
|
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2945
|
+
TotalPriceFragment.model_rebuild()
|
|
2948
2946
|
SubscriptionFragment.model_rebuild()
|
|
2947
|
+
FeatureFragment.model_rebuild()
|
|
2948
|
+
EntitlementFragment.model_rebuild()
|
|
2949
2949
|
ApplySubscriptionFragment.model_rebuild()
|
|
2950
2950
|
FontVariantFragment.model_rebuild()
|
|
2951
2951
|
TypographyConfigurationFragment.model_rebuild()
|
|
@@ -2959,9 +2959,9 @@ CreditsBalanceSummaryFragment.model_rebuild()
|
|
|
2959
2959
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2960
2960
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2961
2961
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2962
|
-
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2963
2962
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2964
2963
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2964
|
+
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2965
2965
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2966
2966
|
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2967
2967
|
CustomerPortalFragment.model_rebuild()
|
|
@@ -2973,8 +2973,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
2973
2973
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
2974
2974
|
LayoutConfigurationFragment.model_rebuild()
|
|
2975
2975
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
2976
|
-
MockPaywallPriceFragment.model_rebuild()
|
|
2977
2976
|
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2977
|
+
MockPaywallPriceFragment.model_rebuild()
|
|
2978
2978
|
MockPaywallAddonFragment.model_rebuild()
|
|
2979
2979
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2980
2980
|
MockPaywallPlanFragment.model_rebuild()
|