stigg-api-client-v2 2.283.0__py3-none-any.whl → 2.284.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/enums.py +1 -0
- stigg/generated/fragments.py +325 -325
- {stigg_api_client_v2-2.283.0.dist-info → stigg_api_client_v2-2.284.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.283.0.dist-info → stigg_api_client_v2-2.284.0.dist-info}/RECORD +6 -6
- {stigg_api_client_v2-2.283.0.dist-info → stigg_api_client_v2-2.284.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.283.0.dist-info → stigg_api_client_v2-2.284.0.dist-info}/WHEEL +0 -0
stigg/generated/enums.py
CHANGED
stigg/generated/fragments.py
CHANGED
|
@@ -112,33 +112,29 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
112
112
|
currency: Currency
|
|
113
113
|
|
|
114
114
|
|
|
115
|
-
class
|
|
115
|
+
class OveragePriceFragment(BaseModel):
|
|
116
116
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
117
117
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
118
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
119
118
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
120
|
-
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
121
|
-
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
122
119
|
billing_country_code: Optional[str] = Field(
|
|
123
120
|
alias="billingCountryCode", default=None
|
|
124
121
|
)
|
|
125
|
-
price: Optional["
|
|
122
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
126
123
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
127
|
-
tiers: Optional[List["
|
|
128
|
-
feature: Optional["
|
|
129
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
124
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
125
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
130
126
|
|
|
131
127
|
|
|
132
|
-
class
|
|
128
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
133
129
|
amount: float
|
|
134
130
|
currency: Currency
|
|
135
131
|
|
|
136
132
|
|
|
137
|
-
class
|
|
133
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
138
134
|
pass
|
|
139
135
|
|
|
140
136
|
|
|
141
|
-
class
|
|
137
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
142
138
|
ref_id: str = Field(alias="refId")
|
|
143
139
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
144
140
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -148,29 +144,33 @@ class PriceFragmentFeature(BaseModel):
|
|
|
148
144
|
description: Optional[str] = Field(default=None)
|
|
149
145
|
|
|
150
146
|
|
|
151
|
-
class
|
|
147
|
+
class PriceFragment(BaseModel):
|
|
152
148
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
153
149
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
150
|
+
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
154
151
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
152
|
+
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
153
|
+
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
155
154
|
billing_country_code: Optional[str] = Field(
|
|
156
155
|
alias="billingCountryCode", default=None
|
|
157
156
|
)
|
|
158
|
-
price: Optional["
|
|
157
|
+
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
159
158
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
160
|
-
tiers: Optional[List["
|
|
161
|
-
feature: Optional["
|
|
159
|
+
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
160
|
+
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
161
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
162
162
|
|
|
163
163
|
|
|
164
|
-
class
|
|
164
|
+
class PriceFragmentPrice(BaseModel):
|
|
165
165
|
amount: float
|
|
166
166
|
currency: Currency
|
|
167
167
|
|
|
168
168
|
|
|
169
|
-
class
|
|
169
|
+
class PriceFragmentTiers(PriceTierFragment):
|
|
170
170
|
pass
|
|
171
171
|
|
|
172
172
|
|
|
173
|
-
class
|
|
173
|
+
class PriceFragmentFeature(BaseModel):
|
|
174
174
|
ref_id: str = Field(alias="refId")
|
|
175
175
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
176
176
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -215,87 +215,30 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
215
215
|
pass
|
|
216
216
|
|
|
217
217
|
|
|
218
|
-
class
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
)
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
alias="unitTransformation", default=None
|
|
231
|
-
)
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
class FeatureFragmentUnitTransformation(BaseModel):
|
|
235
|
-
divide: float
|
|
236
|
-
round: UnitTransformationRound
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
class EntitlementFragment(BaseModel):
|
|
240
|
-
typename__: str = Field(alias="__typename")
|
|
241
|
-
is_granted: bool = Field(alias="isGranted")
|
|
242
|
-
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
243
|
-
alias="accessDeniedReason", default=None
|
|
244
|
-
)
|
|
245
|
-
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
246
|
-
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
247
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
248
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
249
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
250
|
-
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
251
|
-
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
252
|
-
entitlement_updated_at: Optional[Any] = Field(
|
|
253
|
-
alias="entitlementUpdatedAt", default=None
|
|
254
|
-
)
|
|
255
|
-
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
256
|
-
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
257
|
-
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
258
|
-
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
259
|
-
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
260
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
261
|
-
alias="resetPeriod", default=None
|
|
262
|
-
)
|
|
263
|
-
reset_period_configuration: Optional[
|
|
264
|
-
Annotated[
|
|
265
|
-
Union[
|
|
266
|
-
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
267
|
-
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
268
|
-
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
269
|
-
],
|
|
270
|
-
Field(discriminator="typename__"),
|
|
271
|
-
]
|
|
272
|
-
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
273
|
-
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
277
|
-
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
278
|
-
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
279
|
-
alias="monthlyAccordingTo", default=None
|
|
218
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
219
|
+
billing_id: str = Field(alias="billingId")
|
|
220
|
+
status: SubscriptionInvoiceStatus
|
|
221
|
+
created_at: Any = Field(alias="createdAt")
|
|
222
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
223
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
224
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
225
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
226
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
227
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
228
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
229
|
+
alias="billingReason", default=None
|
|
280
230
|
)
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
286
|
-
alias="weeklyAccordingTo", default=None
|
|
231
|
+
currency: Optional[str] = Field(default=None)
|
|
232
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
233
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
234
|
+
alias="subTotalExcludingTax", default=None
|
|
287
235
|
)
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
292
|
-
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
293
|
-
alias="yearlyAccordingTo", default=None
|
|
236
|
+
total: Optional[float] = Field(default=None)
|
|
237
|
+
total_excluding_tax: Optional[float] = Field(
|
|
238
|
+
alias="totalExcludingTax", default=None
|
|
294
239
|
)
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
class EntitlementFragmentFeature(FeatureFragment):
|
|
298
|
-
pass
|
|
240
|
+
tax: Optional[float] = Field(default=None)
|
|
241
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
299
242
|
|
|
300
243
|
|
|
301
244
|
class SubscriptionFutureUpdateData(BaseModel):
|
|
@@ -452,152 +395,6 @@ class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(Bas
|
|
|
452
395
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
453
396
|
|
|
454
397
|
|
|
455
|
-
class SubscriptionInvoiceFragment(BaseModel):
|
|
456
|
-
billing_id: str = Field(alias="billingId")
|
|
457
|
-
status: SubscriptionInvoiceStatus
|
|
458
|
-
created_at: Any = Field(alias="createdAt")
|
|
459
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
460
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
461
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
462
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
463
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
464
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
465
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
466
|
-
alias="billingReason", default=None
|
|
467
|
-
)
|
|
468
|
-
currency: Optional[str] = Field(default=None)
|
|
469
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
470
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
471
|
-
alias="subTotalExcludingTax", default=None
|
|
472
|
-
)
|
|
473
|
-
total: Optional[float] = Field(default=None)
|
|
474
|
-
total_excluding_tax: Optional[float] = Field(
|
|
475
|
-
alias="totalExcludingTax", default=None
|
|
476
|
-
)
|
|
477
|
-
tax: Optional[float] = Field(default=None)
|
|
478
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
482
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
483
|
-
display_name: str = Field(alias="displayName")
|
|
484
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
485
|
-
default=None
|
|
486
|
-
)
|
|
487
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
491
|
-
pass
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
495
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
496
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
class ProductFragment(BaseModel):
|
|
500
|
-
ref_id: str = Field(alias="refId")
|
|
501
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
502
|
-
description: Optional[str] = Field(default=None)
|
|
503
|
-
additional_meta_data: Optional[Any] = Field(
|
|
504
|
-
alias="additionalMetaData", default=None
|
|
505
|
-
)
|
|
506
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
510
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
511
|
-
alias="downgradePlan", default=None
|
|
512
|
-
)
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
516
|
-
ref_id: str = Field(alias="refId")
|
|
517
|
-
display_name: str = Field(alias="displayName")
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
class PlanFragment(BaseModel):
|
|
521
|
-
id: str
|
|
522
|
-
ref_id: str = Field(alias="refId")
|
|
523
|
-
display_name: str = Field(alias="displayName")
|
|
524
|
-
description: Optional[str] = Field(default=None)
|
|
525
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
526
|
-
version_number: int = Field(alias="versionNumber")
|
|
527
|
-
additional_meta_data: Optional[Any] = Field(
|
|
528
|
-
alias="additionalMetaData", default=None
|
|
529
|
-
)
|
|
530
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
531
|
-
alias="hiddenFromWidgets", default=None
|
|
532
|
-
)
|
|
533
|
-
product: "PlanFragmentProduct"
|
|
534
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
535
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
536
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
537
|
-
alias="inheritedEntitlements", default=None
|
|
538
|
-
)
|
|
539
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
540
|
-
alias="compatibleAddons", default=None
|
|
541
|
-
)
|
|
542
|
-
compatible_package_groups: Optional[
|
|
543
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
544
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
545
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
546
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
547
|
-
alias="overagePrices", default=None
|
|
548
|
-
)
|
|
549
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
550
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
551
|
-
alias="defaultTrialConfig", default=None
|
|
552
|
-
)
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
class PlanFragmentProduct(ProductFragment):
|
|
556
|
-
pass
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
560
|
-
ref_id: str = Field(alias="refId")
|
|
561
|
-
display_name: str = Field(alias="displayName")
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
565
|
-
pass
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
569
|
-
pass
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
573
|
-
pass
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
577
|
-
pass
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
class PlanFragmentPrices(PriceFragment):
|
|
581
|
-
pass
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
585
|
-
pass
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
589
|
-
duration: float
|
|
590
|
-
units: TrialPeriodUnits
|
|
591
|
-
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
592
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
593
|
-
alias="trialEndBehavior", default=None
|
|
594
|
-
)
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
598
|
-
limit: float
|
|
599
|
-
|
|
600
|
-
|
|
601
398
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
602
399
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
603
400
|
alias="subscriptionScheduleType"
|
|
@@ -760,27 +557,143 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
760
557
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
761
558
|
|
|
762
559
|
|
|
763
|
-
class
|
|
764
|
-
|
|
560
|
+
class TotalPriceFragment(BaseModel):
|
|
561
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
562
|
+
total: "TotalPriceFragmentTotal"
|
|
563
|
+
|
|
564
|
+
|
|
565
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
566
|
+
amount: float
|
|
567
|
+
currency: Currency
|
|
568
|
+
|
|
569
|
+
|
|
570
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
571
|
+
amount: float
|
|
572
|
+
currency: Currency
|
|
573
|
+
|
|
574
|
+
|
|
575
|
+
class CustomerResourceFragment(BaseModel):
|
|
576
|
+
resource_id: str = Field(alias="resourceId")
|
|
577
|
+
|
|
578
|
+
|
|
579
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
580
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
581
|
+
display_name: str = Field(alias="displayName")
|
|
582
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
583
|
+
default=None
|
|
584
|
+
)
|
|
585
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
586
|
+
|
|
587
|
+
|
|
588
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
589
|
+
pass
|
|
590
|
+
|
|
591
|
+
|
|
592
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
593
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
594
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
595
|
+
|
|
596
|
+
|
|
597
|
+
class ProductFragment(BaseModel):
|
|
598
|
+
ref_id: str = Field(alias="refId")
|
|
599
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
600
|
+
description: Optional[str] = Field(default=None)
|
|
601
|
+
additional_meta_data: Optional[Any] = Field(
|
|
602
|
+
alias="additionalMetaData", default=None
|
|
603
|
+
)
|
|
604
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
605
|
+
|
|
606
|
+
|
|
607
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
608
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
609
|
+
alias="downgradePlan", default=None
|
|
610
|
+
)
|
|
611
|
+
|
|
612
|
+
|
|
613
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
614
|
+
ref_id: str = Field(alias="refId")
|
|
615
|
+
display_name: str = Field(alias="displayName")
|
|
616
|
+
|
|
617
|
+
|
|
618
|
+
class PlanFragment(BaseModel):
|
|
619
|
+
id: str
|
|
620
|
+
ref_id: str = Field(alias="refId")
|
|
621
|
+
display_name: str = Field(alias="displayName")
|
|
622
|
+
description: Optional[str] = Field(default=None)
|
|
623
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
624
|
+
version_number: int = Field(alias="versionNumber")
|
|
625
|
+
additional_meta_data: Optional[Any] = Field(
|
|
626
|
+
alias="additionalMetaData", default=None
|
|
627
|
+
)
|
|
628
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
629
|
+
alias="hiddenFromWidgets", default=None
|
|
630
|
+
)
|
|
631
|
+
product: "PlanFragmentProduct"
|
|
632
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
633
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
634
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
635
|
+
alias="inheritedEntitlements", default=None
|
|
636
|
+
)
|
|
637
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
638
|
+
alias="compatibleAddons", default=None
|
|
639
|
+
)
|
|
640
|
+
compatible_package_groups: Optional[
|
|
641
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
642
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
643
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
644
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
645
|
+
alias="overagePrices", default=None
|
|
646
|
+
)
|
|
647
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
648
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
649
|
+
alias="defaultTrialConfig", default=None
|
|
650
|
+
)
|
|
651
|
+
|
|
652
|
+
|
|
653
|
+
class PlanFragmentProduct(ProductFragment):
|
|
654
|
+
pass
|
|
655
|
+
|
|
656
|
+
|
|
657
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
658
|
+
ref_id: str = Field(alias="refId")
|
|
659
|
+
display_name: str = Field(alias="displayName")
|
|
660
|
+
|
|
661
|
+
|
|
662
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
663
|
+
pass
|
|
664
|
+
|
|
665
|
+
|
|
666
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
667
|
+
pass
|
|
668
|
+
|
|
669
|
+
|
|
670
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
671
|
+
pass
|
|
672
|
+
|
|
673
|
+
|
|
674
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
675
|
+
pass
|
|
765
676
|
|
|
766
677
|
|
|
767
|
-
class
|
|
768
|
-
|
|
678
|
+
class PlanFragmentPrices(PriceFragment):
|
|
679
|
+
pass
|
|
769
680
|
|
|
770
681
|
|
|
771
|
-
class
|
|
772
|
-
|
|
773
|
-
total: "TotalPriceFragmentTotal"
|
|
682
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
683
|
+
pass
|
|
774
684
|
|
|
775
685
|
|
|
776
|
-
class
|
|
777
|
-
|
|
778
|
-
|
|
686
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
687
|
+
duration: float
|
|
688
|
+
units: TrialPeriodUnits
|
|
689
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
690
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
691
|
+
alias="trialEndBehavior", default=None
|
|
692
|
+
)
|
|
779
693
|
|
|
780
694
|
|
|
781
|
-
class
|
|
782
|
-
|
|
783
|
-
currency: Currency
|
|
695
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
696
|
+
limit: float
|
|
784
697
|
|
|
785
698
|
|
|
786
699
|
class SlimCustomerFragment(BaseModel):
|
|
@@ -800,6 +713,10 @@ class SlimCustomerFragment(BaseModel):
|
|
|
800
713
|
)
|
|
801
714
|
|
|
802
715
|
|
|
716
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
717
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
718
|
+
|
|
719
|
+
|
|
803
720
|
class SubscriptionFragment(BaseModel):
|
|
804
721
|
id: str
|
|
805
722
|
subscription_id: str = Field(alias="subscriptionId")
|
|
@@ -909,6 +826,89 @@ class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragm
|
|
|
909
826
|
pass
|
|
910
827
|
|
|
911
828
|
|
|
829
|
+
class FeatureFragment(BaseModel):
|
|
830
|
+
typename__: str = Field(alias="__typename")
|
|
831
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
832
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
833
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
834
|
+
feature_units_plural: Optional[str] = Field(
|
|
835
|
+
alias="featureUnitsPlural", default=None
|
|
836
|
+
)
|
|
837
|
+
description: Optional[str] = Field(default=None)
|
|
838
|
+
display_name: str = Field(alias="displayName")
|
|
839
|
+
ref_id: str = Field(alias="refId")
|
|
840
|
+
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
841
|
+
alias="unitTransformation", default=None
|
|
842
|
+
)
|
|
843
|
+
|
|
844
|
+
|
|
845
|
+
class FeatureFragmentUnitTransformation(BaseModel):
|
|
846
|
+
divide: float
|
|
847
|
+
round: UnitTransformationRound
|
|
848
|
+
|
|
849
|
+
|
|
850
|
+
class EntitlementFragment(BaseModel):
|
|
851
|
+
typename__: str = Field(alias="__typename")
|
|
852
|
+
is_granted: bool = Field(alias="isGranted")
|
|
853
|
+
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
854
|
+
alias="accessDeniedReason", default=None
|
|
855
|
+
)
|
|
856
|
+
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
857
|
+
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
858
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
859
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
860
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
861
|
+
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
862
|
+
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
863
|
+
entitlement_updated_at: Optional[Any] = Field(
|
|
864
|
+
alias="entitlementUpdatedAt", default=None
|
|
865
|
+
)
|
|
866
|
+
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
867
|
+
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
868
|
+
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
869
|
+
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
870
|
+
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
871
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
872
|
+
alias="resetPeriod", default=None
|
|
873
|
+
)
|
|
874
|
+
reset_period_configuration: Optional[
|
|
875
|
+
Annotated[
|
|
876
|
+
Union[
|
|
877
|
+
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
878
|
+
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
879
|
+
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
880
|
+
],
|
|
881
|
+
Field(discriminator="typename__"),
|
|
882
|
+
]
|
|
883
|
+
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
884
|
+
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
885
|
+
|
|
886
|
+
|
|
887
|
+
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
888
|
+
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
889
|
+
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
890
|
+
alias="monthlyAccordingTo", default=None
|
|
891
|
+
)
|
|
892
|
+
|
|
893
|
+
|
|
894
|
+
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
895
|
+
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
896
|
+
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
897
|
+
alias="weeklyAccordingTo", default=None
|
|
898
|
+
)
|
|
899
|
+
|
|
900
|
+
|
|
901
|
+
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
902
|
+
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
903
|
+
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
904
|
+
alias="yearlyAccordingTo", default=None
|
|
905
|
+
)
|
|
906
|
+
|
|
907
|
+
|
|
908
|
+
class EntitlementFragmentFeature(FeatureFragment):
|
|
909
|
+
pass
|
|
910
|
+
|
|
911
|
+
|
|
912
912
|
class ApplySubscriptionFragment(BaseModel):
|
|
913
913
|
subscription: Optional["ApplySubscriptionFragmentSubscription"] = Field(
|
|
914
914
|
default=None
|
|
@@ -1249,33 +1249,6 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1249
1249
|
pass
|
|
1250
1250
|
|
|
1251
1251
|
|
|
1252
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1253
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1254
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1255
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1256
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1257
|
-
default=None
|
|
1258
|
-
)
|
|
1259
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1260
|
-
default=None
|
|
1261
|
-
)
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1265
|
-
amount: float
|
|
1266
|
-
currency: Currency
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1270
|
-
id: str
|
|
1271
|
-
ref_id: str = Field(alias="refId")
|
|
1272
|
-
display_name: str = Field(alias="displayName")
|
|
1273
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1274
|
-
feature_units_plural: Optional[str] = Field(
|
|
1275
|
-
alias="featureUnitsPlural", default=None
|
|
1276
|
-
)
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
1252
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1280
1253
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1281
1254
|
alias="subscriptionScheduleType"
|
|
@@ -1452,6 +1425,33 @@ class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
|
1452
1425
|
quantity: int
|
|
1453
1426
|
|
|
1454
1427
|
|
|
1428
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1429
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1430
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1431
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1432
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1433
|
+
default=None
|
|
1434
|
+
)
|
|
1435
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1436
|
+
default=None
|
|
1437
|
+
)
|
|
1438
|
+
|
|
1439
|
+
|
|
1440
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1441
|
+
amount: float
|
|
1442
|
+
currency: Currency
|
|
1443
|
+
|
|
1444
|
+
|
|
1445
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1446
|
+
id: str
|
|
1447
|
+
ref_id: str = Field(alias="refId")
|
|
1448
|
+
display_name: str = Field(alias="displayName")
|
|
1449
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1450
|
+
feature_units_plural: Optional[str] = Field(
|
|
1451
|
+
alias="featureUnitsPlural", default=None
|
|
1452
|
+
)
|
|
1453
|
+
|
|
1454
|
+
|
|
1455
1455
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1456
1456
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1457
1457
|
plan_id: str = Field(alias="planId")
|
|
@@ -1785,6 +1785,39 @@ 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
|
+
|
|
1788
1821
|
class MockPaywallPriceFragment(BaseModel):
|
|
1789
1822
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1790
1823
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1819,39 +1852,6 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1819
1852
|
display_name: str = Field(alias="displayName")
|
|
1820
1853
|
|
|
1821
1854
|
|
|
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,22 +2764,22 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2764
2764
|
AddonDependencyFragment.model_rebuild()
|
|
2765
2765
|
PackageEntitlementFragment.model_rebuild()
|
|
2766
2766
|
PriceTierFragment.model_rebuild()
|
|
2767
|
-
PriceFragment.model_rebuild()
|
|
2768
2767
|
OveragePriceFragment.model_rebuild()
|
|
2768
|
+
PriceFragment.model_rebuild()
|
|
2769
2769
|
AddonFragment.model_rebuild()
|
|
2770
|
-
FeatureFragment.model_rebuild()
|
|
2771
|
-
EntitlementFragment.model_rebuild()
|
|
2772
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2773
2770
|
SubscriptionInvoiceFragment.model_rebuild()
|
|
2771
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2772
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2773
|
+
TotalPriceFragment.model_rebuild()
|
|
2774
|
+
CustomerResourceFragment.model_rebuild()
|
|
2774
2775
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2775
2776
|
ProductFragment.model_rebuild()
|
|
2776
2777
|
PlanFragment.model_rebuild()
|
|
2777
|
-
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2778
|
-
CustomerResourceFragment.model_rebuild()
|
|
2779
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2780
|
-
TotalPriceFragment.model_rebuild()
|
|
2781
2778
|
SlimCustomerFragment.model_rebuild()
|
|
2779
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2782
2780
|
SubscriptionFragment.model_rebuild()
|
|
2781
|
+
FeatureFragment.model_rebuild()
|
|
2782
|
+
EntitlementFragment.model_rebuild()
|
|
2783
2783
|
ApplySubscriptionFragment.model_rebuild()
|
|
2784
2784
|
FontVariantFragment.model_rebuild()
|
|
2785
2785
|
TypographyConfigurationFragment.model_rebuild()
|
|
@@ -2791,9 +2791,9 @@ CheckoutStateFragment.model_rebuild()
|
|
|
2791
2791
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2792
2792
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2793
2793
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2794
|
-
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2795
2794
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2796
2795
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2796
|
+
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2797
2797
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2798
2798
|
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2799
2799
|
CustomerPortalFragment.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
|
-
MockPaywallPriceFragment.model_rebuild()
|
|
2809
2808
|
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2809
|
+
MockPaywallPriceFragment.model_rebuild()
|
|
2810
2810
|
MockPaywallAddonFragment.model_rebuild()
|
|
2811
2811
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2812
2812
|
MockPaywallPlanFragment.model_rebuild()
|
|
@@ -119,11 +119,11 @@ stigg/generated/client.py,sha256=ID5x5Jok4GeF-j_WWeIQokdYlfH3iAOG7uqMD-mI0TI,169
|
|
|
119
119
|
stigg/generated/create_subscription.py,sha256=vbpBJ_daXHcQDtvU3vbwSr2E7s4VGRHxqPavyTV3Mtk,457
|
|
120
120
|
stigg/generated/delegate_subscription_to_customer.py,sha256=0TgQDO0Hk-z7X7PGtqhvciqa8IjkToK9cpiX3Kqu_UY,561
|
|
121
121
|
stigg/generated/detach_customer_payment_method.py,sha256=ACXlC2xsGaUP723OrayFZQ9SbXxe8TtVUYdG1gqcYFc,523
|
|
122
|
-
stigg/generated/enums.py,sha256=
|
|
122
|
+
stigg/generated/enums.py,sha256=YyjIiF45-rdETMG4T-ZjxncgpPlzeYt8J04wejdSmSQ,34091
|
|
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=GV9s8p8nAaaOnlaA_4IMzWlPn0MDqCunINljIl98PPM,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
|
|
@@ -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.284.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.284.0.dist-info/METADATA,sha256=5pmAJZT4zvZHK070mS7RWJRciqyU4GHBsRS5jp7g9OU,2258
|
|
165
|
+
stigg_api_client_v2-2.284.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.284.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|