stigg-api-client-v2 3.124.1__py3-none-any.whl → 3.127.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of stigg-api-client-v2 might be problematic. Click here for more details.
- stigg/generated/fragments.py +294 -294
- stigg/generated/input_types.py +1 -1
- {stigg_api_client_v2-3.124.1.dist-info → stigg_api_client_v2-3.127.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-3.124.1.dist-info → stigg_api_client_v2-3.127.0.dist-info}/RECORD +6 -6
- {stigg_api_client_v2-3.124.1.dist-info → stigg_api_client_v2-3.127.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-3.124.1.dist-info → stigg_api_client_v2-3.127.0.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -82,42 +82,29 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
82
82
|
currency: Currency
|
|
83
83
|
|
|
84
84
|
|
|
85
|
-
class
|
|
85
|
+
class OveragePriceFragment(BaseModel):
|
|
86
86
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
87
87
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
88
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
89
88
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
90
|
-
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
91
|
-
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
92
89
|
billing_country_code: Optional[str] = Field(
|
|
93
90
|
alias="billingCountryCode", default=None
|
|
94
91
|
)
|
|
95
|
-
price: Optional["
|
|
96
|
-
credit_rate: Optional["PriceFragmentCreditRate"] = Field(
|
|
97
|
-
alias="creditRate", default=None
|
|
98
|
-
)
|
|
92
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
99
93
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
100
|
-
tiers: Optional[List["
|
|
101
|
-
feature: Optional["
|
|
102
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
94
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
95
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
103
96
|
|
|
104
97
|
|
|
105
|
-
class
|
|
98
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
106
99
|
amount: float
|
|
107
100
|
currency: Currency
|
|
108
101
|
|
|
109
102
|
|
|
110
|
-
class
|
|
111
|
-
amount: float
|
|
112
|
-
custom_currency_id: Optional[Any] = Field(alias="customCurrencyId", default=None)
|
|
113
|
-
currency_id: str = Field(alias="currencyId")
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
class PriceFragmentTiers(PriceTierFragment):
|
|
103
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
117
104
|
pass
|
|
118
105
|
|
|
119
106
|
|
|
120
|
-
class
|
|
107
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
121
108
|
ref_id: str = Field(alias="refId")
|
|
122
109
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
123
110
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -162,29 +149,42 @@ class PackageEntitlementFragmentFeature(BaseModel):
|
|
|
162
149
|
)
|
|
163
150
|
|
|
164
151
|
|
|
165
|
-
class
|
|
152
|
+
class PriceFragment(BaseModel):
|
|
166
153
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
167
154
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
155
|
+
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
168
156
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
157
|
+
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
158
|
+
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
169
159
|
billing_country_code: Optional[str] = Field(
|
|
170
160
|
alias="billingCountryCode", default=None
|
|
171
161
|
)
|
|
172
|
-
price: Optional["
|
|
162
|
+
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
163
|
+
credit_rate: Optional["PriceFragmentCreditRate"] = Field(
|
|
164
|
+
alias="creditRate", default=None
|
|
165
|
+
)
|
|
173
166
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
174
|
-
tiers: Optional[List["
|
|
175
|
-
feature: Optional["
|
|
167
|
+
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
168
|
+
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
169
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
176
170
|
|
|
177
171
|
|
|
178
|
-
class
|
|
172
|
+
class PriceFragmentPrice(BaseModel):
|
|
179
173
|
amount: float
|
|
180
174
|
currency: Currency
|
|
181
175
|
|
|
182
176
|
|
|
183
|
-
class
|
|
177
|
+
class PriceFragmentCreditRate(BaseModel):
|
|
178
|
+
amount: float
|
|
179
|
+
custom_currency_id: Optional[Any] = Field(alias="customCurrencyId", default=None)
|
|
180
|
+
currency_id: str = Field(alias="currencyId")
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
class PriceFragmentTiers(PriceTierFragment):
|
|
184
184
|
pass
|
|
185
185
|
|
|
186
186
|
|
|
187
|
-
class
|
|
187
|
+
class PriceFragmentFeature(BaseModel):
|
|
188
188
|
ref_id: str = Field(alias="refId")
|
|
189
189
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
190
190
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -232,19 +232,98 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
232
232
|
pass
|
|
233
233
|
|
|
234
234
|
|
|
235
|
-
class
|
|
236
|
-
|
|
237
|
-
|
|
235
|
+
class FeatureFragment(BaseModel):
|
|
236
|
+
typename__: str = Field(alias="__typename")
|
|
237
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
238
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
239
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
240
|
+
feature_units_plural: Optional[str] = Field(
|
|
241
|
+
alias="featureUnitsPlural", default=None
|
|
242
|
+
)
|
|
243
|
+
description: Optional[str] = Field(default=None)
|
|
244
|
+
display_name: str = Field(alias="displayName")
|
|
245
|
+
ref_id: str = Field(alias="refId")
|
|
246
|
+
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
247
|
+
alias="unitTransformation", default=None
|
|
248
|
+
)
|
|
238
249
|
|
|
239
250
|
|
|
240
|
-
class
|
|
241
|
-
|
|
242
|
-
|
|
251
|
+
class FeatureFragmentUnitTransformation(BaseModel):
|
|
252
|
+
divide: float
|
|
253
|
+
round: UnitTransformationRound
|
|
243
254
|
|
|
244
255
|
|
|
245
|
-
class
|
|
256
|
+
class EntitlementFragment(BaseModel):
|
|
257
|
+
typename__: str = Field(alias="__typename")
|
|
258
|
+
is_granted: bool = Field(alias="isGranted")
|
|
259
|
+
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
260
|
+
alias="accessDeniedReason", default=None
|
|
261
|
+
)
|
|
262
|
+
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
263
|
+
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
264
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
265
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
266
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
267
|
+
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
268
|
+
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
269
|
+
requested_values: Optional[List[str]] = Field(alias="requestedValues", default=None)
|
|
270
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
271
|
+
entitlement_updated_at: Optional[Any] = Field(
|
|
272
|
+
alias="entitlementUpdatedAt", default=None
|
|
273
|
+
)
|
|
274
|
+
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
275
|
+
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
276
|
+
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
277
|
+
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
278
|
+
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
279
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
280
|
+
alias="resetPeriod", default=None
|
|
281
|
+
)
|
|
282
|
+
reset_period_configuration: Optional[
|
|
283
|
+
Annotated[
|
|
284
|
+
Union[
|
|
285
|
+
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
286
|
+
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
287
|
+
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
288
|
+
],
|
|
289
|
+
Field(discriminator="typename__"),
|
|
290
|
+
]
|
|
291
|
+
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
292
|
+
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
293
|
+
credit_rate: Optional["EntitlementFragmentCreditRate"] = Field(
|
|
294
|
+
alias="creditRate", default=None
|
|
295
|
+
)
|
|
296
|
+
valid_until: Optional[float] = Field(alias="validUntil", default=None)
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
300
|
+
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
301
|
+
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
302
|
+
alias="monthlyAccordingTo", default=None
|
|
303
|
+
)
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
307
|
+
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
308
|
+
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
309
|
+
alias="weeklyAccordingTo", default=None
|
|
310
|
+
)
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
314
|
+
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
315
|
+
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
316
|
+
alias="yearlyAccordingTo", default=None
|
|
317
|
+
)
|
|
318
|
+
|
|
319
|
+
|
|
320
|
+
class EntitlementFragmentFeature(FeatureFragment):
|
|
321
|
+
pass
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
class EntitlementFragmentCreditRate(BaseModel):
|
|
246
325
|
amount: float
|
|
247
|
-
|
|
326
|
+
currency_id: str = Field(alias="currencyId")
|
|
248
327
|
|
|
249
328
|
|
|
250
329
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
@@ -409,42 +488,6 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
409
488
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
410
489
|
|
|
411
490
|
|
|
412
|
-
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
413
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
class SubscriptionInvoiceFragment(BaseModel):
|
|
417
|
-
billing_id: str = Field(alias="billingId")
|
|
418
|
-
status: SubscriptionInvoiceStatus
|
|
419
|
-
created_at: Any = Field(alias="createdAt")
|
|
420
|
-
due_date: Optional[Any] = Field(alias="dueDate", default=None)
|
|
421
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
422
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
423
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
424
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
425
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
426
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
427
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
428
|
-
alias="billingReason", default=None
|
|
429
|
-
)
|
|
430
|
-
currency: Optional[str] = Field(default=None)
|
|
431
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
432
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
433
|
-
alias="subTotalExcludingTax", default=None
|
|
434
|
-
)
|
|
435
|
-
total: Optional[float] = Field(default=None)
|
|
436
|
-
total_excluding_tax: Optional[float] = Field(
|
|
437
|
-
alias="totalExcludingTax", default=None
|
|
438
|
-
)
|
|
439
|
-
tax: Optional[float] = Field(default=None)
|
|
440
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
441
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
class CustomerResourceFragment(BaseModel):
|
|
445
|
-
resource_id: str = Field(alias="resourceId")
|
|
446
|
-
|
|
447
|
-
|
|
448
491
|
class SubscriptionFutureUpdateData(BaseModel):
|
|
449
492
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
450
493
|
alias="subscriptionScheduleType"
|
|
@@ -599,6 +642,42 @@ class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(Bas
|
|
|
599
642
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
600
643
|
|
|
601
644
|
|
|
645
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
646
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
647
|
+
|
|
648
|
+
|
|
649
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
650
|
+
billing_id: str = Field(alias="billingId")
|
|
651
|
+
status: SubscriptionInvoiceStatus
|
|
652
|
+
created_at: Any = Field(alias="createdAt")
|
|
653
|
+
due_date: Optional[Any] = Field(alias="dueDate", default=None)
|
|
654
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
655
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
656
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
657
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
658
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
659
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
660
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
661
|
+
alias="billingReason", default=None
|
|
662
|
+
)
|
|
663
|
+
currency: Optional[str] = Field(default=None)
|
|
664
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
665
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
666
|
+
alias="subTotalExcludingTax", default=None
|
|
667
|
+
)
|
|
668
|
+
total: Optional[float] = Field(default=None)
|
|
669
|
+
total_excluding_tax: Optional[float] = Field(
|
|
670
|
+
alias="totalExcludingTax", default=None
|
|
671
|
+
)
|
|
672
|
+
tax: Optional[float] = Field(default=None)
|
|
673
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
674
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
675
|
+
|
|
676
|
+
|
|
677
|
+
class CustomerResourceFragment(BaseModel):
|
|
678
|
+
resource_id: str = Field(alias="resourceId")
|
|
679
|
+
|
|
680
|
+
|
|
602
681
|
class ProductFragment(BaseModel):
|
|
603
682
|
ref_id: str = Field(alias="refId")
|
|
604
683
|
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
@@ -719,6 +798,21 @@ class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
|
719
798
|
limit: float
|
|
720
799
|
|
|
721
800
|
|
|
801
|
+
class TotalPriceFragment(BaseModel):
|
|
802
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
803
|
+
total: "TotalPriceFragmentTotal"
|
|
804
|
+
|
|
805
|
+
|
|
806
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
807
|
+
amount: float
|
|
808
|
+
currency: Currency
|
|
809
|
+
|
|
810
|
+
|
|
811
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
812
|
+
amount: float
|
|
813
|
+
currency: Currency
|
|
814
|
+
|
|
815
|
+
|
|
722
816
|
class SlimCustomerFragment(BaseModel):
|
|
723
817
|
id: Any
|
|
724
818
|
name: Optional[str] = Field(default=None)
|
|
@@ -811,132 +905,38 @@ class SubscriptionFragmentPrices(BaseModel):
|
|
|
811
905
|
price: Optional["SubscriptionFragmentPricesPrice"] = Field(default=None)
|
|
812
906
|
|
|
813
907
|
|
|
814
|
-
class SubscriptionFragmentPricesPrice(PriceFragment):
|
|
815
|
-
pass
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
class SubscriptionFragmentTotalPrice(TotalPriceFragment):
|
|
819
|
-
pass
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
class SubscriptionFragmentPlan(PlanFragment):
|
|
823
|
-
pass
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
class SubscriptionFragmentAddons(BaseModel):
|
|
827
|
-
id: Any
|
|
828
|
-
quantity: float
|
|
829
|
-
addon: "SubscriptionFragmentAddonsAddon"
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
class SubscriptionFragmentAddonsAddon(AddonFragment):
|
|
833
|
-
pass
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
class SubscriptionFragmentScheduledUpdates(SubscriptionScheduledUpdateData):
|
|
837
|
-
pass
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
class SubscriptionFragmentFutureUpdates(SubscriptionFutureUpdateData):
|
|
841
|
-
pass
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragment):
|
|
845
|
-
pass
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
class FeatureFragment(BaseModel):
|
|
849
|
-
typename__: str = Field(alias="__typename")
|
|
850
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
851
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
852
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
853
|
-
feature_units_plural: Optional[str] = Field(
|
|
854
|
-
alias="featureUnitsPlural", default=None
|
|
855
|
-
)
|
|
856
|
-
description: Optional[str] = Field(default=None)
|
|
857
|
-
display_name: str = Field(alias="displayName")
|
|
858
|
-
ref_id: str = Field(alias="refId")
|
|
859
|
-
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
860
|
-
alias="unitTransformation", default=None
|
|
861
|
-
)
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
class FeatureFragmentUnitTransformation(BaseModel):
|
|
865
|
-
divide: float
|
|
866
|
-
round: UnitTransformationRound
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
class EntitlementFragment(BaseModel):
|
|
870
|
-
typename__: str = Field(alias="__typename")
|
|
871
|
-
is_granted: bool = Field(alias="isGranted")
|
|
872
|
-
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
873
|
-
alias="accessDeniedReason", default=None
|
|
874
|
-
)
|
|
875
|
-
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
876
|
-
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
877
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
878
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
879
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
880
|
-
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
881
|
-
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
882
|
-
requested_values: Optional[List[str]] = Field(alias="requestedValues", default=None)
|
|
883
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
884
|
-
entitlement_updated_at: Optional[Any] = Field(
|
|
885
|
-
alias="entitlementUpdatedAt", default=None
|
|
886
|
-
)
|
|
887
|
-
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
888
|
-
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
889
|
-
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
890
|
-
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
891
|
-
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
892
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
893
|
-
alias="resetPeriod", default=None
|
|
894
|
-
)
|
|
895
|
-
reset_period_configuration: Optional[
|
|
896
|
-
Annotated[
|
|
897
|
-
Union[
|
|
898
|
-
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
899
|
-
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
900
|
-
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
901
|
-
],
|
|
902
|
-
Field(discriminator="typename__"),
|
|
903
|
-
]
|
|
904
|
-
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
905
|
-
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
906
|
-
credit_rate: Optional["EntitlementFragmentCreditRate"] = Field(
|
|
907
|
-
alias="creditRate", default=None
|
|
908
|
-
)
|
|
909
|
-
valid_until: Optional[float] = Field(alias="validUntil", default=None)
|
|
908
|
+
class SubscriptionFragmentPricesPrice(PriceFragment):
|
|
909
|
+
pass
|
|
910
910
|
|
|
911
911
|
|
|
912
|
-
class
|
|
913
|
-
|
|
914
|
-
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
915
|
-
alias="monthlyAccordingTo", default=None
|
|
916
|
-
)
|
|
912
|
+
class SubscriptionFragmentTotalPrice(TotalPriceFragment):
|
|
913
|
+
pass
|
|
917
914
|
|
|
918
915
|
|
|
919
|
-
class
|
|
920
|
-
|
|
921
|
-
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
922
|
-
alias="weeklyAccordingTo", default=None
|
|
923
|
-
)
|
|
916
|
+
class SubscriptionFragmentPlan(PlanFragment):
|
|
917
|
+
pass
|
|
924
918
|
|
|
925
919
|
|
|
926
|
-
class
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
)
|
|
920
|
+
class SubscriptionFragmentAddons(BaseModel):
|
|
921
|
+
id: Any
|
|
922
|
+
quantity: float
|
|
923
|
+
addon: "SubscriptionFragmentAddonsAddon"
|
|
931
924
|
|
|
932
925
|
|
|
933
|
-
class
|
|
926
|
+
class SubscriptionFragmentAddonsAddon(AddonFragment):
|
|
934
927
|
pass
|
|
935
928
|
|
|
936
929
|
|
|
937
|
-
class
|
|
938
|
-
|
|
939
|
-
|
|
930
|
+
class SubscriptionFragmentScheduledUpdates(SubscriptionScheduledUpdateData):
|
|
931
|
+
pass
|
|
932
|
+
|
|
933
|
+
|
|
934
|
+
class SubscriptionFragmentFutureUpdates(SubscriptionFutureUpdateData):
|
|
935
|
+
pass
|
|
936
|
+
|
|
937
|
+
|
|
938
|
+
class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragment):
|
|
939
|
+
pass
|
|
940
940
|
|
|
941
941
|
|
|
942
942
|
class ApplySubscriptionFragment(BaseModel):
|
|
@@ -1016,35 +1016,6 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
1016
1016
|
)
|
|
1017
1017
|
|
|
1018
1018
|
|
|
1019
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
1020
|
-
status: PromotionalEntitlementStatus
|
|
1021
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1022
|
-
feature_id: Any = Field(alias="featureId")
|
|
1023
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1024
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1025
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1026
|
-
alias="resetPeriod", default=None
|
|
1027
|
-
)
|
|
1028
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1029
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1030
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1034
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1035
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1036
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1037
|
-
feature_units_plural: Optional[str] = Field(
|
|
1038
|
-
alias="featureUnitsPlural", default=None
|
|
1039
|
-
)
|
|
1040
|
-
display_name: str = Field(alias="displayName")
|
|
1041
|
-
description: Optional[str] = Field(default=None)
|
|
1042
|
-
ref_id: str = Field(alias="refId")
|
|
1043
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1044
|
-
alias="additionalMetaData", default=None
|
|
1045
|
-
)
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
1019
|
class CouponFragment(BaseModel):
|
|
1049
1020
|
id: Any
|
|
1050
1021
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1079,6 +1050,35 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1079
1050
|
status: SyncStatus
|
|
1080
1051
|
|
|
1081
1052
|
|
|
1053
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
1054
|
+
status: PromotionalEntitlementStatus
|
|
1055
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1056
|
+
feature_id: Any = Field(alias="featureId")
|
|
1057
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1058
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1059
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1060
|
+
alias="resetPeriod", default=None
|
|
1061
|
+
)
|
|
1062
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1063
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1064
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1065
|
+
|
|
1066
|
+
|
|
1067
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1068
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1069
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1070
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1071
|
+
feature_units_plural: Optional[str] = Field(
|
|
1072
|
+
alias="featureUnitsPlural", default=None
|
|
1073
|
+
)
|
|
1074
|
+
display_name: str = Field(alias="displayName")
|
|
1075
|
+
description: Optional[str] = Field(default=None)
|
|
1076
|
+
ref_id: str = Field(alias="refId")
|
|
1077
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1078
|
+
alias="additionalMetaData", default=None
|
|
1079
|
+
)
|
|
1080
|
+
|
|
1081
|
+
|
|
1082
1082
|
class CustomerFragment(SlimCustomerFragment):
|
|
1083
1083
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1084
1084
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1452,6 +1452,41 @@ class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
|
1452
1452
|
quantity: int
|
|
1453
1453
|
|
|
1454
1454
|
|
|
1455
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1456
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1457
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1458
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1459
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1460
|
+
default=None
|
|
1461
|
+
)
|
|
1462
|
+
credit_rate: Optional["CustomerPortalSubscriptionPriceFragmentCreditRate"] = Field(
|
|
1463
|
+
alias="creditRate", default=None
|
|
1464
|
+
)
|
|
1465
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1466
|
+
default=None
|
|
1467
|
+
)
|
|
1468
|
+
|
|
1469
|
+
|
|
1470
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1471
|
+
amount: float
|
|
1472
|
+
currency: Currency
|
|
1473
|
+
|
|
1474
|
+
|
|
1475
|
+
class CustomerPortalSubscriptionPriceFragmentCreditRate(BaseModel):
|
|
1476
|
+
amount: float
|
|
1477
|
+
currency_id: str = Field(alias="currencyId")
|
|
1478
|
+
|
|
1479
|
+
|
|
1480
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1481
|
+
id: Any
|
|
1482
|
+
ref_id: str = Field(alias="refId")
|
|
1483
|
+
display_name: str = Field(alias="displayName")
|
|
1484
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1485
|
+
feature_units_plural: Optional[str] = Field(
|
|
1486
|
+
alias="featureUnitsPlural", default=None
|
|
1487
|
+
)
|
|
1488
|
+
|
|
1489
|
+
|
|
1455
1490
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1456
1491
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1457
1492
|
alias="subscriptionScheduleType"
|
|
@@ -1621,41 +1656,6 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1621
1656
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1622
1657
|
|
|
1623
1658
|
|
|
1624
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1625
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1626
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1627
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1628
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1629
|
-
default=None
|
|
1630
|
-
)
|
|
1631
|
-
credit_rate: Optional["CustomerPortalSubscriptionPriceFragmentCreditRate"] = Field(
|
|
1632
|
-
alias="creditRate", default=None
|
|
1633
|
-
)
|
|
1634
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1635
|
-
default=None
|
|
1636
|
-
)
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1640
|
-
amount: float
|
|
1641
|
-
currency: Currency
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
class CustomerPortalSubscriptionPriceFragmentCreditRate(BaseModel):
|
|
1645
|
-
amount: float
|
|
1646
|
-
currency_id: str = Field(alias="currencyId")
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1650
|
-
id: Any
|
|
1651
|
-
ref_id: str = Field(alias="refId")
|
|
1652
|
-
display_name: str = Field(alias="displayName")
|
|
1653
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1654
|
-
feature_units_plural: Optional[str] = Field(
|
|
1655
|
-
alias="featureUnitsPlural", default=None
|
|
1656
|
-
)
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
1659
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1660
1660
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1661
1661
|
plan_id: str = Field(alias="planId")
|
|
@@ -1987,6 +1987,41 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1987
1987
|
description: Optional[str] = Field(default=None)
|
|
1988
1988
|
|
|
1989
1989
|
|
|
1990
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1991
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1992
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1993
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1994
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1995
|
+
alias="resetPeriod", default=None
|
|
1996
|
+
)
|
|
1997
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1998
|
+
alias="hiddenFromWidgets", default=None
|
|
1999
|
+
)
|
|
2000
|
+
display_name_override: Optional[str] = Field(
|
|
2001
|
+
alias="displayNameOverride", default=None
|
|
2002
|
+
)
|
|
2003
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
2004
|
+
is_granted: bool = Field(alias="isGranted")
|
|
2005
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
2006
|
+
default=None
|
|
2007
|
+
)
|
|
2008
|
+
|
|
2009
|
+
|
|
2010
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
2011
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
2012
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
2013
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
2014
|
+
feature_units_plural: Optional[str] = Field(
|
|
2015
|
+
alias="featureUnitsPlural", default=None
|
|
2016
|
+
)
|
|
2017
|
+
display_name: str = Field(alias="displayName")
|
|
2018
|
+
description: Optional[str] = Field(default=None)
|
|
2019
|
+
ref_id: str = Field(alias="refId")
|
|
2020
|
+
additional_meta_data: Optional[Any] = Field(
|
|
2021
|
+
alias="additionalMetaData", default=None
|
|
2022
|
+
)
|
|
2023
|
+
|
|
2024
|
+
|
|
1990
2025
|
class MockPaywallPriceFragment(BaseModel):
|
|
1991
2026
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1992
2027
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -2029,41 +2064,6 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
2029
2064
|
display_name: str = Field(alias="displayName")
|
|
2030
2065
|
|
|
2031
2066
|
|
|
2032
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
2033
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
2034
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
2035
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
2036
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
2037
|
-
alias="resetPeriod", default=None
|
|
2038
|
-
)
|
|
2039
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
2040
|
-
alias="hiddenFromWidgets", default=None
|
|
2041
|
-
)
|
|
2042
|
-
display_name_override: Optional[str] = Field(
|
|
2043
|
-
alias="displayNameOverride", default=None
|
|
2044
|
-
)
|
|
2045
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
2046
|
-
is_granted: bool = Field(alias="isGranted")
|
|
2047
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
2048
|
-
default=None
|
|
2049
|
-
)
|
|
2050
|
-
|
|
2051
|
-
|
|
2052
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
2053
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
2054
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
2055
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
2056
|
-
feature_units_plural: Optional[str] = Field(
|
|
2057
|
-
alias="featureUnitsPlural", default=None
|
|
2058
|
-
)
|
|
2059
|
-
display_name: str = Field(alias="displayName")
|
|
2060
|
-
description: Optional[str] = Field(default=None)
|
|
2061
|
-
ref_id: str = Field(alias="refId")
|
|
2062
|
-
additional_meta_data: Optional[Any] = Field(
|
|
2063
|
-
alias="additionalMetaData", default=None
|
|
2064
|
-
)
|
|
2065
|
-
|
|
2066
|
-
|
|
2067
2067
|
class MockPaywallAddonFragment(BaseModel):
|
|
2068
2068
|
ref_id: str = Field(alias="refId")
|
|
2069
2069
|
display_name: str = Field(alias="displayName")
|
|
@@ -3042,29 +3042,29 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
3042
3042
|
|
|
3043
3043
|
AddonDependencyFragment.model_rebuild()
|
|
3044
3044
|
PriceTierFragment.model_rebuild()
|
|
3045
|
-
PriceFragment.model_rebuild()
|
|
3046
|
-
PackageEntitlementFragment.model_rebuild()
|
|
3047
3045
|
OveragePriceFragment.model_rebuild()
|
|
3046
|
+
PackageEntitlementFragment.model_rebuild()
|
|
3047
|
+
PriceFragment.model_rebuild()
|
|
3048
3048
|
AddonFragment.model_rebuild()
|
|
3049
|
-
|
|
3049
|
+
FeatureFragment.model_rebuild()
|
|
3050
|
+
EntitlementFragment.model_rebuild()
|
|
3050
3051
|
SubscriptionScheduledUpdateData.model_rebuild()
|
|
3052
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
3051
3053
|
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
3052
3054
|
SubscriptionInvoiceFragment.model_rebuild()
|
|
3053
3055
|
CustomerResourceFragment.model_rebuild()
|
|
3054
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
3055
3056
|
ProductFragment.model_rebuild()
|
|
3056
3057
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
3057
3058
|
PlanFragment.model_rebuild()
|
|
3059
|
+
TotalPriceFragment.model_rebuild()
|
|
3058
3060
|
SlimCustomerFragment.model_rebuild()
|
|
3059
3061
|
SubscriptionFragment.model_rebuild()
|
|
3060
|
-
FeatureFragment.model_rebuild()
|
|
3061
|
-
EntitlementFragment.model_rebuild()
|
|
3062
3062
|
ApplySubscriptionFragment.model_rebuild()
|
|
3063
3063
|
FontVariantFragment.model_rebuild()
|
|
3064
3064
|
TypographyConfigurationFragment.model_rebuild()
|
|
3065
3065
|
CheckoutConfigurationFragment.model_rebuild()
|
|
3066
|
-
PromotionalEntitlementFragment.model_rebuild()
|
|
3067
3066
|
CouponFragment.model_rebuild()
|
|
3067
|
+
PromotionalEntitlementFragment.model_rebuild()
|
|
3068
3068
|
CustomerFragment.model_rebuild()
|
|
3069
3069
|
StripeCheckoutCredentialsFragment.model_rebuild()
|
|
3070
3070
|
ZuoraCheckoutCredentialsFragment.model_rebuild()
|
|
@@ -3081,8 +3081,8 @@ CustomerPortalConfigurationFragment.model_rebuild()
|
|
|
3081
3081
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
3082
3082
|
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
3083
3083
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
3084
|
-
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
3085
3084
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
3085
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
3086
3086
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
3087
3087
|
CustomerPortalFragment.model_rebuild()
|
|
3088
3088
|
CustomerStatisticsFragment.model_rebuild()
|
|
@@ -3093,8 +3093,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
3093
3093
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
3094
3094
|
LayoutConfigurationFragment.model_rebuild()
|
|
3095
3095
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
3096
|
-
MockPaywallPriceFragment.model_rebuild()
|
|
3097
3096
|
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
3097
|
+
MockPaywallPriceFragment.model_rebuild()
|
|
3098
3098
|
MockPaywallAddonFragment.model_rebuild()
|
|
3099
3099
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
3100
3100
|
MockPaywallPlanFragment.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -847,7 +847,7 @@ class CreditGrantInput(BaseModel):
|
|
|
847
847
|
)
|
|
848
848
|
amount: float
|
|
849
849
|
await_payment_confirmation: Optional[bool] = Field(
|
|
850
|
-
alias="awaitPaymentConfirmation", default=
|
|
850
|
+
alias="awaitPaymentConfirmation", default=True
|
|
851
851
|
)
|
|
852
852
|
comment: Optional[str] = None
|
|
853
853
|
cost: Optional["MoneyInputDTO"] = None
|
|
@@ -124,7 +124,7 @@ stigg/generated/enums.py,sha256=yOboGgUVS7wmn812LV-fgQh478Ry3VtuFFl7G5cZe4U,4013
|
|
|
124
124
|
stigg/generated/estimate_subscription.py,sha256=c0_vg0A_Hi8fdjeGudWZ0WziUF9jcjX5rlRitGMAMaQ,479
|
|
125
125
|
stigg/generated/estimate_subscription_update.py,sha256=ZYIFqqHHDfzhrOn95QnMmPNTXZ7JrKWRlUFzk8fWwKA,528
|
|
126
126
|
stigg/generated/exceptions.py,sha256=OQu-ZYCCV4VyMWTd1HR8gIjIK2CrA_JMlFxqOAJugWY,2411
|
|
127
|
-
stigg/generated/fragments.py,sha256=
|
|
127
|
+
stigg/generated/fragments.py,sha256=WyJqnBdPUDkqXiLhzK27MOCNUykSDMx63iWxTo7ggp4,111377
|
|
128
128
|
stigg/generated/get_active_subscriptions.py,sha256=ngZ9jr8vzGI59wT8FhUFl46a8j9waoNjeZ1_lrcu2ww,513
|
|
129
129
|
stigg/generated/get_active_subscriptions_list.py,sha256=Awi9al2MXxdt_y7ZnWYZh8U3R9XiX50c7TyO4WZxyhw,541
|
|
130
130
|
stigg/generated/get_checkout_state.py,sha256=SAOXGAND879dwb7R5mr5LPZuPVuMUDwNR5M4mgmHv6w,409
|
|
@@ -153,7 +153,7 @@ stigg/generated/grant_promotional_entitlements_group.py,sha256=iQwCd07VFaYbsN_E-
|
|
|
153
153
|
stigg/generated/import_customer.py,sha256=yEtrEB7T-Aykv3AUl-rAQz2XL6hKL0j-7JL3h-xi87o,403
|
|
154
154
|
stigg/generated/import_customer_bulk.py,sha256=miLn2ScWlPOH1IipltY5Vgd-ZQ_BkBk9t3-EsLvU5ZQ,284
|
|
155
155
|
stigg/generated/import_subscriptions_bulk.py,sha256=QgitpZkjE7eBhP1o5W0PTVAbKOvz61dNoeBAWupIcgU,297
|
|
156
|
-
stigg/generated/input_types.py,sha256=
|
|
156
|
+
stigg/generated/input_types.py,sha256=b1HuQhwGvsPgjKgZaSL4g7cRE8Vxj0ALFX53kIcNQ1U,218239
|
|
157
157
|
stigg/generated/migrate_subscription_to_latest.py,sha256=qQDwH7EodYAeJFb62IIl-MAEB5MbthgCJ0v1RMxpdYk,516
|
|
158
158
|
stigg/generated/preview_next_invoice.py,sha256=MiQ4Gv7Ve1Hv60xhaQi7uj82aq0xLP2UB-gjvcQdOL8,478
|
|
159
159
|
stigg/generated/preview_subscription.py,sha256=Qo2vlFs7sFzqaE8J_e-EHTRfLvG46lko-dcJMxDSCR0,475
|
|
@@ -172,7 +172,7 @@ stigg/generated/unlink_promotional_entitlements_group.py,sha256=8UIRQ0CNvReRfX0L
|
|
|
172
172
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
173
173
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
174
174
|
stigg/generated/void_credit_grant.py,sha256=uQ22Xb2vwMOJfqh48GU2fhZ6Dcv9nHNIx_UJpjmJSBU,410
|
|
175
|
-
stigg_api_client_v2-3.
|
|
176
|
-
stigg_api_client_v2-3.
|
|
177
|
-
stigg_api_client_v2-3.
|
|
178
|
-
stigg_api_client_v2-3.
|
|
175
|
+
stigg_api_client_v2-3.127.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
176
|
+
stigg_api_client_v2-3.127.0.dist-info/METADATA,sha256=luMd0wL5GK_HZchhHkIfg-ia4c_lYGFlA7k2eHTaExU,2264
|
|
177
|
+
stigg_api_client_v2-3.127.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
178
|
+
stigg_api_client_v2-3.127.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|