stigg-api-client-v2 3.16.0__py3-none-any.whl → 3.17.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.
- stigg/generated/fragments.py +358 -358
- {stigg_api_client_v2-3.16.0.dist-info → stigg_api_client_v2-3.17.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-3.16.0.dist-info → stigg_api_client_v2-3.17.0.dist-info}/RECORD +5 -5
- {stigg_api_client_v2-3.16.0.dist-info → stigg_api_client_v2-3.17.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-3.16.0.dist-info → stigg_api_client_v2-3.17.0.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -60,40 +60,6 @@ class AddonDependencyFragment(BaseModel):
|
|
|
60
60
|
description: Optional[str] = Field(default=None)
|
|
61
61
|
|
|
62
62
|
|
|
63
|
-
class PackageEntitlementFragment(BaseModel):
|
|
64
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
65
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
66
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
67
|
-
feature_id: str = Field(alias="featureId")
|
|
68
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
69
|
-
alias="resetPeriod", default=None
|
|
70
|
-
)
|
|
71
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
72
|
-
alias="hiddenFromWidgets", default=None
|
|
73
|
-
)
|
|
74
|
-
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
75
|
-
display_name_override: Optional[str] = Field(
|
|
76
|
-
alias="displayNameOverride", default=None
|
|
77
|
-
)
|
|
78
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
79
|
-
feature: "PackageEntitlementFragmentFeature"
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
class PackageEntitlementFragmentFeature(BaseModel):
|
|
83
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
84
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
85
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
86
|
-
feature_units_plural: Optional[str] = Field(
|
|
87
|
-
alias="featureUnitsPlural", default=None
|
|
88
|
-
)
|
|
89
|
-
display_name: str = Field(alias="displayName")
|
|
90
|
-
description: Optional[str] = Field(default=None)
|
|
91
|
-
ref_id: str = Field(alias="refId")
|
|
92
|
-
additional_meta_data: Optional[Any] = Field(
|
|
93
|
-
alias="additionalMetaData", default=None
|
|
94
|
-
)
|
|
95
|
-
|
|
96
|
-
|
|
97
63
|
class PriceTierFragment(BaseModel):
|
|
98
64
|
up_to: Optional[float] = Field(alias="upTo", default=None)
|
|
99
65
|
unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
|
|
@@ -114,6 +80,38 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
114
80
|
currency: Currency
|
|
115
81
|
|
|
116
82
|
|
|
83
|
+
class OveragePriceFragment(BaseModel):
|
|
84
|
+
billing_model: BillingModel = Field(alias="billingModel")
|
|
85
|
+
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
86
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
87
|
+
billing_country_code: Optional[str] = Field(
|
|
88
|
+
alias="billingCountryCode", default=None
|
|
89
|
+
)
|
|
90
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
91
|
+
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
92
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
93
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
97
|
+
amount: float
|
|
98
|
+
currency: Currency
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
102
|
+
pass
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
106
|
+
ref_id: str = Field(alias="refId")
|
|
107
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
108
|
+
feature_units_plural: Optional[str] = Field(
|
|
109
|
+
alias="featureUnitsPlural", default=None
|
|
110
|
+
)
|
|
111
|
+
display_name: str = Field(alias="displayName")
|
|
112
|
+
description: Optional[str] = Field(default=None)
|
|
113
|
+
|
|
114
|
+
|
|
117
115
|
class PriceFragment(BaseModel):
|
|
118
116
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
119
117
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -158,36 +156,38 @@ class PriceFragmentFeature(BaseModel):
|
|
|
158
156
|
description: Optional[str] = Field(default=None)
|
|
159
157
|
|
|
160
158
|
|
|
161
|
-
class
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
159
|
+
class PackageEntitlementFragment(BaseModel):
|
|
160
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
161
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
162
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
163
|
+
feature_id: str = Field(alias="featureId")
|
|
164
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
165
|
+
alias="resetPeriod", default=None
|
|
167
166
|
)
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
180
|
-
pass
|
|
167
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
168
|
+
alias="hiddenFromWidgets", default=None
|
|
169
|
+
)
|
|
170
|
+
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
171
|
+
display_name_override: Optional[str] = Field(
|
|
172
|
+
alias="displayNameOverride", default=None
|
|
173
|
+
)
|
|
174
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
175
|
+
feature: "PackageEntitlementFragmentFeature"
|
|
181
176
|
|
|
182
177
|
|
|
183
|
-
class
|
|
184
|
-
|
|
178
|
+
class PackageEntitlementFragmentFeature(BaseModel):
|
|
179
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
180
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
185
181
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
186
182
|
feature_units_plural: Optional[str] = Field(
|
|
187
183
|
alias="featureUnitsPlural", default=None
|
|
188
184
|
)
|
|
189
185
|
display_name: str = Field(alias="displayName")
|
|
190
186
|
description: Optional[str] = Field(default=None)
|
|
187
|
+
ref_id: str = Field(alias="refId")
|
|
188
|
+
additional_meta_data: Optional[Any] = Field(
|
|
189
|
+
alias="additionalMetaData", default=None
|
|
190
|
+
)
|
|
191
191
|
|
|
192
192
|
|
|
193
193
|
class AddonFragment(BaseModel):
|
|
@@ -228,95 +228,6 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
228
228
|
pass
|
|
229
229
|
|
|
230
230
|
|
|
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
|
|
238
|
-
)
|
|
239
|
-
description: Optional[str] = Field(default=None)
|
|
240
|
-
display_name: str = Field(alias="displayName")
|
|
241
|
-
ref_id: str = Field(alias="refId")
|
|
242
|
-
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
243
|
-
alias="unitTransformation", default=None
|
|
244
|
-
)
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
class FeatureFragmentUnitTransformation(BaseModel):
|
|
248
|
-
divide: float
|
|
249
|
-
round: UnitTransformationRound
|
|
250
|
-
|
|
251
|
-
|
|
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
|
|
257
|
-
)
|
|
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
|
|
269
|
-
)
|
|
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
|
|
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)
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
292
|
-
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
293
|
-
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
294
|
-
alias="monthlyAccordingTo", default=None
|
|
295
|
-
)
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
299
|
-
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
300
|
-
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
301
|
-
alias="weeklyAccordingTo", default=None
|
|
302
|
-
)
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
306
|
-
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
307
|
-
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
308
|
-
alias="yearlyAccordingTo", default=None
|
|
309
|
-
)
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
class EntitlementFragmentFeature(FeatureFragment):
|
|
313
|
-
pass
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
class CustomerResourceFragment(BaseModel):
|
|
317
|
-
resource_id: str = Field(alias="resourceId")
|
|
318
|
-
|
|
319
|
-
|
|
320
231
|
class SlimCustomerFragment(BaseModel):
|
|
321
232
|
id: Any
|
|
322
233
|
name: Optional[str] = Field(default=None)
|
|
@@ -488,126 +399,6 @@ class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(Bas
|
|
|
488
399
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
489
400
|
|
|
490
401
|
|
|
491
|
-
class ProductFragment(BaseModel):
|
|
492
|
-
ref_id: str = Field(alias="refId")
|
|
493
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
494
|
-
description: Optional[str] = Field(default=None)
|
|
495
|
-
additional_meta_data: Optional[Any] = Field(
|
|
496
|
-
alias="additionalMetaData", default=None
|
|
497
|
-
)
|
|
498
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
502
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
503
|
-
alias="downgradePlan", default=None
|
|
504
|
-
)
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
508
|
-
ref_id: str = Field(alias="refId")
|
|
509
|
-
display_name: str = Field(alias="displayName")
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
513
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
514
|
-
display_name: str = Field(alias="displayName")
|
|
515
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
516
|
-
default=None
|
|
517
|
-
)
|
|
518
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
522
|
-
pass
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
526
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
527
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
class PlanFragment(BaseModel):
|
|
531
|
-
id: Any
|
|
532
|
-
ref_id: str = Field(alias="refId")
|
|
533
|
-
display_name: str = Field(alias="displayName")
|
|
534
|
-
description: Optional[str] = Field(default=None)
|
|
535
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
536
|
-
version_number: int = Field(alias="versionNumber")
|
|
537
|
-
additional_meta_data: Optional[Any] = Field(
|
|
538
|
-
alias="additionalMetaData", default=None
|
|
539
|
-
)
|
|
540
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
541
|
-
alias="hiddenFromWidgets", default=None
|
|
542
|
-
)
|
|
543
|
-
product: "PlanFragmentProduct"
|
|
544
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
545
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
546
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
547
|
-
alias="inheritedEntitlements", default=None
|
|
548
|
-
)
|
|
549
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
550
|
-
alias="compatibleAddons", default=None
|
|
551
|
-
)
|
|
552
|
-
compatible_package_groups: Optional[
|
|
553
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
554
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
555
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
556
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
557
|
-
alias="overagePrices", default=None
|
|
558
|
-
)
|
|
559
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
560
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
561
|
-
alias="defaultTrialConfig", default=None
|
|
562
|
-
)
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
class PlanFragmentProduct(ProductFragment):
|
|
566
|
-
pass
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
570
|
-
ref_id: str = Field(alias="refId")
|
|
571
|
-
display_name: str = Field(alias="displayName")
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
575
|
-
pass
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
579
|
-
pass
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
583
|
-
pass
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
587
|
-
pass
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
class PlanFragmentPrices(PriceFragment):
|
|
591
|
-
pass
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
595
|
-
pass
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
599
|
-
duration: float
|
|
600
|
-
units: TrialPeriodUnits
|
|
601
|
-
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
602
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
603
|
-
alias="trialEndBehavior", default=None
|
|
604
|
-
)
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
608
|
-
limit: float
|
|
609
|
-
|
|
610
|
-
|
|
611
402
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
612
403
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
613
404
|
alias="subscriptionScheduleType"
|
|
@@ -770,50 +561,174 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
770
561
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
771
562
|
|
|
772
563
|
|
|
773
|
-
class SubscriptionInvoiceFragment(BaseModel):
|
|
774
|
-
billing_id: str = Field(alias="billingId")
|
|
775
|
-
status: SubscriptionInvoiceStatus
|
|
776
|
-
created_at: Any = Field(alias="createdAt")
|
|
777
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
778
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
779
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
780
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
781
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
782
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
783
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
784
|
-
alias="billingReason", default=None
|
|
785
|
-
)
|
|
786
|
-
currency: Optional[str] = Field(default=None)
|
|
787
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
788
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
789
|
-
alias="subTotalExcludingTax", default=None
|
|
790
|
-
)
|
|
791
|
-
total: Optional[float] = Field(default=None)
|
|
792
|
-
total_excluding_tax: Optional[float] = Field(
|
|
793
|
-
alias="totalExcludingTax", default=None
|
|
794
|
-
)
|
|
795
|
-
tax: Optional[float] = Field(default=None)
|
|
796
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
797
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
564
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
565
|
+
billing_id: str = Field(alias="billingId")
|
|
566
|
+
status: SubscriptionInvoiceStatus
|
|
567
|
+
created_at: Any = Field(alias="createdAt")
|
|
568
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
569
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
570
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
571
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
572
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
573
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
574
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
575
|
+
alias="billingReason", default=None
|
|
576
|
+
)
|
|
577
|
+
currency: Optional[str] = Field(default=None)
|
|
578
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
579
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
580
|
+
alias="subTotalExcludingTax", default=None
|
|
581
|
+
)
|
|
582
|
+
total: Optional[float] = Field(default=None)
|
|
583
|
+
total_excluding_tax: Optional[float] = Field(
|
|
584
|
+
alias="totalExcludingTax", default=None
|
|
585
|
+
)
|
|
586
|
+
tax: Optional[float] = Field(default=None)
|
|
587
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
588
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
589
|
+
|
|
590
|
+
|
|
591
|
+
class TotalPriceFragment(BaseModel):
|
|
592
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
593
|
+
total: "TotalPriceFragmentTotal"
|
|
594
|
+
|
|
595
|
+
|
|
596
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
597
|
+
amount: float
|
|
598
|
+
currency: Currency
|
|
599
|
+
|
|
600
|
+
|
|
601
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
602
|
+
amount: float
|
|
603
|
+
currency: Currency
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
607
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
class ProductFragment(BaseModel):
|
|
611
|
+
ref_id: str = Field(alias="refId")
|
|
612
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
613
|
+
description: Optional[str] = Field(default=None)
|
|
614
|
+
additional_meta_data: Optional[Any] = Field(
|
|
615
|
+
alias="additionalMetaData", default=None
|
|
616
|
+
)
|
|
617
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
618
|
+
|
|
619
|
+
|
|
620
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
621
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
622
|
+
alias="downgradePlan", default=None
|
|
623
|
+
)
|
|
624
|
+
|
|
625
|
+
|
|
626
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
627
|
+
ref_id: str = Field(alias="refId")
|
|
628
|
+
display_name: str = Field(alias="displayName")
|
|
629
|
+
|
|
630
|
+
|
|
631
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
632
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
633
|
+
display_name: str = Field(alias="displayName")
|
|
634
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
635
|
+
default=None
|
|
636
|
+
)
|
|
637
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
638
|
+
|
|
639
|
+
|
|
640
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
641
|
+
pass
|
|
642
|
+
|
|
643
|
+
|
|
644
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
645
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
646
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
647
|
+
|
|
648
|
+
|
|
649
|
+
class PlanFragment(BaseModel):
|
|
650
|
+
id: Any
|
|
651
|
+
ref_id: str = Field(alias="refId")
|
|
652
|
+
display_name: str = Field(alias="displayName")
|
|
653
|
+
description: Optional[str] = Field(default=None)
|
|
654
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
655
|
+
version_number: int = Field(alias="versionNumber")
|
|
656
|
+
additional_meta_data: Optional[Any] = Field(
|
|
657
|
+
alias="additionalMetaData", default=None
|
|
658
|
+
)
|
|
659
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
660
|
+
alias="hiddenFromWidgets", default=None
|
|
661
|
+
)
|
|
662
|
+
product: "PlanFragmentProduct"
|
|
663
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
664
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
665
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
666
|
+
alias="inheritedEntitlements", default=None
|
|
667
|
+
)
|
|
668
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
669
|
+
alias="compatibleAddons", default=None
|
|
670
|
+
)
|
|
671
|
+
compatible_package_groups: Optional[
|
|
672
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
673
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
674
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
675
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
676
|
+
alias="overagePrices", default=None
|
|
677
|
+
)
|
|
678
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
679
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
680
|
+
alias="defaultTrialConfig", default=None
|
|
681
|
+
)
|
|
682
|
+
|
|
683
|
+
|
|
684
|
+
class PlanFragmentProduct(ProductFragment):
|
|
685
|
+
pass
|
|
686
|
+
|
|
687
|
+
|
|
688
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
689
|
+
ref_id: str = Field(alias="refId")
|
|
690
|
+
display_name: str = Field(alias="displayName")
|
|
691
|
+
|
|
692
|
+
|
|
693
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
694
|
+
pass
|
|
695
|
+
|
|
696
|
+
|
|
697
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
698
|
+
pass
|
|
699
|
+
|
|
700
|
+
|
|
701
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
702
|
+
pass
|
|
703
|
+
|
|
704
|
+
|
|
705
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
706
|
+
pass
|
|
798
707
|
|
|
799
708
|
|
|
800
|
-
class
|
|
801
|
-
|
|
709
|
+
class PlanFragmentPrices(PriceFragment):
|
|
710
|
+
pass
|
|
802
711
|
|
|
803
712
|
|
|
804
|
-
class
|
|
805
|
-
|
|
806
|
-
total: "TotalPriceFragmentTotal"
|
|
713
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
714
|
+
pass
|
|
807
715
|
|
|
808
716
|
|
|
809
|
-
class
|
|
810
|
-
|
|
811
|
-
|
|
717
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
718
|
+
duration: float
|
|
719
|
+
units: TrialPeriodUnits
|
|
720
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
721
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
722
|
+
alias="trialEndBehavior", default=None
|
|
723
|
+
)
|
|
812
724
|
|
|
813
725
|
|
|
814
|
-
class
|
|
815
|
-
|
|
816
|
-
|
|
726
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
727
|
+
limit: float
|
|
728
|
+
|
|
729
|
+
|
|
730
|
+
class CustomerResourceFragment(BaseModel):
|
|
731
|
+
resource_id: str = Field(alias="resourceId")
|
|
817
732
|
|
|
818
733
|
|
|
819
734
|
class SubscriptionFragment(BaseModel):
|
|
@@ -925,6 +840,91 @@ class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragm
|
|
|
925
840
|
pass
|
|
926
841
|
|
|
927
842
|
|
|
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")
|
|
@@ -1271,23 +1271,6 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1271
1271
|
pass
|
|
1272
1272
|
|
|
1273
1273
|
|
|
1274
|
-
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1275
|
-
display_name: str = Field(alias="displayName")
|
|
1276
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1277
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1278
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1279
|
-
period: PromotionalEntitlementPeriod
|
|
1280
|
-
start_date: Any = Field(alias="startDate")
|
|
1281
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1285
|
-
addon_id: str = Field(alias="addonId")
|
|
1286
|
-
description: Optional[str] = Field(default=None)
|
|
1287
|
-
display_name: str = Field(alias="displayName")
|
|
1288
|
-
quantity: int
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
1274
|
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1292
1275
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1293
1276
|
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
@@ -1323,6 +1306,13 @@ class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
|
1323
1306
|
)
|
|
1324
1307
|
|
|
1325
1308
|
|
|
1309
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1310
|
+
addon_id: str = Field(alias="addonId")
|
|
1311
|
+
description: Optional[str] = Field(default=None)
|
|
1312
|
+
display_name: str = Field(alias="displayName")
|
|
1313
|
+
quantity: int
|
|
1314
|
+
|
|
1315
|
+
|
|
1326
1316
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1327
1317
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1328
1318
|
alias="subscriptionScheduleType"
|
|
@@ -1596,6 +1586,16 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1596
1586
|
pass
|
|
1597
1587
|
|
|
1598
1588
|
|
|
1589
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1590
|
+
display_name: str = Field(alias="displayName")
|
|
1591
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1592
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1593
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1594
|
+
period: PromotionalEntitlementPeriod
|
|
1595
|
+
start_date: Any = Field(alias="startDate")
|
|
1596
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1597
|
+
|
|
1598
|
+
|
|
1599
1599
|
class CustomerPortalFragment(BaseModel):
|
|
1600
1600
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1601
1601
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -2872,40 +2872,40 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2872
2872
|
|
|
2873
2873
|
|
|
2874
2874
|
AddonDependencyFragment.model_rebuild()
|
|
2875
|
-
PackageEntitlementFragment.model_rebuild()
|
|
2876
2875
|
PriceTierFragment.model_rebuild()
|
|
2877
|
-
PriceFragment.model_rebuild()
|
|
2878
2876
|
OveragePriceFragment.model_rebuild()
|
|
2877
|
+
PriceFragment.model_rebuild()
|
|
2878
|
+
PackageEntitlementFragment.model_rebuild()
|
|
2879
2879
|
AddonFragment.model_rebuild()
|
|
2880
|
-
FeatureFragment.model_rebuild()
|
|
2881
|
-
EntitlementFragment.model_rebuild()
|
|
2882
|
-
CustomerResourceFragment.model_rebuild()
|
|
2883
2880
|
SlimCustomerFragment.model_rebuild()
|
|
2884
2881
|
SubscriptionFutureUpdateData.model_rebuild()
|
|
2885
|
-
ProductFragment.model_rebuild()
|
|
2886
|
-
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2887
|
-
PlanFragment.model_rebuild()
|
|
2888
2882
|
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2889
2883
|
SubscriptionInvoiceFragment.model_rebuild()
|
|
2890
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2891
2884
|
TotalPriceFragment.model_rebuild()
|
|
2885
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2886
|
+
ProductFragment.model_rebuild()
|
|
2887
|
+
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2888
|
+
PlanFragment.model_rebuild()
|
|
2889
|
+
CustomerResourceFragment.model_rebuild()
|
|
2892
2890
|
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
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2905
|
-
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2906
2904
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2905
|
+
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2907
2906
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2908
2907
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2908
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2909
2909
|
CustomerPortalFragment.model_rebuild()
|
|
2910
2910
|
CustomerStatisticsFragment.model_rebuild()
|
|
2911
2911
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
|
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=2MIh7g7PjqixNbmzG1DvjV3Hk74STdUIlE0HFok575I,3770
|
|
|
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=ZJj1_h8vczLXwF6161BxWCX4_V-E_LFG4-a-Kg9RIjM,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.17.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
165
|
+
stigg_api_client_v2-3.17.0.dist-info/METADATA,sha256=luo3Y24PkwpHUBwgo6hretpJgHzgd6UJigjI7ObpFzY,2257
|
|
166
|
+
stigg_api_client_v2-3.17.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
167
|
+
stigg_api_client_v2-3.17.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|