stigg-api-client-v2 3.23.1__py3-none-any.whl → 3.26.5__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of stigg-api-client-v2 might be problematic. Click here for more details.
- stigg/generated/fragments.py +363 -363
- {stigg_api_client_v2-3.23.1.dist-info → stigg_api_client_v2-3.26.5.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-3.23.1.dist-info → stigg_api_client_v2-3.26.5.dist-info}/RECORD +5 -5
- {stigg_api_client_v2-3.23.1.dist-info → stigg_api_client_v2-3.26.5.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-3.23.1.dist-info → stigg_api_client_v2-3.26.5.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -80,50 +80,6 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
80
80
|
currency: Currency
|
|
81
81
|
|
|
82
82
|
|
|
83
|
-
class PriceFragment(BaseModel):
|
|
84
|
-
billing_model: BillingModel = Field(alias="billingModel")
|
|
85
|
-
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
86
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
87
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
88
|
-
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
89
|
-
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
90
|
-
billing_country_code: Optional[str] = Field(
|
|
91
|
-
alias="billingCountryCode", default=None
|
|
92
|
-
)
|
|
93
|
-
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
94
|
-
credit_rate: Optional["PriceFragmentCreditRate"] = Field(
|
|
95
|
-
alias="creditRate", default=None
|
|
96
|
-
)
|
|
97
|
-
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
98
|
-
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
99
|
-
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
100
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
class PriceFragmentPrice(BaseModel):
|
|
104
|
-
amount: float
|
|
105
|
-
currency: Currency
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
class PriceFragmentCreditRate(BaseModel):
|
|
109
|
-
amount: float
|
|
110
|
-
custom_currency_id: Any = Field(alias="customCurrencyId")
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
class PriceFragmentTiers(PriceTierFragment):
|
|
114
|
-
pass
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
class PriceFragmentFeature(BaseModel):
|
|
118
|
-
ref_id: str = Field(alias="refId")
|
|
119
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
120
|
-
feature_units_plural: Optional[str] = Field(
|
|
121
|
-
alias="featureUnitsPlural", default=None
|
|
122
|
-
)
|
|
123
|
-
display_name: str = Field(alias="displayName")
|
|
124
|
-
description: Optional[str] = Field(default=None)
|
|
125
|
-
|
|
126
|
-
|
|
127
83
|
class OveragePriceFragment(BaseModel):
|
|
128
84
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
129
85
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -190,6 +146,50 @@ class PackageEntitlementFragmentFeature(BaseModel):
|
|
|
190
146
|
)
|
|
191
147
|
|
|
192
148
|
|
|
149
|
+
class PriceFragment(BaseModel):
|
|
150
|
+
billing_model: BillingModel = Field(alias="billingModel")
|
|
151
|
+
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
152
|
+
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
153
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
154
|
+
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
155
|
+
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
156
|
+
billing_country_code: Optional[str] = Field(
|
|
157
|
+
alias="billingCountryCode", default=None
|
|
158
|
+
)
|
|
159
|
+
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
160
|
+
credit_rate: Optional["PriceFragmentCreditRate"] = Field(
|
|
161
|
+
alias="creditRate", default=None
|
|
162
|
+
)
|
|
163
|
+
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
164
|
+
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
165
|
+
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
166
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
class PriceFragmentPrice(BaseModel):
|
|
170
|
+
amount: float
|
|
171
|
+
currency: Currency
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
class PriceFragmentCreditRate(BaseModel):
|
|
175
|
+
amount: float
|
|
176
|
+
custom_currency_id: Any = Field(alias="customCurrencyId")
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
class PriceFragmentTiers(PriceTierFragment):
|
|
180
|
+
pass
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
class PriceFragmentFeature(BaseModel):
|
|
184
|
+
ref_id: str = Field(alias="refId")
|
|
185
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
186
|
+
feature_units_plural: Optional[str] = Field(
|
|
187
|
+
alias="featureUnitsPlural", default=None
|
|
188
|
+
)
|
|
189
|
+
display_name: str = Field(alias="displayName")
|
|
190
|
+
description: Optional[str] = Field(default=None)
|
|
191
|
+
|
|
192
|
+
|
|
193
193
|
class AddonFragment(BaseModel):
|
|
194
194
|
id: Any
|
|
195
195
|
ref_id: str = Field(alias="refId")
|
|
@@ -228,176 +228,89 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
228
228
|
pass
|
|
229
229
|
|
|
230
230
|
|
|
231
|
-
class
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
created_at: Any = Field(alias="createdAt")
|
|
239
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
240
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
241
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
242
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
243
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
244
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
245
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
246
|
-
alias="billingReason", default=None
|
|
247
|
-
)
|
|
248
|
-
currency: Optional[str] = Field(default=None)
|
|
249
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
250
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
251
|
-
alias="subTotalExcludingTax", default=None
|
|
252
|
-
)
|
|
253
|
-
total: Optional[float] = Field(default=None)
|
|
254
|
-
total_excluding_tax: Optional[float] = Field(
|
|
255
|
-
alias="totalExcludingTax", default=None
|
|
231
|
+
class FeatureFragment(BaseModel):
|
|
232
|
+
typename__: str = Field(alias="__typename")
|
|
233
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
234
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
235
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
236
|
+
feature_units_plural: Optional[str] = Field(
|
|
237
|
+
alias="featureUnitsPlural", default=None
|
|
256
238
|
)
|
|
257
|
-
tax: Optional[float] = Field(default=None)
|
|
258
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
259
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
class CustomerResourceFragment(BaseModel):
|
|
263
|
-
resource_id: str = Field(alias="resourceId")
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
class ProductFragment(BaseModel):
|
|
267
|
-
ref_id: str = Field(alias="refId")
|
|
268
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
269
239
|
description: Optional[str] = Field(default=None)
|
|
270
|
-
additional_meta_data: Optional[Any] = Field(
|
|
271
|
-
alias="additionalMetaData", default=None
|
|
272
|
-
)
|
|
273
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
277
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
278
|
-
alias="downgradePlan", default=None
|
|
279
|
-
)
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
283
|
-
ref_id: str = Field(alias="refId")
|
|
284
240
|
display_name: str = Field(alias="displayName")
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
289
|
-
display_name: str = Field(alias="displayName")
|
|
290
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
291
|
-
default=None
|
|
241
|
+
ref_id: str = Field(alias="refId")
|
|
242
|
+
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
243
|
+
alias="unitTransformation", default=None
|
|
292
244
|
)
|
|
293
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
294
|
-
|
|
295
245
|
|
|
296
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
297
|
-
pass
|
|
298
246
|
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
247
|
+
class FeatureFragmentUnitTransformation(BaseModel):
|
|
248
|
+
divide: float
|
|
249
|
+
round: UnitTransformationRound
|
|
303
250
|
|
|
304
251
|
|
|
305
|
-
class
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
311
|
-
version_number: int = Field(alias="versionNumber")
|
|
312
|
-
additional_meta_data: Optional[Any] = Field(
|
|
313
|
-
alias="additionalMetaData", default=None
|
|
314
|
-
)
|
|
315
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
316
|
-
alias="hiddenFromWidgets", default=None
|
|
317
|
-
)
|
|
318
|
-
product: "PlanFragmentProduct"
|
|
319
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
320
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
321
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
322
|
-
alias="inheritedEntitlements", default=None
|
|
323
|
-
)
|
|
324
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
325
|
-
alias="compatibleAddons", default=None
|
|
252
|
+
class EntitlementFragment(BaseModel):
|
|
253
|
+
typename__: str = Field(alias="__typename")
|
|
254
|
+
is_granted: bool = Field(alias="isGranted")
|
|
255
|
+
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
256
|
+
alias="accessDeniedReason", default=None
|
|
326
257
|
)
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
] = Field(alias="
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
258
|
+
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
259
|
+
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
260
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
261
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
262
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
263
|
+
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
264
|
+
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
265
|
+
requested_values: Optional[List[str]] = Field(alias="requestedValues", default=None)
|
|
266
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
267
|
+
entitlement_updated_at: Optional[Any] = Field(
|
|
268
|
+
alias="entitlementUpdatedAt", default=None
|
|
333
269
|
)
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
270
|
+
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
271
|
+
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
272
|
+
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
273
|
+
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
274
|
+
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
275
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
276
|
+
alias="resetPeriod", default=None
|
|
337
277
|
)
|
|
278
|
+
reset_period_configuration: Optional[
|
|
279
|
+
Annotated[
|
|
280
|
+
Union[
|
|
281
|
+
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
282
|
+
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
283
|
+
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
284
|
+
],
|
|
285
|
+
Field(discriminator="typename__"),
|
|
286
|
+
]
|
|
287
|
+
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
288
|
+
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
338
289
|
|
|
339
290
|
|
|
340
|
-
class
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
ref_id: str = Field(alias="refId")
|
|
346
|
-
display_name: str = Field(alias="displayName")
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
350
|
-
pass
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
354
|
-
pass
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
358
|
-
pass
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
362
|
-
pass
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
class PlanFragmentPrices(PriceFragment):
|
|
366
|
-
pass
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
370
|
-
pass
|
|
291
|
+
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
292
|
+
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
293
|
+
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
294
|
+
alias="monthlyAccordingTo", default=None
|
|
295
|
+
)
|
|
371
296
|
|
|
372
297
|
|
|
373
|
-
class
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
378
|
-
alias="trialEndBehavior", default=None
|
|
298
|
+
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
299
|
+
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
300
|
+
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
301
|
+
alias="weeklyAccordingTo", default=None
|
|
379
302
|
)
|
|
380
303
|
|
|
381
304
|
|
|
382
|
-
class
|
|
383
|
-
|
|
305
|
+
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
306
|
+
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
307
|
+
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
308
|
+
alias="yearlyAccordingTo", default=None
|
|
309
|
+
)
|
|
384
310
|
|
|
385
311
|
|
|
386
|
-
class
|
|
387
|
-
|
|
388
|
-
name: Optional[str] = Field(default=None)
|
|
389
|
-
email: Optional[str] = Field(default=None)
|
|
390
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
391
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
392
|
-
ref_id: str = Field(alias="refId")
|
|
393
|
-
customer_id: str = Field(alias="customerId")
|
|
394
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
395
|
-
additional_meta_data: Optional[Any] = Field(
|
|
396
|
-
alias="additionalMetaData", default=None
|
|
397
|
-
)
|
|
398
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
399
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
400
|
-
)
|
|
312
|
+
class EntitlementFragmentFeature(FeatureFragment):
|
|
313
|
+
pass
|
|
401
314
|
|
|
402
315
|
|
|
403
316
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
@@ -716,6 +629,147 @@ class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(Bas
|
|
|
716
629
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
717
630
|
|
|
718
631
|
|
|
632
|
+
class ProductFragment(BaseModel):
|
|
633
|
+
ref_id: str = Field(alias="refId")
|
|
634
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
635
|
+
description: Optional[str] = Field(default=None)
|
|
636
|
+
additional_meta_data: Optional[Any] = Field(
|
|
637
|
+
alias="additionalMetaData", default=None
|
|
638
|
+
)
|
|
639
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
640
|
+
|
|
641
|
+
|
|
642
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
643
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
644
|
+
alias="downgradePlan", default=None
|
|
645
|
+
)
|
|
646
|
+
|
|
647
|
+
|
|
648
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
649
|
+
ref_id: str = Field(alias="refId")
|
|
650
|
+
display_name: str = Field(alias="displayName")
|
|
651
|
+
|
|
652
|
+
|
|
653
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
654
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
655
|
+
display_name: str = Field(alias="displayName")
|
|
656
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
657
|
+
default=None
|
|
658
|
+
)
|
|
659
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
660
|
+
|
|
661
|
+
|
|
662
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
663
|
+
pass
|
|
664
|
+
|
|
665
|
+
|
|
666
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
667
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
668
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
669
|
+
|
|
670
|
+
|
|
671
|
+
class PlanFragment(BaseModel):
|
|
672
|
+
id: Any
|
|
673
|
+
ref_id: str = Field(alias="refId")
|
|
674
|
+
display_name: str = Field(alias="displayName")
|
|
675
|
+
description: Optional[str] = Field(default=None)
|
|
676
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
677
|
+
version_number: int = Field(alias="versionNumber")
|
|
678
|
+
additional_meta_data: Optional[Any] = Field(
|
|
679
|
+
alias="additionalMetaData", default=None
|
|
680
|
+
)
|
|
681
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
682
|
+
alias="hiddenFromWidgets", default=None
|
|
683
|
+
)
|
|
684
|
+
product: "PlanFragmentProduct"
|
|
685
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
686
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
687
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
688
|
+
alias="inheritedEntitlements", default=None
|
|
689
|
+
)
|
|
690
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
691
|
+
alias="compatibleAddons", default=None
|
|
692
|
+
)
|
|
693
|
+
compatible_package_groups: Optional[
|
|
694
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
695
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
696
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
697
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
698
|
+
alias="overagePrices", default=None
|
|
699
|
+
)
|
|
700
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
701
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
702
|
+
alias="defaultTrialConfig", default=None
|
|
703
|
+
)
|
|
704
|
+
|
|
705
|
+
|
|
706
|
+
class PlanFragmentProduct(ProductFragment):
|
|
707
|
+
pass
|
|
708
|
+
|
|
709
|
+
|
|
710
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
711
|
+
ref_id: str = Field(alias="refId")
|
|
712
|
+
display_name: str = Field(alias="displayName")
|
|
713
|
+
|
|
714
|
+
|
|
715
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
716
|
+
pass
|
|
717
|
+
|
|
718
|
+
|
|
719
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
720
|
+
pass
|
|
721
|
+
|
|
722
|
+
|
|
723
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
724
|
+
pass
|
|
725
|
+
|
|
726
|
+
|
|
727
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
728
|
+
pass
|
|
729
|
+
|
|
730
|
+
|
|
731
|
+
class PlanFragmentPrices(PriceFragment):
|
|
732
|
+
pass
|
|
733
|
+
|
|
734
|
+
|
|
735
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
736
|
+
pass
|
|
737
|
+
|
|
738
|
+
|
|
739
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
740
|
+
duration: float
|
|
741
|
+
units: TrialPeriodUnits
|
|
742
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
743
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
744
|
+
alias="trialEndBehavior", default=None
|
|
745
|
+
)
|
|
746
|
+
|
|
747
|
+
|
|
748
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
749
|
+
limit: float
|
|
750
|
+
|
|
751
|
+
|
|
752
|
+
class SlimCustomerFragment(BaseModel):
|
|
753
|
+
id: Any
|
|
754
|
+
name: Optional[str] = Field(default=None)
|
|
755
|
+
email: Optional[str] = Field(default=None)
|
|
756
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
757
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
758
|
+
ref_id: str = Field(alias="refId")
|
|
759
|
+
customer_id: str = Field(alias="customerId")
|
|
760
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
761
|
+
additional_meta_data: Optional[Any] = Field(
|
|
762
|
+
alias="additionalMetaData", default=None
|
|
763
|
+
)
|
|
764
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
765
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
766
|
+
)
|
|
767
|
+
|
|
768
|
+
|
|
769
|
+
class CustomerResourceFragment(BaseModel):
|
|
770
|
+
resource_id: str = Field(alias="resourceId")
|
|
771
|
+
|
|
772
|
+
|
|
719
773
|
class TotalPriceFragment(BaseModel):
|
|
720
774
|
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
721
775
|
total: "TotalPriceFragmentTotal"
|
|
@@ -726,9 +780,40 @@ class TotalPriceFragmentSubTotal(BaseModel):
|
|
|
726
780
|
currency: Currency
|
|
727
781
|
|
|
728
782
|
|
|
729
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
730
|
-
amount: float
|
|
731
|
-
currency: Currency
|
|
783
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
784
|
+
amount: float
|
|
785
|
+
currency: Currency
|
|
786
|
+
|
|
787
|
+
|
|
788
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
789
|
+
billing_id: str = Field(alias="billingId")
|
|
790
|
+
status: SubscriptionInvoiceStatus
|
|
791
|
+
created_at: Any = Field(alias="createdAt")
|
|
792
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
793
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
794
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
795
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
796
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
797
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
798
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
799
|
+
alias="billingReason", default=None
|
|
800
|
+
)
|
|
801
|
+
currency: Optional[str] = Field(default=None)
|
|
802
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
803
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
804
|
+
alias="subTotalExcludingTax", default=None
|
|
805
|
+
)
|
|
806
|
+
total: Optional[float] = Field(default=None)
|
|
807
|
+
total_excluding_tax: Optional[float] = Field(
|
|
808
|
+
alias="totalExcludingTax", default=None
|
|
809
|
+
)
|
|
810
|
+
tax: Optional[float] = Field(default=None)
|
|
811
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
812
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
813
|
+
|
|
814
|
+
|
|
815
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
816
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
732
817
|
|
|
733
818
|
|
|
734
819
|
class SubscriptionFragment(BaseModel):
|
|
@@ -840,91 +925,6 @@ class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragm
|
|
|
840
925
|
pass
|
|
841
926
|
|
|
842
927
|
|
|
843
|
-
class FeatureFragment(BaseModel):
|
|
844
|
-
typename__: str = Field(alias="__typename")
|
|
845
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
846
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
847
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
848
|
-
feature_units_plural: Optional[str] = Field(
|
|
849
|
-
alias="featureUnitsPlural", default=None
|
|
850
|
-
)
|
|
851
|
-
description: Optional[str] = Field(default=None)
|
|
852
|
-
display_name: str = Field(alias="displayName")
|
|
853
|
-
ref_id: str = Field(alias="refId")
|
|
854
|
-
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
855
|
-
alias="unitTransformation", default=None
|
|
856
|
-
)
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
class FeatureFragmentUnitTransformation(BaseModel):
|
|
860
|
-
divide: float
|
|
861
|
-
round: UnitTransformationRound
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
class EntitlementFragment(BaseModel):
|
|
865
|
-
typename__: str = Field(alias="__typename")
|
|
866
|
-
is_granted: bool = Field(alias="isGranted")
|
|
867
|
-
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
868
|
-
alias="accessDeniedReason", default=None
|
|
869
|
-
)
|
|
870
|
-
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
871
|
-
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
872
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
873
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
874
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
875
|
-
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
876
|
-
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
877
|
-
requested_values: Optional[List[str]] = Field(alias="requestedValues", default=None)
|
|
878
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
879
|
-
entitlement_updated_at: Optional[Any] = Field(
|
|
880
|
-
alias="entitlementUpdatedAt", default=None
|
|
881
|
-
)
|
|
882
|
-
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
883
|
-
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
884
|
-
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
885
|
-
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
886
|
-
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
887
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
888
|
-
alias="resetPeriod", default=None
|
|
889
|
-
)
|
|
890
|
-
reset_period_configuration: Optional[
|
|
891
|
-
Annotated[
|
|
892
|
-
Union[
|
|
893
|
-
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
894
|
-
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
895
|
-
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
896
|
-
],
|
|
897
|
-
Field(discriminator="typename__"),
|
|
898
|
-
]
|
|
899
|
-
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
900
|
-
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
904
|
-
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
905
|
-
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
906
|
-
alias="monthlyAccordingTo", default=None
|
|
907
|
-
)
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
911
|
-
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
912
|
-
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
913
|
-
alias="weeklyAccordingTo", default=None
|
|
914
|
-
)
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
918
|
-
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
919
|
-
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
920
|
-
alias="yearlyAccordingTo", default=None
|
|
921
|
-
)
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
class EntitlementFragmentFeature(FeatureFragment):
|
|
925
|
-
pass
|
|
926
|
-
|
|
927
|
-
|
|
928
928
|
class ApplySubscriptionFragment(BaseModel):
|
|
929
929
|
subscription: Optional["ApplySubscriptionFragmentSubscription"] = Field(
|
|
930
930
|
default=None
|
|
@@ -1002,35 +1002,6 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
1002
1002
|
)
|
|
1003
1003
|
|
|
1004
1004
|
|
|
1005
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
1006
|
-
status: PromotionalEntitlementStatus
|
|
1007
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1008
|
-
feature_id: Any = Field(alias="featureId")
|
|
1009
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1010
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1011
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1012
|
-
alias="resetPeriod", default=None
|
|
1013
|
-
)
|
|
1014
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1015
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1016
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1020
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1021
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1022
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1023
|
-
feature_units_plural: Optional[str] = Field(
|
|
1024
|
-
alias="featureUnitsPlural", default=None
|
|
1025
|
-
)
|
|
1026
|
-
display_name: str = Field(alias="displayName")
|
|
1027
|
-
description: Optional[str] = Field(default=None)
|
|
1028
|
-
ref_id: str = Field(alias="refId")
|
|
1029
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1030
|
-
alias="additionalMetaData", default=None
|
|
1031
|
-
)
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
1005
|
class CouponFragment(BaseModel):
|
|
1035
1006
|
id: Any
|
|
1036
1007
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1065,6 +1036,35 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1065
1036
|
status: SyncStatus
|
|
1066
1037
|
|
|
1067
1038
|
|
|
1039
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
1040
|
+
status: PromotionalEntitlementStatus
|
|
1041
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1042
|
+
feature_id: Any = Field(alias="featureId")
|
|
1043
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1044
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1045
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1046
|
+
alias="resetPeriod", default=None
|
|
1047
|
+
)
|
|
1048
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1049
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1050
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1051
|
+
|
|
1052
|
+
|
|
1053
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1054
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1055
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1056
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1057
|
+
feature_units_plural: Optional[str] = Field(
|
|
1058
|
+
alias="featureUnitsPlural", default=None
|
|
1059
|
+
)
|
|
1060
|
+
display_name: str = Field(alias="displayName")
|
|
1061
|
+
description: Optional[str] = Field(default=None)
|
|
1062
|
+
ref_id: str = Field(alias="refId")
|
|
1063
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1064
|
+
alias="additionalMetaData", default=None
|
|
1065
|
+
)
|
|
1066
|
+
|
|
1067
|
+
|
|
1068
1068
|
class CustomerFragment(SlimCustomerFragment):
|
|
1069
1069
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1070
1070
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1440,6 +1440,13 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1440
1440
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1441
1441
|
|
|
1442
1442
|
|
|
1443
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1444
|
+
addon_id: str = Field(alias="addonId")
|
|
1445
|
+
description: Optional[str] = Field(default=None)
|
|
1446
|
+
display_name: str = Field(alias="displayName")
|
|
1447
|
+
quantity: int
|
|
1448
|
+
|
|
1449
|
+
|
|
1443
1450
|
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1444
1451
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1445
1452
|
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
@@ -1475,13 +1482,6 @@ class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
|
1475
1482
|
)
|
|
1476
1483
|
|
|
1477
1484
|
|
|
1478
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1479
|
-
addon_id: str = Field(alias="addonId")
|
|
1480
|
-
description: Optional[str] = Field(default=None)
|
|
1481
|
-
display_name: str = Field(alias="displayName")
|
|
1482
|
-
quantity: int
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
1485
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1486
1486
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1487
1487
|
plan_id: str = Field(alias="planId")
|
|
@@ -1823,40 +1823,6 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1823
1823
|
description: Optional[str] = Field(default=None)
|
|
1824
1824
|
|
|
1825
1825
|
|
|
1826
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1827
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1828
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1829
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1830
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1831
|
-
alias="resetPeriod", default=None
|
|
1832
|
-
)
|
|
1833
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1834
|
-
alias="hiddenFromWidgets", default=None
|
|
1835
|
-
)
|
|
1836
|
-
display_name_override: Optional[str] = Field(
|
|
1837
|
-
alias="displayNameOverride", default=None
|
|
1838
|
-
)
|
|
1839
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
1840
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1841
|
-
default=None
|
|
1842
|
-
)
|
|
1843
|
-
|
|
1844
|
-
|
|
1845
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1846
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1847
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1848
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1849
|
-
feature_units_plural: Optional[str] = Field(
|
|
1850
|
-
alias="featureUnitsPlural", default=None
|
|
1851
|
-
)
|
|
1852
|
-
display_name: str = Field(alias="displayName")
|
|
1853
|
-
description: Optional[str] = Field(default=None)
|
|
1854
|
-
ref_id: str = Field(alias="refId")
|
|
1855
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1856
|
-
alias="additionalMetaData", default=None
|
|
1857
|
-
)
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
1826
|
class MockPaywallPriceFragment(BaseModel):
|
|
1861
1827
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1862
1828
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1899,6 +1865,40 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1899
1865
|
display_name: str = Field(alias="displayName")
|
|
1900
1866
|
|
|
1901
1867
|
|
|
1868
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1869
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1870
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1871
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1872
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1873
|
+
alias="resetPeriod", default=None
|
|
1874
|
+
)
|
|
1875
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1876
|
+
alias="hiddenFromWidgets", default=None
|
|
1877
|
+
)
|
|
1878
|
+
display_name_override: Optional[str] = Field(
|
|
1879
|
+
alias="displayNameOverride", default=None
|
|
1880
|
+
)
|
|
1881
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
1882
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1883
|
+
default=None
|
|
1884
|
+
)
|
|
1885
|
+
|
|
1886
|
+
|
|
1887
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1888
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1889
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1890
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1891
|
+
feature_units_plural: Optional[str] = Field(
|
|
1892
|
+
alias="featureUnitsPlural", default=None
|
|
1893
|
+
)
|
|
1894
|
+
display_name: str = Field(alias="displayName")
|
|
1895
|
+
description: Optional[str] = Field(default=None)
|
|
1896
|
+
ref_id: str = Field(alias="refId")
|
|
1897
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1898
|
+
alias="additionalMetaData", default=None
|
|
1899
|
+
)
|
|
1900
|
+
|
|
1901
|
+
|
|
1902
1902
|
class MockPaywallAddonFragment(BaseModel):
|
|
1903
1903
|
ref_id: str = Field(alias="refId")
|
|
1904
1904
|
display_name: str = Field(alias="displayName")
|
|
@@ -2873,37 +2873,37 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2873
2873
|
|
|
2874
2874
|
AddonDependencyFragment.model_rebuild()
|
|
2875
2875
|
PriceTierFragment.model_rebuild()
|
|
2876
|
-
PriceFragment.model_rebuild()
|
|
2877
2876
|
OveragePriceFragment.model_rebuild()
|
|
2878
2877
|
PackageEntitlementFragment.model_rebuild()
|
|
2878
|
+
PriceFragment.model_rebuild()
|
|
2879
2879
|
AddonFragment.model_rebuild()
|
|
2880
|
-
|
|
2881
|
-
|
|
2882
|
-
|
|
2880
|
+
FeatureFragment.model_rebuild()
|
|
2881
|
+
EntitlementFragment.model_rebuild()
|
|
2882
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2883
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2883
2884
|
ProductFragment.model_rebuild()
|
|
2884
2885
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2885
2886
|
PlanFragment.model_rebuild()
|
|
2886
2887
|
SlimCustomerFragment.model_rebuild()
|
|
2887
|
-
|
|
2888
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2888
|
+
CustomerResourceFragment.model_rebuild()
|
|
2889
2889
|
TotalPriceFragment.model_rebuild()
|
|
2890
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2891
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2890
2892
|
SubscriptionFragment.model_rebuild()
|
|
2891
|
-
FeatureFragment.model_rebuild()
|
|
2892
|
-
EntitlementFragment.model_rebuild()
|
|
2893
2893
|
ApplySubscriptionFragment.model_rebuild()
|
|
2894
2894
|
FontVariantFragment.model_rebuild()
|
|
2895
2895
|
TypographyConfigurationFragment.model_rebuild()
|
|
2896
2896
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2897
|
-
PromotionalEntitlementFragment.model_rebuild()
|
|
2898
2897
|
CouponFragment.model_rebuild()
|
|
2898
|
+
PromotionalEntitlementFragment.model_rebuild()
|
|
2899
2899
|
CustomerFragment.model_rebuild()
|
|
2900
2900
|
CheckoutStateFragment.model_rebuild()
|
|
2901
2901
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2902
2902
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2903
2903
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2904
2904
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2905
|
-
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2906
2905
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2906
|
+
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2907
2907
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2908
2908
|
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2909
2909
|
CustomerPortalFragment.model_rebuild()
|
|
@@ -2915,8 +2915,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
2915
2915
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
2916
2916
|
LayoutConfigurationFragment.model_rebuild()
|
|
2917
2917
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
2918
|
-
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2919
2918
|
MockPaywallPriceFragment.model_rebuild()
|
|
2919
|
+
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2920
2920
|
MockPaywallAddonFragment.model_rebuild()
|
|
2921
2921
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2922
2922
|
MockPaywallPlanFragment.model_rebuild()
|
|
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=asjaGM369pxIj2wWuFtgq6mA-p_9U-otD9cP2baB-mQ,3774
|
|
|
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=Jeawf8NVT3hxk2-4eeBmwLNmqdl0hSE_k3gj35kDSvI,104912
|
|
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
|
|
@@ -161,7 +161,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
|
|
|
161
161
|
stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
|
|
162
162
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
163
163
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
164
|
-
stigg_api_client_v2-3.
|
|
165
|
-
stigg_api_client_v2-3.
|
|
166
|
-
stigg_api_client_v2-3.
|
|
167
|
-
stigg_api_client_v2-3.
|
|
164
|
+
stigg_api_client_v2-3.26.5.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
165
|
+
stigg_api_client_v2-3.26.5.dist-info/METADATA,sha256=wZ31XmsN3nIBa80BQVwwmixE4OJnPHFob7_6IkoRQmw,2257
|
|
166
|
+
stigg_api_client_v2-3.26.5.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
167
|
+
stigg_api_client_v2-3.26.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|