stigg-api-client-v2 2.315.1__py3-none-any.whl → 2.315.3__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 +337 -337
- {stigg_api_client_v2-2.315.1.dist-info → stigg_api_client_v2-2.315.3.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.315.1.dist-info → stigg_api_client_v2-2.315.3.dist-info}/RECORD +6 -6
- {stigg_api_client_v2-2.315.1.dist-info → stigg_api_client_v2-2.315.3.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.315.1.dist-info → stigg_api_client_v2-2.315.3.dist-info}/WHEEL +0 -0
stigg/generated/enums.py
CHANGED
|
@@ -436,6 +436,7 @@ class ErrorCode(str, Enum):
|
|
|
436
436
|
DraftAddonCantBeArchived = "DraftAddonCantBeArchived"
|
|
437
437
|
DraftPlanCantBeArchived = "DraftPlanCantBeArchived"
|
|
438
438
|
DuplicateAddonProvisionedError = "DuplicateAddonProvisionedError"
|
|
439
|
+
DuplicateIntegrationNotAllowed = "DuplicateIntegrationNotAllowed"
|
|
439
440
|
DuplicateProductValidationError = "DuplicateProductValidationError"
|
|
440
441
|
DuplicatedEntityNotAllowed = "DuplicatedEntityNotAllowed"
|
|
441
442
|
EditAllowedOnDraftPackageOnlyError = "EditAllowedOnDraftPackageOnlyError"
|
stigg/generated/fragments.py
CHANGED
|
@@ -115,6 +115,38 @@ class PriceFragmentFeature(BaseModel):
|
|
|
115
115
|
description: Optional[str] = Field(default=None)
|
|
116
116
|
|
|
117
117
|
|
|
118
|
+
class OveragePriceFragment(BaseModel):
|
|
119
|
+
billing_model: BillingModel = Field(alias="billingModel")
|
|
120
|
+
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
121
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
122
|
+
billing_country_code: Optional[str] = Field(
|
|
123
|
+
alias="billingCountryCode", default=None
|
|
124
|
+
)
|
|
125
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
126
|
+
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
127
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
128
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
132
|
+
amount: float
|
|
133
|
+
currency: Currency
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
137
|
+
pass
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
141
|
+
ref_id: str = Field(alias="refId")
|
|
142
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
143
|
+
feature_units_plural: Optional[str] = Field(
|
|
144
|
+
alias="featureUnitsPlural", default=None
|
|
145
|
+
)
|
|
146
|
+
display_name: str = Field(alias="displayName")
|
|
147
|
+
description: Optional[str] = Field(default=None)
|
|
148
|
+
|
|
149
|
+
|
|
118
150
|
class PackageEntitlementFragment(BaseModel):
|
|
119
151
|
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
120
152
|
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
@@ -148,38 +180,6 @@ class PackageEntitlementFragmentFeature(BaseModel):
|
|
|
148
180
|
)
|
|
149
181
|
|
|
150
182
|
|
|
151
|
-
class OveragePriceFragment(BaseModel):
|
|
152
|
-
billing_model: BillingModel = Field(alias="billingModel")
|
|
153
|
-
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
154
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
155
|
-
billing_country_code: Optional[str] = Field(
|
|
156
|
-
alias="billingCountryCode", default=None
|
|
157
|
-
)
|
|
158
|
-
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
159
|
-
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
160
|
-
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
161
|
-
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
class OveragePriceFragmentPrice(BaseModel):
|
|
165
|
-
amount: float
|
|
166
|
-
currency: Currency
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
170
|
-
pass
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
class OveragePriceFragmentFeature(BaseModel):
|
|
174
|
-
ref_id: str = Field(alias="refId")
|
|
175
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
176
|
-
feature_units_plural: Optional[str] = Field(
|
|
177
|
-
alias="featureUnitsPlural", default=None
|
|
178
|
-
)
|
|
179
|
-
display_name: str = Field(alias="displayName")
|
|
180
|
-
description: Optional[str] = Field(default=None)
|
|
181
|
-
|
|
182
|
-
|
|
183
183
|
class AddonFragment(BaseModel):
|
|
184
184
|
id: str
|
|
185
185
|
ref_id: str = Field(alias="refId")
|
|
@@ -215,124 +215,108 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
215
215
|
pass
|
|
216
216
|
|
|
217
217
|
|
|
218
|
-
class
|
|
219
|
-
|
|
220
|
-
|
|
218
|
+
class FeatureFragment(BaseModel):
|
|
219
|
+
typename__: str = Field(alias="__typename")
|
|
220
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
221
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
222
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
223
|
+
feature_units_plural: Optional[str] = Field(
|
|
224
|
+
alias="featureUnitsPlural", default=None
|
|
225
|
+
)
|
|
221
226
|
description: Optional[str] = Field(default=None)
|
|
222
|
-
|
|
223
|
-
|
|
227
|
+
display_name: str = Field(alias="displayName")
|
|
228
|
+
ref_id: str = Field(alias="refId")
|
|
229
|
+
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
230
|
+
alias="unitTransformation", default=None
|
|
224
231
|
)
|
|
225
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
226
232
|
|
|
227
233
|
|
|
228
|
-
class
|
|
229
|
-
|
|
230
|
-
|
|
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
|
|
231
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)
|
|
232
274
|
|
|
233
275
|
|
|
234
|
-
class
|
|
235
|
-
|
|
236
|
-
|
|
276
|
+
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
277
|
+
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
278
|
+
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
279
|
+
alias="monthlyAccordingTo", default=None
|
|
280
|
+
)
|
|
237
281
|
|
|
238
282
|
|
|
239
|
-
class
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
default=None
|
|
283
|
+
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
284
|
+
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
285
|
+
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
286
|
+
alias="weeklyAccordingTo", default=None
|
|
244
287
|
)
|
|
245
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
246
288
|
|
|
247
289
|
|
|
248
|
-
class
|
|
249
|
-
|
|
290
|
+
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
291
|
+
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
292
|
+
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
293
|
+
alias="yearlyAccordingTo", default=None
|
|
294
|
+
)
|
|
250
295
|
|
|
251
296
|
|
|
252
|
-
class
|
|
253
|
-
|
|
254
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
297
|
+
class EntitlementFragmentFeature(FeatureFragment):
|
|
298
|
+
pass
|
|
255
299
|
|
|
256
300
|
|
|
257
|
-
class
|
|
301
|
+
class SlimCustomerFragment(BaseModel):
|
|
258
302
|
id: str
|
|
303
|
+
name: Optional[str] = Field(default=None)
|
|
304
|
+
email: Optional[str] = Field(default=None)
|
|
305
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
306
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
259
307
|
ref_id: str = Field(alias="refId")
|
|
260
|
-
|
|
261
|
-
description: Optional[str] = Field(default=None)
|
|
308
|
+
customer_id: str = Field(alias="customerId")
|
|
262
309
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
263
|
-
version_number: int = Field(alias="versionNumber")
|
|
264
310
|
additional_meta_data: Optional[Any] = Field(
|
|
265
311
|
alias="additionalMetaData", default=None
|
|
266
312
|
)
|
|
267
|
-
|
|
268
|
-
alias="
|
|
269
|
-
)
|
|
270
|
-
product: "PlanFragmentProduct"
|
|
271
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
272
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
273
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
274
|
-
alias="inheritedEntitlements", default=None
|
|
275
|
-
)
|
|
276
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
277
|
-
alias="compatibleAddons", default=None
|
|
278
|
-
)
|
|
279
|
-
compatible_package_groups: Optional[
|
|
280
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
281
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
282
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
283
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
284
|
-
alias="overagePrices", default=None
|
|
285
|
-
)
|
|
286
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
287
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
288
|
-
alias="defaultTrialConfig", default=None
|
|
289
|
-
)
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
class PlanFragmentProduct(ProductFragment):
|
|
293
|
-
pass
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
297
|
-
ref_id: str = Field(alias="refId")
|
|
298
|
-
display_name: str = Field(alias="displayName")
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
302
|
-
pass
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
306
|
-
pass
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
310
|
-
pass
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
314
|
-
pass
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
class PlanFragmentPrices(PriceFragment):
|
|
318
|
-
pass
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
322
|
-
pass
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
326
|
-
duration: float
|
|
327
|
-
units: TrialPeriodUnits
|
|
328
|
-
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
329
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
330
|
-
alias="trialEndBehavior", default=None
|
|
313
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
314
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
331
315
|
)
|
|
332
316
|
|
|
333
317
|
|
|
334
|
-
class
|
|
335
|
-
|
|
318
|
+
class CustomerResourceFragment(BaseModel):
|
|
319
|
+
resource_id: str = Field(alias="resourceId")
|
|
336
320
|
|
|
337
321
|
|
|
338
322
|
class SubscriptionFutureUpdateData(BaseModel):
|
|
@@ -651,6 +635,21 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
651
635
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
652
636
|
|
|
653
637
|
|
|
638
|
+
class TotalPriceFragment(BaseModel):
|
|
639
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
640
|
+
total: "TotalPriceFragmentTotal"
|
|
641
|
+
|
|
642
|
+
|
|
643
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
644
|
+
amount: float
|
|
645
|
+
currency: Currency
|
|
646
|
+
|
|
647
|
+
|
|
648
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
649
|
+
amount: float
|
|
650
|
+
currency: Currency
|
|
651
|
+
|
|
652
|
+
|
|
654
653
|
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
655
654
|
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
656
655
|
|
|
@@ -682,40 +681,124 @@ class SubscriptionInvoiceFragment(BaseModel):
|
|
|
682
681
|
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
683
682
|
|
|
684
683
|
|
|
685
|
-
class
|
|
686
|
-
|
|
687
|
-
|
|
684
|
+
class ProductFragment(BaseModel):
|
|
685
|
+
ref_id: str = Field(alias="refId")
|
|
686
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
687
|
+
description: Optional[str] = Field(default=None)
|
|
688
|
+
additional_meta_data: Optional[Any] = Field(
|
|
689
|
+
alias="additionalMetaData", default=None
|
|
690
|
+
)
|
|
691
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
688
692
|
|
|
689
693
|
|
|
690
|
-
class
|
|
691
|
-
|
|
692
|
-
|
|
694
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
695
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
696
|
+
alias="downgradePlan", default=None
|
|
697
|
+
)
|
|
693
698
|
|
|
694
699
|
|
|
695
|
-
class
|
|
696
|
-
|
|
697
|
-
|
|
700
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
701
|
+
ref_id: str = Field(alias="refId")
|
|
702
|
+
display_name: str = Field(alias="displayName")
|
|
698
703
|
|
|
699
704
|
|
|
700
|
-
class
|
|
705
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
706
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
707
|
+
display_name: str = Field(alias="displayName")
|
|
708
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
709
|
+
default=None
|
|
710
|
+
)
|
|
711
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
712
|
+
|
|
713
|
+
|
|
714
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
715
|
+
pass
|
|
716
|
+
|
|
717
|
+
|
|
718
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
719
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
720
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
721
|
+
|
|
722
|
+
|
|
723
|
+
class PlanFragment(BaseModel):
|
|
701
724
|
id: str
|
|
702
|
-
name: Optional[str] = Field(default=None)
|
|
703
|
-
email: Optional[str] = Field(default=None)
|
|
704
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
705
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
706
725
|
ref_id: str = Field(alias="refId")
|
|
707
|
-
|
|
726
|
+
display_name: str = Field(alias="displayName")
|
|
727
|
+
description: Optional[str] = Field(default=None)
|
|
708
728
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
729
|
+
version_number: int = Field(alias="versionNumber")
|
|
709
730
|
additional_meta_data: Optional[Any] = Field(
|
|
710
731
|
alias="additionalMetaData", default=None
|
|
711
732
|
)
|
|
712
|
-
|
|
713
|
-
alias="
|
|
733
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
734
|
+
alias="hiddenFromWidgets", default=None
|
|
735
|
+
)
|
|
736
|
+
product: "PlanFragmentProduct"
|
|
737
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
738
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
739
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
740
|
+
alias="inheritedEntitlements", default=None
|
|
741
|
+
)
|
|
742
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
743
|
+
alias="compatibleAddons", default=None
|
|
744
|
+
)
|
|
745
|
+
compatible_package_groups: Optional[
|
|
746
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
747
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
748
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
749
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
750
|
+
alias="overagePrices", default=None
|
|
751
|
+
)
|
|
752
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
753
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
754
|
+
alias="defaultTrialConfig", default=None
|
|
714
755
|
)
|
|
715
756
|
|
|
716
757
|
|
|
717
|
-
class
|
|
718
|
-
|
|
758
|
+
class PlanFragmentProduct(ProductFragment):
|
|
759
|
+
pass
|
|
760
|
+
|
|
761
|
+
|
|
762
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
763
|
+
ref_id: str = Field(alias="refId")
|
|
764
|
+
display_name: str = Field(alias="displayName")
|
|
765
|
+
|
|
766
|
+
|
|
767
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
768
|
+
pass
|
|
769
|
+
|
|
770
|
+
|
|
771
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
772
|
+
pass
|
|
773
|
+
|
|
774
|
+
|
|
775
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
776
|
+
pass
|
|
777
|
+
|
|
778
|
+
|
|
779
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
780
|
+
pass
|
|
781
|
+
|
|
782
|
+
|
|
783
|
+
class PlanFragmentPrices(PriceFragment):
|
|
784
|
+
pass
|
|
785
|
+
|
|
786
|
+
|
|
787
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
788
|
+
pass
|
|
789
|
+
|
|
790
|
+
|
|
791
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
792
|
+
duration: float
|
|
793
|
+
units: TrialPeriodUnits
|
|
794
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
795
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
796
|
+
alias="trialEndBehavior", default=None
|
|
797
|
+
)
|
|
798
|
+
|
|
799
|
+
|
|
800
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
801
|
+
limit: float
|
|
719
802
|
|
|
720
803
|
|
|
721
804
|
class SubscriptionFragment(BaseModel):
|
|
@@ -794,119 +877,36 @@ class SubscriptionFragmentPrices(BaseModel):
|
|
|
794
877
|
|
|
795
878
|
|
|
796
879
|
class SubscriptionFragmentPricesPrice(PriceFragment):
|
|
797
|
-
pass
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
class SubscriptionFragmentTotalPrice(TotalPriceFragment):
|
|
801
|
-
pass
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
class SubscriptionFragmentPlan(PlanFragment):
|
|
805
|
-
pass
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
class SubscriptionFragmentAddons(BaseModel):
|
|
809
|
-
id: str
|
|
810
|
-
quantity: float
|
|
811
|
-
addon: "SubscriptionFragmentAddonsAddon"
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
class SubscriptionFragmentAddonsAddon(AddonFragment):
|
|
815
|
-
pass
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
class SubscriptionFragmentScheduledUpdates(SubscriptionScheduledUpdateData):
|
|
819
|
-
pass
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
class SubscriptionFragmentFutureUpdates(SubscriptionFutureUpdateData):
|
|
823
|
-
pass
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragment):
|
|
827
|
-
pass
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
class FeatureFragment(BaseModel):
|
|
831
|
-
typename__: str = Field(alias="__typename")
|
|
832
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
833
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
834
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
835
|
-
feature_units_plural: Optional[str] = Field(
|
|
836
|
-
alias="featureUnitsPlural", default=None
|
|
837
|
-
)
|
|
838
|
-
description: Optional[str] = Field(default=None)
|
|
839
|
-
display_name: str = Field(alias="displayName")
|
|
840
|
-
ref_id: str = Field(alias="refId")
|
|
841
|
-
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
842
|
-
alias="unitTransformation", default=None
|
|
843
|
-
)
|
|
880
|
+
pass
|
|
844
881
|
|
|
845
882
|
|
|
846
|
-
class
|
|
847
|
-
|
|
848
|
-
round: UnitTransformationRound
|
|
883
|
+
class SubscriptionFragmentTotalPrice(TotalPriceFragment):
|
|
884
|
+
pass
|
|
849
885
|
|
|
850
886
|
|
|
851
|
-
class
|
|
852
|
-
|
|
853
|
-
is_granted: bool = Field(alias="isGranted")
|
|
854
|
-
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
855
|
-
alias="accessDeniedReason", default=None
|
|
856
|
-
)
|
|
857
|
-
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
858
|
-
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
859
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
860
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
861
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
862
|
-
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
863
|
-
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
864
|
-
entitlement_updated_at: Optional[Any] = Field(
|
|
865
|
-
alias="entitlementUpdatedAt", default=None
|
|
866
|
-
)
|
|
867
|
-
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
868
|
-
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
869
|
-
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
870
|
-
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
871
|
-
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
872
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
873
|
-
alias="resetPeriod", default=None
|
|
874
|
-
)
|
|
875
|
-
reset_period_configuration: Optional[
|
|
876
|
-
Annotated[
|
|
877
|
-
Union[
|
|
878
|
-
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
879
|
-
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
880
|
-
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
881
|
-
],
|
|
882
|
-
Field(discriminator="typename__"),
|
|
883
|
-
]
|
|
884
|
-
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
885
|
-
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
887
|
+
class SubscriptionFragmentPlan(PlanFragment):
|
|
888
|
+
pass
|
|
886
889
|
|
|
887
890
|
|
|
888
|
-
class
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
)
|
|
891
|
+
class SubscriptionFragmentAddons(BaseModel):
|
|
892
|
+
id: str
|
|
893
|
+
quantity: float
|
|
894
|
+
addon: "SubscriptionFragmentAddonsAddon"
|
|
893
895
|
|
|
894
896
|
|
|
895
|
-
class
|
|
896
|
-
|
|
897
|
-
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
898
|
-
alias="weeklyAccordingTo", default=None
|
|
899
|
-
)
|
|
897
|
+
class SubscriptionFragmentAddonsAddon(AddonFragment):
|
|
898
|
+
pass
|
|
900
899
|
|
|
901
900
|
|
|
902
|
-
class
|
|
903
|
-
|
|
904
|
-
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
905
|
-
alias="yearlyAccordingTo", default=None
|
|
906
|
-
)
|
|
901
|
+
class SubscriptionFragmentScheduledUpdates(SubscriptionScheduledUpdateData):
|
|
902
|
+
pass
|
|
907
903
|
|
|
908
904
|
|
|
909
|
-
class
|
|
905
|
+
class SubscriptionFragmentFutureUpdates(SubscriptionFutureUpdateData):
|
|
906
|
+
pass
|
|
907
|
+
|
|
908
|
+
|
|
909
|
+
class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragment):
|
|
910
910
|
pass
|
|
911
911
|
|
|
912
912
|
|
|
@@ -987,35 +987,6 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
987
987
|
)
|
|
988
988
|
|
|
989
989
|
|
|
990
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
991
|
-
status: PromotionalEntitlementStatus
|
|
992
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
993
|
-
feature_id: str = Field(alias="featureId")
|
|
994
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
995
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
996
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
997
|
-
alias="resetPeriod", default=None
|
|
998
|
-
)
|
|
999
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1000
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1001
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1005
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1006
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1007
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1008
|
-
feature_units_plural: Optional[str] = Field(
|
|
1009
|
-
alias="featureUnitsPlural", default=None
|
|
1010
|
-
)
|
|
1011
|
-
display_name: str = Field(alias="displayName")
|
|
1012
|
-
description: Optional[str] = Field(default=None)
|
|
1013
|
-
ref_id: str = Field(alias="refId")
|
|
1014
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1015
|
-
alias="additionalMetaData", default=None
|
|
1016
|
-
)
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
990
|
class CouponFragment(BaseModel):
|
|
1020
991
|
id: str
|
|
1021
992
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1050,6 +1021,35 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1050
1021
|
status: SyncStatus
|
|
1051
1022
|
|
|
1052
1023
|
|
|
1024
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
1025
|
+
status: PromotionalEntitlementStatus
|
|
1026
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1027
|
+
feature_id: str = Field(alias="featureId")
|
|
1028
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1029
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1030
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1031
|
+
alias="resetPeriod", default=None
|
|
1032
|
+
)
|
|
1033
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1034
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1035
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1036
|
+
|
|
1037
|
+
|
|
1038
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1039
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1040
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1041
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1042
|
+
feature_units_plural: Optional[str] = Field(
|
|
1043
|
+
alias="featureUnitsPlural", default=None
|
|
1044
|
+
)
|
|
1045
|
+
display_name: str = Field(alias="displayName")
|
|
1046
|
+
description: Optional[str] = Field(default=None)
|
|
1047
|
+
ref_id: str = Field(alias="refId")
|
|
1048
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1049
|
+
alias="additionalMetaData", default=None
|
|
1050
|
+
)
|
|
1051
|
+
|
|
1052
|
+
|
|
1053
1053
|
class CustomerFragment(SlimCustomerFragment):
|
|
1054
1054
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1055
1055
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1250,16 +1250,6 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1250
1250
|
pass
|
|
1251
1251
|
|
|
1252
1252
|
|
|
1253
|
-
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1254
|
-
display_name: str = Field(alias="displayName")
|
|
1255
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1256
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1257
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1258
|
-
period: PromotionalEntitlementPeriod
|
|
1259
|
-
start_date: Any = Field(alias="startDate")
|
|
1260
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
1253
|
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1264
1254
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1265
1255
|
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
@@ -1287,13 +1277,6 @@ class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
|
1287
1277
|
)
|
|
1288
1278
|
|
|
1289
1279
|
|
|
1290
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1291
|
-
addon_id: str = Field(alias="addonId")
|
|
1292
|
-
description: Optional[str] = Field(default=None)
|
|
1293
|
-
display_name: str = Field(alias="displayName")
|
|
1294
|
-
quantity: int
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
1280
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1298
1281
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1299
1282
|
alias="subscriptionScheduleType"
|
|
@@ -1463,6 +1446,13 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1463
1446
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1464
1447
|
|
|
1465
1448
|
|
|
1449
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1450
|
+
addon_id: str = Field(alias="addonId")
|
|
1451
|
+
description: Optional[str] = Field(default=None)
|
|
1452
|
+
display_name: str = Field(alias="displayName")
|
|
1453
|
+
quantity: int
|
|
1454
|
+
|
|
1455
|
+
|
|
1466
1456
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1467
1457
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1468
1458
|
plan_id: str = Field(alias="planId")
|
|
@@ -1559,6 +1549,16 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1559
1549
|
pass
|
|
1560
1550
|
|
|
1561
1551
|
|
|
1552
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1553
|
+
display_name: str = Field(alias="displayName")
|
|
1554
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1555
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1556
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1557
|
+
period: PromotionalEntitlementPeriod
|
|
1558
|
+
start_date: Any = Field(alias="startDate")
|
|
1559
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1560
|
+
|
|
1561
|
+
|
|
1562
1562
|
class CustomerPortalFragment(BaseModel):
|
|
1563
1563
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1564
1564
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -1786,39 +1786,6 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1786
1786
|
description: Optional[str] = Field(default=None)
|
|
1787
1787
|
|
|
1788
1788
|
|
|
1789
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1790
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1791
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1792
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1793
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1794
|
-
alias="resetPeriod", default=None
|
|
1795
|
-
)
|
|
1796
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1797
|
-
alias="hiddenFromWidgets", default=None
|
|
1798
|
-
)
|
|
1799
|
-
display_name_override: Optional[str] = Field(
|
|
1800
|
-
alias="displayNameOverride", default=None
|
|
1801
|
-
)
|
|
1802
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1803
|
-
default=None
|
|
1804
|
-
)
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1808
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1809
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1810
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1811
|
-
feature_units_plural: Optional[str] = Field(
|
|
1812
|
-
alias="featureUnitsPlural", default=None
|
|
1813
|
-
)
|
|
1814
|
-
display_name: str = Field(alias="displayName")
|
|
1815
|
-
description: Optional[str] = Field(default=None)
|
|
1816
|
-
ref_id: str = Field(alias="refId")
|
|
1817
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1818
|
-
alias="additionalMetaData", default=None
|
|
1819
|
-
)
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
1789
|
class MockPaywallPriceFragment(BaseModel):
|
|
1823
1790
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1824
1791
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1853,6 +1820,39 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1853
1820
|
display_name: str = Field(alias="displayName")
|
|
1854
1821
|
|
|
1855
1822
|
|
|
1823
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1824
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1825
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1826
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1827
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1828
|
+
alias="resetPeriod", default=None
|
|
1829
|
+
)
|
|
1830
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1831
|
+
alias="hiddenFromWidgets", default=None
|
|
1832
|
+
)
|
|
1833
|
+
display_name_override: Optional[str] = Field(
|
|
1834
|
+
alias="displayNameOverride", default=None
|
|
1835
|
+
)
|
|
1836
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1837
|
+
default=None
|
|
1838
|
+
)
|
|
1839
|
+
|
|
1840
|
+
|
|
1841
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1842
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1843
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1844
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1845
|
+
feature_units_plural: Optional[str] = Field(
|
|
1846
|
+
alias="featureUnitsPlural", default=None
|
|
1847
|
+
)
|
|
1848
|
+
display_name: str = Field(alias="displayName")
|
|
1849
|
+
description: Optional[str] = Field(default=None)
|
|
1850
|
+
ref_id: str = Field(alias="refId")
|
|
1851
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1852
|
+
alias="additionalMetaData", default=None
|
|
1853
|
+
)
|
|
1854
|
+
|
|
1855
|
+
|
|
1856
1856
|
class MockPaywallAddonFragment(BaseModel):
|
|
1857
1857
|
ref_id: str = Field(alias="refId")
|
|
1858
1858
|
display_name: str = Field(alias="displayName")
|
|
@@ -2765,38 +2765,38 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2765
2765
|
AddonDependencyFragment.model_rebuild()
|
|
2766
2766
|
PriceTierFragment.model_rebuild()
|
|
2767
2767
|
PriceFragment.model_rebuild()
|
|
2768
|
-
PackageEntitlementFragment.model_rebuild()
|
|
2769
2768
|
OveragePriceFragment.model_rebuild()
|
|
2769
|
+
PackageEntitlementFragment.model_rebuild()
|
|
2770
2770
|
AddonFragment.model_rebuild()
|
|
2771
|
-
|
|
2772
|
-
|
|
2773
|
-
|
|
2771
|
+
FeatureFragment.model_rebuild()
|
|
2772
|
+
EntitlementFragment.model_rebuild()
|
|
2773
|
+
SlimCustomerFragment.model_rebuild()
|
|
2774
|
+
CustomerResourceFragment.model_rebuild()
|
|
2774
2775
|
SubscriptionFutureUpdateData.model_rebuild()
|
|
2775
2776
|
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2777
|
+
TotalPriceFragment.model_rebuild()
|
|
2776
2778
|
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2777
2779
|
SubscriptionInvoiceFragment.model_rebuild()
|
|
2778
|
-
|
|
2779
|
-
|
|
2780
|
-
|
|
2780
|
+
ProductFragment.model_rebuild()
|
|
2781
|
+
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2782
|
+
PlanFragment.model_rebuild()
|
|
2781
2783
|
SubscriptionFragment.model_rebuild()
|
|
2782
|
-
FeatureFragment.model_rebuild()
|
|
2783
|
-
EntitlementFragment.model_rebuild()
|
|
2784
2784
|
ApplySubscriptionFragment.model_rebuild()
|
|
2785
2785
|
FontVariantFragment.model_rebuild()
|
|
2786
2786
|
TypographyConfigurationFragment.model_rebuild()
|
|
2787
2787
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2788
|
-
PromotionalEntitlementFragment.model_rebuild()
|
|
2789
2788
|
CouponFragment.model_rebuild()
|
|
2789
|
+
PromotionalEntitlementFragment.model_rebuild()
|
|
2790
2790
|
CustomerFragment.model_rebuild()
|
|
2791
2791
|
CheckoutStateFragment.model_rebuild()
|
|
2792
2792
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2793
2793
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2794
2794
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2795
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2796
2795
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2797
|
-
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2798
2796
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2797
|
+
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2799
2798
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2799
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2800
2800
|
CustomerPortalFragment.model_rebuild()
|
|
2801
2801
|
CustomerStatisticsFragment.model_rebuild()
|
|
2802
2802
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
|
@@ -2806,8 +2806,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
2806
2806
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
2807
2807
|
LayoutConfigurationFragment.model_rebuild()
|
|
2808
2808
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
2809
|
-
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2810
2809
|
MockPaywallPriceFragment.model_rebuild()
|
|
2810
|
+
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2811
2811
|
MockPaywallAddonFragment.model_rebuild()
|
|
2812
2812
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2813
2813
|
MockPaywallPlanFragment.model_rebuild()
|
|
@@ -119,11 +119,11 @@ stigg/generated/client.py,sha256=AHebP8X0jl5noIxkZwMgE-EOE3e5lv-tGrCj2xDt58c,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=-KENNOE-xsKr2JErSh1nQWK3pBt0DrPbIM45Tg8PCGE,34476
|
|
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=lPjl89hFvhw0WOFxr-EMCCVg8GJh0x8_l-nemsu_-rE,100632
|
|
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.315.
|
|
164
|
-
stigg_api_client_v2-2.315.
|
|
165
|
-
stigg_api_client_v2-2.315.
|
|
166
|
-
stigg_api_client_v2-2.315.
|
|
163
|
+
stigg_api_client_v2-2.315.3.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.315.3.dist-info/METADATA,sha256=OBKQgsfz3Fh0gTUvYXFYUiB_Exu1HRLGj-DYFu39hUE,2258
|
|
165
|
+
stigg_api_client_v2-2.315.3.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.315.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|