stigg-api-client-v2 2.430.1__py3-none-any.whl → 2.438.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of stigg-api-client-v2 might be problematic. Click here for more details.
- stigg/generated/enums.py +1 -0
- stigg/generated/fragments.py +298 -298
- {stigg_api_client_v2-2.430.1.dist-info → stigg_api_client_v2-2.438.1.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.430.1.dist-info → stigg_api_client_v2-2.438.1.dist-info}/RECORD +6 -6
- {stigg_api_client_v2-2.430.1.dist-info → stigg_api_client_v2-2.438.1.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.430.1.dist-info → stigg_api_client_v2-2.438.1.dist-info}/WHEEL +0 -0
stigg/generated/enums.py
CHANGED
stigg/generated/fragments.py
CHANGED
|
@@ -80,29 +80,33 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
80
80
|
currency: Currency
|
|
81
81
|
|
|
82
82
|
|
|
83
|
-
class
|
|
83
|
+
class PriceFragment(BaseModel):
|
|
84
84
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
85
85
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
86
|
+
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
86
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)
|
|
87
90
|
billing_country_code: Optional[str] = Field(
|
|
88
91
|
alias="billingCountryCode", default=None
|
|
89
92
|
)
|
|
90
|
-
price: Optional["
|
|
93
|
+
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
91
94
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
92
|
-
tiers: Optional[List["
|
|
93
|
-
feature: Optional["
|
|
95
|
+
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
96
|
+
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
97
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
94
98
|
|
|
95
99
|
|
|
96
|
-
class
|
|
100
|
+
class PriceFragmentPrice(BaseModel):
|
|
97
101
|
amount: float
|
|
98
102
|
currency: Currency
|
|
99
103
|
|
|
100
104
|
|
|
101
|
-
class
|
|
105
|
+
class PriceFragmentTiers(PriceTierFragment):
|
|
102
106
|
pass
|
|
103
107
|
|
|
104
108
|
|
|
105
|
-
class
|
|
109
|
+
class PriceFragmentFeature(BaseModel):
|
|
106
110
|
ref_id: str = Field(alias="refId")
|
|
107
111
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
108
112
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -145,33 +149,29 @@ class PackageEntitlementFragmentFeature(BaseModel):
|
|
|
145
149
|
)
|
|
146
150
|
|
|
147
151
|
|
|
148
|
-
class
|
|
152
|
+
class OveragePriceFragment(BaseModel):
|
|
149
153
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
150
154
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
151
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
152
155
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
153
|
-
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
154
|
-
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
155
156
|
billing_country_code: Optional[str] = Field(
|
|
156
157
|
alias="billingCountryCode", default=None
|
|
157
158
|
)
|
|
158
|
-
price: Optional["
|
|
159
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
159
160
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
160
|
-
tiers: Optional[List["
|
|
161
|
-
feature: Optional["
|
|
162
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
161
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
162
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
163
163
|
|
|
164
164
|
|
|
165
|
-
class
|
|
165
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
166
166
|
amount: float
|
|
167
167
|
currency: Currency
|
|
168
168
|
|
|
169
169
|
|
|
170
|
-
class
|
|
170
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
171
171
|
pass
|
|
172
172
|
|
|
173
173
|
|
|
174
|
-
class
|
|
174
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
175
175
|
ref_id: str = Field(alias="refId")
|
|
176
176
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
177
177
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -216,139 +216,6 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
216
216
|
pass
|
|
217
217
|
|
|
218
218
|
|
|
219
|
-
class FeatureFragment(BaseModel):
|
|
220
|
-
typename__: str = Field(alias="__typename")
|
|
221
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
222
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
223
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
224
|
-
feature_units_plural: Optional[str] = Field(
|
|
225
|
-
alias="featureUnitsPlural", default=None
|
|
226
|
-
)
|
|
227
|
-
description: Optional[str] = Field(default=None)
|
|
228
|
-
display_name: str = Field(alias="displayName")
|
|
229
|
-
ref_id: str = Field(alias="refId")
|
|
230
|
-
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
231
|
-
alias="unitTransformation", default=None
|
|
232
|
-
)
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
class FeatureFragmentUnitTransformation(BaseModel):
|
|
236
|
-
divide: float
|
|
237
|
-
round: UnitTransformationRound
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
class EntitlementFragment(BaseModel):
|
|
241
|
-
typename__: str = Field(alias="__typename")
|
|
242
|
-
is_granted: bool = Field(alias="isGranted")
|
|
243
|
-
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
244
|
-
alias="accessDeniedReason", default=None
|
|
245
|
-
)
|
|
246
|
-
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
247
|
-
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
248
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
249
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
250
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
251
|
-
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
252
|
-
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
253
|
-
entitlement_updated_at: Optional[Any] = Field(
|
|
254
|
-
alias="entitlementUpdatedAt", default=None
|
|
255
|
-
)
|
|
256
|
-
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
257
|
-
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
258
|
-
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
259
|
-
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
260
|
-
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
261
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
262
|
-
alias="resetPeriod", default=None
|
|
263
|
-
)
|
|
264
|
-
reset_period_configuration: Optional[
|
|
265
|
-
Annotated[
|
|
266
|
-
Union[
|
|
267
|
-
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
268
|
-
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
269
|
-
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
270
|
-
],
|
|
271
|
-
Field(discriminator="typename__"),
|
|
272
|
-
]
|
|
273
|
-
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
274
|
-
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
278
|
-
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
279
|
-
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
280
|
-
alias="monthlyAccordingTo", default=None
|
|
281
|
-
)
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
285
|
-
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
286
|
-
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
287
|
-
alias="weeklyAccordingTo", default=None
|
|
288
|
-
)
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
292
|
-
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
293
|
-
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
294
|
-
alias="yearlyAccordingTo", default=None
|
|
295
|
-
)
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
class EntitlementFragmentFeature(FeatureFragment):
|
|
299
|
-
pass
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
class CustomerResourceFragment(BaseModel):
|
|
303
|
-
resource_id: str = Field(alias="resourceId")
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
class SubscriptionInvoiceFragment(BaseModel):
|
|
307
|
-
billing_id: str = Field(alias="billingId")
|
|
308
|
-
status: SubscriptionInvoiceStatus
|
|
309
|
-
created_at: Any = Field(alias="createdAt")
|
|
310
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
311
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
312
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
313
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
314
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
315
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
316
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
317
|
-
alias="billingReason", default=None
|
|
318
|
-
)
|
|
319
|
-
currency: Optional[str] = Field(default=None)
|
|
320
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
321
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
322
|
-
alias="subTotalExcludingTax", default=None
|
|
323
|
-
)
|
|
324
|
-
total: Optional[float] = Field(default=None)
|
|
325
|
-
total_excluding_tax: Optional[float] = Field(
|
|
326
|
-
alias="totalExcludingTax", default=None
|
|
327
|
-
)
|
|
328
|
-
tax: Optional[float] = Field(default=None)
|
|
329
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
330
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
class TotalPriceFragment(BaseModel):
|
|
334
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
335
|
-
total: "TotalPriceFragmentTotal"
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
339
|
-
amount: float
|
|
340
|
-
currency: Currency
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
344
|
-
amount: float
|
|
345
|
-
currency: Currency
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
349
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
350
|
-
|
|
351
|
-
|
|
352
219
|
class SubscriptionFutureUpdateData(BaseModel):
|
|
353
220
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
354
221
|
alias="subscriptionScheduleType"
|
|
@@ -665,25 +532,71 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
665
532
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
666
533
|
|
|
667
534
|
|
|
668
|
-
class
|
|
535
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
536
|
+
billing_id: str = Field(alias="billingId")
|
|
537
|
+
status: SubscriptionInvoiceStatus
|
|
538
|
+
created_at: Any = Field(alias="createdAt")
|
|
539
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
540
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
541
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
542
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
543
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
544
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
545
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
546
|
+
alias="billingReason", default=None
|
|
547
|
+
)
|
|
548
|
+
currency: Optional[str] = Field(default=None)
|
|
549
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
550
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
551
|
+
alias="subTotalExcludingTax", default=None
|
|
552
|
+
)
|
|
553
|
+
total: Optional[float] = Field(default=None)
|
|
554
|
+
total_excluding_tax: Optional[float] = Field(
|
|
555
|
+
alias="totalExcludingTax", default=None
|
|
556
|
+
)
|
|
557
|
+
tax: Optional[float] = Field(default=None)
|
|
558
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
559
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
560
|
+
|
|
561
|
+
|
|
562
|
+
class TotalPriceFragment(BaseModel):
|
|
563
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
564
|
+
total: "TotalPriceFragmentTotal"
|
|
565
|
+
|
|
566
|
+
|
|
567
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
568
|
+
amount: float
|
|
569
|
+
currency: Currency
|
|
570
|
+
|
|
571
|
+
|
|
572
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
573
|
+
amount: float
|
|
574
|
+
currency: Currency
|
|
575
|
+
|
|
576
|
+
|
|
577
|
+
class SlimCustomerFragment(BaseModel):
|
|
578
|
+
id: str
|
|
579
|
+
name: Optional[str] = Field(default=None)
|
|
580
|
+
email: Optional[str] = Field(default=None)
|
|
581
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
582
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
669
583
|
ref_id: str = Field(alias="refId")
|
|
670
|
-
|
|
671
|
-
|
|
584
|
+
customer_id: str = Field(alias="customerId")
|
|
585
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
672
586
|
additional_meta_data: Optional[Any] = Field(
|
|
673
587
|
alias="additionalMetaData", default=None
|
|
674
588
|
)
|
|
675
|
-
|
|
589
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
590
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
591
|
+
)
|
|
676
592
|
|
|
677
593
|
|
|
678
|
-
class
|
|
679
|
-
|
|
680
|
-
alias="downgradePlan", default=None
|
|
681
|
-
)
|
|
594
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
595
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
682
596
|
|
|
683
597
|
|
|
684
|
-
class
|
|
685
|
-
|
|
686
|
-
display_name: str = Field(alias="displayName")
|
|
598
|
+
class CustomerResourceFragment(BaseModel):
|
|
599
|
+
resource_id: str = Field(alias="resourceId")
|
|
687
600
|
|
|
688
601
|
|
|
689
602
|
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
@@ -704,6 +617,27 @@ class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
|
704
617
|
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
705
618
|
|
|
706
619
|
|
|
620
|
+
class ProductFragment(BaseModel):
|
|
621
|
+
ref_id: str = Field(alias="refId")
|
|
622
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
623
|
+
description: Optional[str] = Field(default=None)
|
|
624
|
+
additional_meta_data: Optional[Any] = Field(
|
|
625
|
+
alias="additionalMetaData", default=None
|
|
626
|
+
)
|
|
627
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
628
|
+
|
|
629
|
+
|
|
630
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
631
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
632
|
+
alias="downgradePlan", default=None
|
|
633
|
+
)
|
|
634
|
+
|
|
635
|
+
|
|
636
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
637
|
+
ref_id: str = Field(alias="refId")
|
|
638
|
+
display_name: str = Field(alias="displayName")
|
|
639
|
+
|
|
640
|
+
|
|
707
641
|
class PlanFragment(BaseModel):
|
|
708
642
|
id: str
|
|
709
643
|
ref_id: str = Field(alias="refId")
|
|
@@ -785,23 +719,6 @@ class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
|
785
719
|
limit: float
|
|
786
720
|
|
|
787
721
|
|
|
788
|
-
class SlimCustomerFragment(BaseModel):
|
|
789
|
-
id: str
|
|
790
|
-
name: Optional[str] = Field(default=None)
|
|
791
|
-
email: Optional[str] = Field(default=None)
|
|
792
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
793
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
794
|
-
ref_id: str = Field(alias="refId")
|
|
795
|
-
customer_id: str = Field(alias="customerId")
|
|
796
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
797
|
-
additional_meta_data: Optional[Any] = Field(
|
|
798
|
-
alias="additionalMetaData", default=None
|
|
799
|
-
)
|
|
800
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
801
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
802
|
-
)
|
|
803
|
-
|
|
804
|
-
|
|
805
722
|
class SubscriptionFragment(BaseModel):
|
|
806
723
|
id: str
|
|
807
724
|
subscription_id: str = Field(alias="subscriptionId")
|
|
@@ -895,19 +812,102 @@ class SubscriptionFragmentAddons(BaseModel):
|
|
|
895
812
|
addon: "SubscriptionFragmentAddonsAddon"
|
|
896
813
|
|
|
897
814
|
|
|
898
|
-
class SubscriptionFragmentAddonsAddon(AddonFragment):
|
|
899
|
-
pass
|
|
815
|
+
class SubscriptionFragmentAddonsAddon(AddonFragment):
|
|
816
|
+
pass
|
|
817
|
+
|
|
818
|
+
|
|
819
|
+
class SubscriptionFragmentScheduledUpdates(SubscriptionScheduledUpdateData):
|
|
820
|
+
pass
|
|
821
|
+
|
|
822
|
+
|
|
823
|
+
class SubscriptionFragmentFutureUpdates(SubscriptionFutureUpdateData):
|
|
824
|
+
pass
|
|
825
|
+
|
|
826
|
+
|
|
827
|
+
class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragment):
|
|
828
|
+
pass
|
|
829
|
+
|
|
830
|
+
|
|
831
|
+
class FeatureFragment(BaseModel):
|
|
832
|
+
typename__: str = Field(alias="__typename")
|
|
833
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
834
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
835
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
836
|
+
feature_units_plural: Optional[str] = Field(
|
|
837
|
+
alias="featureUnitsPlural", default=None
|
|
838
|
+
)
|
|
839
|
+
description: Optional[str] = Field(default=None)
|
|
840
|
+
display_name: str = Field(alias="displayName")
|
|
841
|
+
ref_id: str = Field(alias="refId")
|
|
842
|
+
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
843
|
+
alias="unitTransformation", default=None
|
|
844
|
+
)
|
|
845
|
+
|
|
846
|
+
|
|
847
|
+
class FeatureFragmentUnitTransformation(BaseModel):
|
|
848
|
+
divide: float
|
|
849
|
+
round: UnitTransformationRound
|
|
850
|
+
|
|
851
|
+
|
|
852
|
+
class EntitlementFragment(BaseModel):
|
|
853
|
+
typename__: str = Field(alias="__typename")
|
|
854
|
+
is_granted: bool = Field(alias="isGranted")
|
|
855
|
+
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
856
|
+
alias="accessDeniedReason", default=None
|
|
857
|
+
)
|
|
858
|
+
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
859
|
+
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
860
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
861
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
862
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
863
|
+
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
864
|
+
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
865
|
+
entitlement_updated_at: Optional[Any] = Field(
|
|
866
|
+
alias="entitlementUpdatedAt", default=None
|
|
867
|
+
)
|
|
868
|
+
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
869
|
+
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
870
|
+
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
871
|
+
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
872
|
+
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
873
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
874
|
+
alias="resetPeriod", default=None
|
|
875
|
+
)
|
|
876
|
+
reset_period_configuration: Optional[
|
|
877
|
+
Annotated[
|
|
878
|
+
Union[
|
|
879
|
+
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
880
|
+
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
881
|
+
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
882
|
+
],
|
|
883
|
+
Field(discriminator="typename__"),
|
|
884
|
+
]
|
|
885
|
+
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
886
|
+
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
887
|
+
|
|
888
|
+
|
|
889
|
+
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
890
|
+
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
891
|
+
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
892
|
+
alias="monthlyAccordingTo", default=None
|
|
893
|
+
)
|
|
900
894
|
|
|
901
895
|
|
|
902
|
-
class
|
|
903
|
-
|
|
896
|
+
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
897
|
+
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
898
|
+
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
899
|
+
alias="weeklyAccordingTo", default=None
|
|
900
|
+
)
|
|
904
901
|
|
|
905
902
|
|
|
906
|
-
class
|
|
907
|
-
|
|
903
|
+
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
904
|
+
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
905
|
+
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
906
|
+
alias="yearlyAccordingTo", default=None
|
|
907
|
+
)
|
|
908
908
|
|
|
909
909
|
|
|
910
|
-
class
|
|
910
|
+
class EntitlementFragmentFeature(FeatureFragment):
|
|
911
911
|
pass
|
|
912
912
|
|
|
913
913
|
|
|
@@ -988,6 +988,35 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
988
988
|
)
|
|
989
989
|
|
|
990
990
|
|
|
991
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
992
|
+
status: PromotionalEntitlementStatus
|
|
993
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
994
|
+
feature_id: str = Field(alias="featureId")
|
|
995
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
996
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
997
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
998
|
+
alias="resetPeriod", default=None
|
|
999
|
+
)
|
|
1000
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1001
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1002
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1003
|
+
|
|
1004
|
+
|
|
1005
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1006
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1007
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1008
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1009
|
+
feature_units_plural: Optional[str] = Field(
|
|
1010
|
+
alias="featureUnitsPlural", default=None
|
|
1011
|
+
)
|
|
1012
|
+
display_name: str = Field(alias="displayName")
|
|
1013
|
+
description: Optional[str] = Field(default=None)
|
|
1014
|
+
ref_id: str = Field(alias="refId")
|
|
1015
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1016
|
+
alias="additionalMetaData", default=None
|
|
1017
|
+
)
|
|
1018
|
+
|
|
1019
|
+
|
|
991
1020
|
class CouponFragment(BaseModel):
|
|
992
1021
|
id: str
|
|
993
1022
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1022,35 +1051,6 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1022
1051
|
status: SyncStatus
|
|
1023
1052
|
|
|
1024
1053
|
|
|
1025
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
1026
|
-
status: PromotionalEntitlementStatus
|
|
1027
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1028
|
-
feature_id: str = Field(alias="featureId")
|
|
1029
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1030
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1031
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1032
|
-
alias="resetPeriod", default=None
|
|
1033
|
-
)
|
|
1034
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1035
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1036
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1040
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1041
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1042
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1043
|
-
feature_units_plural: Optional[str] = Field(
|
|
1044
|
-
alias="featureUnitsPlural", default=None
|
|
1045
|
-
)
|
|
1046
|
-
display_name: str = Field(alias="displayName")
|
|
1047
|
-
description: Optional[str] = Field(default=None)
|
|
1048
|
-
ref_id: str = Field(alias="refId")
|
|
1049
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1050
|
-
alias="additionalMetaData", default=None
|
|
1051
|
-
)
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
1054
|
class CustomerFragment(SlimCustomerFragment):
|
|
1055
1055
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1056
1056
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1257,6 +1257,16 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1257
1257
|
pass
|
|
1258
1258
|
|
|
1259
1259
|
|
|
1260
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1261
|
+
display_name: str = Field(alias="displayName")
|
|
1262
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1263
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1264
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1265
|
+
period: PromotionalEntitlementPeriod
|
|
1266
|
+
start_date: Any = Field(alias="startDate")
|
|
1267
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1268
|
+
|
|
1269
|
+
|
|
1260
1270
|
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1261
1271
|
addon_id: str = Field(alias="addonId")
|
|
1262
1272
|
description: Optional[str] = Field(default=None)
|
|
@@ -1264,6 +1274,33 @@ class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
|
1264
1274
|
quantity: int
|
|
1265
1275
|
|
|
1266
1276
|
|
|
1277
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1278
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1279
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1280
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1281
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1282
|
+
default=None
|
|
1283
|
+
)
|
|
1284
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1285
|
+
default=None
|
|
1286
|
+
)
|
|
1287
|
+
|
|
1288
|
+
|
|
1289
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1290
|
+
amount: float
|
|
1291
|
+
currency: Currency
|
|
1292
|
+
|
|
1293
|
+
|
|
1294
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1295
|
+
id: str
|
|
1296
|
+
ref_id: str = Field(alias="refId")
|
|
1297
|
+
display_name: str = Field(alias="displayName")
|
|
1298
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1299
|
+
feature_units_plural: Optional[str] = Field(
|
|
1300
|
+
alias="featureUnitsPlural", default=None
|
|
1301
|
+
)
|
|
1302
|
+
|
|
1303
|
+
|
|
1267
1304
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1268
1305
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1269
1306
|
alias="subscriptionScheduleType"
|
|
@@ -1433,33 +1470,6 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1433
1470
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1434
1471
|
|
|
1435
1472
|
|
|
1436
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1437
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1438
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1439
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1440
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1441
|
-
default=None
|
|
1442
|
-
)
|
|
1443
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1444
|
-
default=None
|
|
1445
|
-
)
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1449
|
-
amount: float
|
|
1450
|
-
currency: Currency
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1454
|
-
id: str
|
|
1455
|
-
ref_id: str = Field(alias="refId")
|
|
1456
|
-
display_name: str = Field(alias="displayName")
|
|
1457
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1458
|
-
feature_units_plural: Optional[str] = Field(
|
|
1459
|
-
alias="featureUnitsPlural", default=None
|
|
1460
|
-
)
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
1473
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1464
1474
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1465
1475
|
plan_id: str = Field(alias="planId")
|
|
@@ -1556,16 +1566,6 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1556
1566
|
pass
|
|
1557
1567
|
|
|
1558
1568
|
|
|
1559
|
-
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1560
|
-
display_name: str = Field(alias="displayName")
|
|
1561
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1562
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1563
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1564
|
-
period: PromotionalEntitlementPeriod
|
|
1565
|
-
start_date: Any = Field(alias="startDate")
|
|
1566
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
1569
|
class CustomerPortalFragment(BaseModel):
|
|
1570
1570
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1571
1571
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -1793,6 +1793,39 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1793
1793
|
description: Optional[str] = Field(default=None)
|
|
1794
1794
|
|
|
1795
1795
|
|
|
1796
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1797
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1798
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1799
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1800
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1801
|
+
alias="resetPeriod", default=None
|
|
1802
|
+
)
|
|
1803
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1804
|
+
alias="hiddenFromWidgets", default=None
|
|
1805
|
+
)
|
|
1806
|
+
display_name_override: Optional[str] = Field(
|
|
1807
|
+
alias="displayNameOverride", default=None
|
|
1808
|
+
)
|
|
1809
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1810
|
+
default=None
|
|
1811
|
+
)
|
|
1812
|
+
|
|
1813
|
+
|
|
1814
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1815
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1816
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1817
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1818
|
+
feature_units_plural: Optional[str] = Field(
|
|
1819
|
+
alias="featureUnitsPlural", default=None
|
|
1820
|
+
)
|
|
1821
|
+
display_name: str = Field(alias="displayName")
|
|
1822
|
+
description: Optional[str] = Field(default=None)
|
|
1823
|
+
ref_id: str = Field(alias="refId")
|
|
1824
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1825
|
+
alias="additionalMetaData", default=None
|
|
1826
|
+
)
|
|
1827
|
+
|
|
1828
|
+
|
|
1796
1829
|
class MockPaywallPriceFragment(BaseModel):
|
|
1797
1830
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1798
1831
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1827,39 +1860,6 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1827
1860
|
display_name: str = Field(alias="displayName")
|
|
1828
1861
|
|
|
1829
1862
|
|
|
1830
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1831
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1832
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1833
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1834
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1835
|
-
alias="resetPeriod", default=None
|
|
1836
|
-
)
|
|
1837
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1838
|
-
alias="hiddenFromWidgets", default=None
|
|
1839
|
-
)
|
|
1840
|
-
display_name_override: Optional[str] = Field(
|
|
1841
|
-
alias="displayNameOverride", default=None
|
|
1842
|
-
)
|
|
1843
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1844
|
-
default=None
|
|
1845
|
-
)
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1849
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1850
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1851
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1852
|
-
feature_units_plural: Optional[str] = Field(
|
|
1853
|
-
alias="featureUnitsPlural", default=None
|
|
1854
|
-
)
|
|
1855
|
-
display_name: str = Field(alias="displayName")
|
|
1856
|
-
description: Optional[str] = Field(default=None)
|
|
1857
|
-
ref_id: str = Field(alias="refId")
|
|
1858
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1859
|
-
alias="additionalMetaData", default=None
|
|
1860
|
-
)
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
1863
|
class MockPaywallAddonFragment(BaseModel):
|
|
1864
1864
|
ref_id: str = Field(alias="refId")
|
|
1865
1865
|
display_name: str = Field(alias="displayName")
|
|
@@ -2771,39 +2771,39 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2771
2771
|
|
|
2772
2772
|
AddonDependencyFragment.model_rebuild()
|
|
2773
2773
|
PriceTierFragment.model_rebuild()
|
|
2774
|
-
OveragePriceFragment.model_rebuild()
|
|
2775
|
-
PackageEntitlementFragment.model_rebuild()
|
|
2776
2774
|
PriceFragment.model_rebuild()
|
|
2775
|
+
PackageEntitlementFragment.model_rebuild()
|
|
2776
|
+
OveragePriceFragment.model_rebuild()
|
|
2777
2777
|
AddonFragment.model_rebuild()
|
|
2778
|
-
|
|
2779
|
-
|
|
2780
|
-
CustomerResourceFragment.model_rebuild()
|
|
2778
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2779
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2781
2780
|
SubscriptionInvoiceFragment.model_rebuild()
|
|
2782
2781
|
TotalPriceFragment.model_rebuild()
|
|
2782
|
+
SlimCustomerFragment.model_rebuild()
|
|
2783
2783
|
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2784
|
-
|
|
2785
|
-
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2786
|
-
ProductFragment.model_rebuild()
|
|
2784
|
+
CustomerResourceFragment.model_rebuild()
|
|
2787
2785
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2786
|
+
ProductFragment.model_rebuild()
|
|
2788
2787
|
PlanFragment.model_rebuild()
|
|
2789
|
-
SlimCustomerFragment.model_rebuild()
|
|
2790
2788
|
SubscriptionFragment.model_rebuild()
|
|
2789
|
+
FeatureFragment.model_rebuild()
|
|
2790
|
+
EntitlementFragment.model_rebuild()
|
|
2791
2791
|
ApplySubscriptionFragment.model_rebuild()
|
|
2792
2792
|
FontVariantFragment.model_rebuild()
|
|
2793
2793
|
TypographyConfigurationFragment.model_rebuild()
|
|
2794
2794
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2795
|
-
CouponFragment.model_rebuild()
|
|
2796
2795
|
PromotionalEntitlementFragment.model_rebuild()
|
|
2796
|
+
CouponFragment.model_rebuild()
|
|
2797
2797
|
CustomerFragment.model_rebuild()
|
|
2798
2798
|
CheckoutStateFragment.model_rebuild()
|
|
2799
2799
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2800
2800
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2801
2801
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2802
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2802
2803
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2803
|
-
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2804
2804
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2805
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2805
2806
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2806
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2807
2807
|
CustomerPortalFragment.model_rebuild()
|
|
2808
2808
|
CustomerStatisticsFragment.model_rebuild()
|
|
2809
2809
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
|
@@ -2813,8 +2813,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
2813
2813
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
2814
2814
|
LayoutConfigurationFragment.model_rebuild()
|
|
2815
2815
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
2816
|
-
MockPaywallPriceFragment.model_rebuild()
|
|
2817
2816
|
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2817
|
+
MockPaywallPriceFragment.model_rebuild()
|
|
2818
2818
|
MockPaywallAddonFragment.model_rebuild()
|
|
2819
2819
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2820
2820
|
MockPaywallPlanFragment.model_rebuild()
|
|
@@ -119,11 +119,11 @@ stigg/generated/client.py,sha256=NgGx0jZs30ZsxuITO15EVz6K4LjJE5XocrwRuGcjm8w,169
|
|
|
119
119
|
stigg/generated/create_subscription.py,sha256=vbpBJ_daXHcQDtvU3vbwSr2E7s4VGRHxqPavyTV3Mtk,457
|
|
120
120
|
stigg/generated/delegate_subscription_to_customer.py,sha256=0TgQDO0Hk-z7X7PGtqhvciqa8IjkToK9cpiX3Kqu_UY,561
|
|
121
121
|
stigg/generated/detach_customer_payment_method.py,sha256=ACXlC2xsGaUP723OrayFZQ9SbXxe8TtVUYdG1gqcYFc,523
|
|
122
|
-
stigg/generated/enums.py,sha256=
|
|
122
|
+
stigg/generated/enums.py,sha256=9ioQN2tFCIyy3cENl_nhueILHgK6xJ4_XHFFmGztc0A,35296
|
|
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=vQGTaWg4_zR6Jox12yDqvYXgAbK_sEN6kv3ALncIPDI,100917
|
|
127
127
|
stigg/generated/get_active_subscriptions.py,sha256=ngZ9jr8vzGI59wT8FhUFl46a8j9waoNjeZ1_lrcu2ww,513
|
|
128
128
|
stigg/generated/get_active_subscriptions_list.py,sha256=Awi9al2MXxdt_y7ZnWYZh8U3R9XiX50c7TyO4WZxyhw,541
|
|
129
129
|
stigg/generated/get_checkout_state.py,sha256=SAOXGAND879dwb7R5mr5LPZuPVuMUDwNR5M4mgmHv6w,409
|
|
@@ -160,7 +160,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
|
|
|
160
160
|
stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
|
|
161
161
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
162
162
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
163
|
-
stigg_api_client_v2-2.
|
|
164
|
-
stigg_api_client_v2-2.
|
|
165
|
-
stigg_api_client_v2-2.
|
|
166
|
-
stigg_api_client_v2-2.
|
|
163
|
+
stigg_api_client_v2-2.438.1.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.438.1.dist-info/METADATA,sha256=SRDemXoiQLlgYOE_D5mAWrOwng3vp9WP4lcUm0zO6xs,2258
|
|
165
|
+
stigg_api_client_v2-2.438.1.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.438.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|