stigg-api-client-v2 2.304.1__py3-none-any.whl → 2.306.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 +314 -314
- {stigg_api_client_v2-2.304.1.dist-info → stigg_api_client_v2-2.306.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.304.1.dist-info → stigg_api_client_v2-2.306.0.dist-info}/RECORD +5 -5
- {stigg_api_client_v2-2.304.1.dist-info → stigg_api_client_v2-2.306.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.304.1.dist-info → stigg_api_client_v2-2.306.0.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -79,33 +79,29 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
79
79
|
currency: Currency
|
|
80
80
|
|
|
81
81
|
|
|
82
|
-
class
|
|
82
|
+
class OveragePriceFragment(BaseModel):
|
|
83
83
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
84
84
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
85
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
86
85
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
87
|
-
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
88
|
-
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
89
86
|
billing_country_code: Optional[str] = Field(
|
|
90
87
|
alias="billingCountryCode", default=None
|
|
91
88
|
)
|
|
92
|
-
price: Optional["
|
|
89
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
93
90
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
94
|
-
tiers: Optional[List["
|
|
95
|
-
feature: Optional["
|
|
96
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
91
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
92
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
97
93
|
|
|
98
94
|
|
|
99
|
-
class
|
|
95
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
100
96
|
amount: float
|
|
101
97
|
currency: Currency
|
|
102
98
|
|
|
103
99
|
|
|
104
|
-
class
|
|
100
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
105
101
|
pass
|
|
106
102
|
|
|
107
103
|
|
|
108
|
-
class
|
|
104
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
109
105
|
ref_id: str = Field(alias="refId")
|
|
110
106
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
111
107
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -148,29 +144,33 @@ class PackageEntitlementFragmentFeature(BaseModel):
|
|
|
148
144
|
)
|
|
149
145
|
|
|
150
146
|
|
|
151
|
-
class
|
|
147
|
+
class PriceFragment(BaseModel):
|
|
152
148
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
153
149
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
150
|
+
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
154
151
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
152
|
+
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
153
|
+
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
155
154
|
billing_country_code: Optional[str] = Field(
|
|
156
155
|
alias="billingCountryCode", default=None
|
|
157
156
|
)
|
|
158
|
-
price: Optional["
|
|
157
|
+
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
159
158
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
160
|
-
tiers: Optional[List["
|
|
161
|
-
feature: Optional["
|
|
159
|
+
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
160
|
+
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
161
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
162
162
|
|
|
163
163
|
|
|
164
|
-
class
|
|
164
|
+
class PriceFragmentPrice(BaseModel):
|
|
165
165
|
amount: float
|
|
166
166
|
currency: Currency
|
|
167
167
|
|
|
168
168
|
|
|
169
|
-
class
|
|
169
|
+
class PriceFragmentTiers(PriceTierFragment):
|
|
170
170
|
pass
|
|
171
171
|
|
|
172
172
|
|
|
173
|
-
class
|
|
173
|
+
class PriceFragmentFeature(BaseModel):
|
|
174
174
|
ref_id: str = Field(alias="refId")
|
|
175
175
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
176
176
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -298,31 +298,6 @@ class EntitlementFragmentFeature(FeatureFragment):
|
|
|
298
298
|
pass
|
|
299
299
|
|
|
300
300
|
|
|
301
|
-
class CustomerResourceFragment(BaseModel):
|
|
302
|
-
resource_id: str = Field(alias="resourceId")
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
class SlimCustomerFragment(BaseModel):
|
|
306
|
-
id: str
|
|
307
|
-
name: Optional[str] = Field(default=None)
|
|
308
|
-
email: Optional[str] = Field(default=None)
|
|
309
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
310
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
311
|
-
ref_id: str = Field(alias="refId")
|
|
312
|
-
customer_id: str = Field(alias="customerId")
|
|
313
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
314
|
-
additional_meta_data: Optional[Any] = Field(
|
|
315
|
-
alias="additionalMetaData", default=None
|
|
316
|
-
)
|
|
317
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
318
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
319
|
-
)
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
323
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
324
|
-
|
|
325
|
-
|
|
326
301
|
class SubscriptionFutureUpdateData(BaseModel):
|
|
327
302
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
328
303
|
alias="subscriptionScheduleType"
|
|
@@ -477,6 +452,166 @@ class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(Bas
|
|
|
477
452
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
478
453
|
|
|
479
454
|
|
|
455
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
456
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
class SlimCustomerFragment(BaseModel):
|
|
460
|
+
id: str
|
|
461
|
+
name: Optional[str] = Field(default=None)
|
|
462
|
+
email: Optional[str] = Field(default=None)
|
|
463
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
464
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
465
|
+
ref_id: str = Field(alias="refId")
|
|
466
|
+
customer_id: str = Field(alias="customerId")
|
|
467
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
468
|
+
additional_meta_data: Optional[Any] = Field(
|
|
469
|
+
alias="additionalMetaData", default=None
|
|
470
|
+
)
|
|
471
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
472
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
473
|
+
)
|
|
474
|
+
|
|
475
|
+
|
|
476
|
+
class CustomerResourceFragment(BaseModel):
|
|
477
|
+
resource_id: str = Field(alias="resourceId")
|
|
478
|
+
|
|
479
|
+
|
|
480
|
+
class TotalPriceFragment(BaseModel):
|
|
481
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
482
|
+
total: "TotalPriceFragmentTotal"
|
|
483
|
+
|
|
484
|
+
|
|
485
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
486
|
+
amount: float
|
|
487
|
+
currency: Currency
|
|
488
|
+
|
|
489
|
+
|
|
490
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
491
|
+
amount: float
|
|
492
|
+
currency: Currency
|
|
493
|
+
|
|
494
|
+
|
|
495
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
496
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
497
|
+
display_name: str = Field(alias="displayName")
|
|
498
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
499
|
+
default=None
|
|
500
|
+
)
|
|
501
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
502
|
+
|
|
503
|
+
|
|
504
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
505
|
+
pass
|
|
506
|
+
|
|
507
|
+
|
|
508
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
509
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
510
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
511
|
+
|
|
512
|
+
|
|
513
|
+
class ProductFragment(BaseModel):
|
|
514
|
+
ref_id: str = Field(alias="refId")
|
|
515
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
516
|
+
description: Optional[str] = Field(default=None)
|
|
517
|
+
additional_meta_data: Optional[Any] = Field(
|
|
518
|
+
alias="additionalMetaData", default=None
|
|
519
|
+
)
|
|
520
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
521
|
+
|
|
522
|
+
|
|
523
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
524
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
525
|
+
alias="downgradePlan", default=None
|
|
526
|
+
)
|
|
527
|
+
|
|
528
|
+
|
|
529
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
530
|
+
ref_id: str = Field(alias="refId")
|
|
531
|
+
display_name: str = Field(alias="displayName")
|
|
532
|
+
|
|
533
|
+
|
|
534
|
+
class PlanFragment(BaseModel):
|
|
535
|
+
id: str
|
|
536
|
+
ref_id: str = Field(alias="refId")
|
|
537
|
+
display_name: str = Field(alias="displayName")
|
|
538
|
+
description: Optional[str] = Field(default=None)
|
|
539
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
540
|
+
version_number: int = Field(alias="versionNumber")
|
|
541
|
+
additional_meta_data: Optional[Any] = Field(
|
|
542
|
+
alias="additionalMetaData", default=None
|
|
543
|
+
)
|
|
544
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
545
|
+
alias="hiddenFromWidgets", default=None
|
|
546
|
+
)
|
|
547
|
+
product: "PlanFragmentProduct"
|
|
548
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
549
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
550
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
551
|
+
alias="inheritedEntitlements", default=None
|
|
552
|
+
)
|
|
553
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
554
|
+
alias="compatibleAddons", default=None
|
|
555
|
+
)
|
|
556
|
+
compatible_package_groups: Optional[
|
|
557
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
558
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
559
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
560
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
561
|
+
alias="overagePrices", default=None
|
|
562
|
+
)
|
|
563
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
564
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
565
|
+
alias="defaultTrialConfig", default=None
|
|
566
|
+
)
|
|
567
|
+
|
|
568
|
+
|
|
569
|
+
class PlanFragmentProduct(ProductFragment):
|
|
570
|
+
pass
|
|
571
|
+
|
|
572
|
+
|
|
573
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
574
|
+
ref_id: str = Field(alias="refId")
|
|
575
|
+
display_name: str = Field(alias="displayName")
|
|
576
|
+
|
|
577
|
+
|
|
578
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
579
|
+
pass
|
|
580
|
+
|
|
581
|
+
|
|
582
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
583
|
+
pass
|
|
584
|
+
|
|
585
|
+
|
|
586
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
587
|
+
pass
|
|
588
|
+
|
|
589
|
+
|
|
590
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
591
|
+
pass
|
|
592
|
+
|
|
593
|
+
|
|
594
|
+
class PlanFragmentPrices(PriceFragment):
|
|
595
|
+
pass
|
|
596
|
+
|
|
597
|
+
|
|
598
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
599
|
+
pass
|
|
600
|
+
|
|
601
|
+
|
|
602
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
603
|
+
duration: float
|
|
604
|
+
units: TrialPeriodUnits
|
|
605
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
606
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
607
|
+
alias="trialEndBehavior", default=None
|
|
608
|
+
)
|
|
609
|
+
|
|
610
|
+
|
|
611
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
612
|
+
limit: float
|
|
613
|
+
|
|
614
|
+
|
|
480
615
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
481
616
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
482
617
|
alias="subscriptionScheduleType"
|
|
@@ -634,170 +769,35 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVar
|
|
|
634
769
|
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
635
770
|
BaseModel
|
|
636
771
|
):
|
|
637
|
-
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
638
|
-
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
639
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
class TotalPriceFragment(BaseModel):
|
|
643
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
644
|
-
total: "TotalPriceFragmentTotal"
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
648
|
-
amount: float
|
|
649
|
-
currency: Currency
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
653
|
-
amount: float
|
|
654
|
-
currency: Currency
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
class SubscriptionInvoiceFragment(BaseModel):
|
|
658
|
-
billing_id: str = Field(alias="billingId")
|
|
659
|
-
status: SubscriptionInvoiceStatus
|
|
660
|
-
created_at: Any = Field(alias="createdAt")
|
|
661
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
662
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
663
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
664
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
665
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
666
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
667
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
668
|
-
alias="billingReason", default=None
|
|
669
|
-
)
|
|
670
|
-
currency: Optional[str] = Field(default=None)
|
|
671
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
672
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
673
|
-
alias="subTotalExcludingTax", default=None
|
|
674
|
-
)
|
|
675
|
-
total: Optional[float] = Field(default=None)
|
|
676
|
-
total_excluding_tax: Optional[float] = Field(
|
|
677
|
-
alias="totalExcludingTax", default=None
|
|
678
|
-
)
|
|
679
|
-
tax: Optional[float] = Field(default=None)
|
|
680
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
684
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
685
|
-
display_name: str = Field(alias="displayName")
|
|
686
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
687
|
-
default=None
|
|
688
|
-
)
|
|
689
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
693
|
-
pass
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
697
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
698
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
class ProductFragment(BaseModel):
|
|
702
|
-
ref_id: str = Field(alias="refId")
|
|
703
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
704
|
-
description: Optional[str] = Field(default=None)
|
|
705
|
-
additional_meta_data: Optional[Any] = Field(
|
|
706
|
-
alias="additionalMetaData", default=None
|
|
707
|
-
)
|
|
708
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
712
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
713
|
-
alias="downgradePlan", default=None
|
|
714
|
-
)
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
718
|
-
ref_id: str = Field(alias="refId")
|
|
719
|
-
display_name: str = Field(alias="displayName")
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
class PlanFragment(BaseModel):
|
|
723
|
-
id: str
|
|
724
|
-
ref_id: str = Field(alias="refId")
|
|
725
|
-
display_name: str = Field(alias="displayName")
|
|
726
|
-
description: Optional[str] = Field(default=None)
|
|
727
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
728
|
-
version_number: int = Field(alias="versionNumber")
|
|
729
|
-
additional_meta_data: Optional[Any] = Field(
|
|
730
|
-
alias="additionalMetaData", default=None
|
|
731
|
-
)
|
|
732
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
733
|
-
alias="hiddenFromWidgets", default=None
|
|
734
|
-
)
|
|
735
|
-
product: "PlanFragmentProduct"
|
|
736
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
737
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
738
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
739
|
-
alias="inheritedEntitlements", default=None
|
|
740
|
-
)
|
|
741
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
742
|
-
alias="compatibleAddons", default=None
|
|
743
|
-
)
|
|
744
|
-
compatible_package_groups: Optional[
|
|
745
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
746
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
747
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
748
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
749
|
-
alias="overagePrices", default=None
|
|
750
|
-
)
|
|
751
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
752
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
753
|
-
alias="defaultTrialConfig", default=None
|
|
754
|
-
)
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
class PlanFragmentProduct(ProductFragment):
|
|
758
|
-
pass
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
762
|
-
ref_id: str = Field(alias="refId")
|
|
763
|
-
display_name: str = Field(alias="displayName")
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
767
|
-
pass
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
771
|
-
pass
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
775
|
-
pass
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
779
|
-
pass
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
class PlanFragmentPrices(PriceFragment):
|
|
783
|
-
pass
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
787
|
-
pass
|
|
772
|
+
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
773
|
+
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
774
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
788
775
|
|
|
789
776
|
|
|
790
|
-
class
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
777
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
778
|
+
billing_id: str = Field(alias="billingId")
|
|
779
|
+
status: SubscriptionInvoiceStatus
|
|
780
|
+
created_at: Any = Field(alias="createdAt")
|
|
781
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
782
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
783
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
784
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
785
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
786
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
787
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
788
|
+
alias="billingReason", default=None
|
|
796
789
|
)
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
790
|
+
currency: Optional[str] = Field(default=None)
|
|
791
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
792
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
793
|
+
alias="subTotalExcludingTax", default=None
|
|
794
|
+
)
|
|
795
|
+
total: Optional[float] = Field(default=None)
|
|
796
|
+
total_excluding_tax: Optional[float] = Field(
|
|
797
|
+
alias="totalExcludingTax", default=None
|
|
798
|
+
)
|
|
799
|
+
tax: Optional[float] = Field(default=None)
|
|
800
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
801
801
|
|
|
802
802
|
|
|
803
803
|
class SubscriptionFragment(BaseModel):
|
|
@@ -986,6 +986,35 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
986
986
|
)
|
|
987
987
|
|
|
988
988
|
|
|
989
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
990
|
+
status: PromotionalEntitlementStatus
|
|
991
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
992
|
+
feature_id: str = Field(alias="featureId")
|
|
993
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
994
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
995
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
996
|
+
alias="resetPeriod", default=None
|
|
997
|
+
)
|
|
998
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
999
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1000
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1001
|
+
|
|
1002
|
+
|
|
1003
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1004
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1005
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1006
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1007
|
+
feature_units_plural: Optional[str] = Field(
|
|
1008
|
+
alias="featureUnitsPlural", default=None
|
|
1009
|
+
)
|
|
1010
|
+
display_name: str = Field(alias="displayName")
|
|
1011
|
+
description: Optional[str] = Field(default=None)
|
|
1012
|
+
ref_id: str = Field(alias="refId")
|
|
1013
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1014
|
+
alias="additionalMetaData", default=None
|
|
1015
|
+
)
|
|
1016
|
+
|
|
1017
|
+
|
|
989
1018
|
class CouponFragment(BaseModel):
|
|
990
1019
|
id: str
|
|
991
1020
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1020,35 +1049,6 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1020
1049
|
status: SyncStatus
|
|
1021
1050
|
|
|
1022
1051
|
|
|
1023
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
1024
|
-
status: PromotionalEntitlementStatus
|
|
1025
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1026
|
-
feature_id: str = Field(alias="featureId")
|
|
1027
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1028
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1029
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1030
|
-
alias="resetPeriod", default=None
|
|
1031
|
-
)
|
|
1032
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1033
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1034
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1038
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1039
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1040
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1041
|
-
feature_units_plural: Optional[str] = Field(
|
|
1042
|
-
alias="featureUnitsPlural", default=None
|
|
1043
|
-
)
|
|
1044
|
-
display_name: str = Field(alias="displayName")
|
|
1045
|
-
description: Optional[str] = Field(default=None)
|
|
1046
|
-
ref_id: str = Field(alias="refId")
|
|
1047
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1048
|
-
alias="additionalMetaData", default=None
|
|
1049
|
-
)
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
1052
|
class CustomerFragment(SlimCustomerFragment):
|
|
1053
1053
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1054
1054
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1249,31 +1249,21 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1249
1249
|
pass
|
|
1250
1250
|
|
|
1251
1251
|
|
|
1252
|
-
class
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
)
|
|
1259
|
-
|
|
1260
|
-
default=None
|
|
1261
|
-
)
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1265
|
-
amount: float
|
|
1266
|
-
currency: Currency
|
|
1252
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1253
|
+
display_name: str = Field(alias="displayName")
|
|
1254
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1255
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1256
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1257
|
+
period: PromotionalEntitlementPeriod
|
|
1258
|
+
start_date: Any = Field(alias="startDate")
|
|
1259
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1267
1260
|
|
|
1268
1261
|
|
|
1269
|
-
class
|
|
1270
|
-
|
|
1271
|
-
|
|
1262
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1263
|
+
addon_id: str = Field(alias="addonId")
|
|
1264
|
+
description: Optional[str] = Field(default=None)
|
|
1272
1265
|
display_name: str = Field(alias="displayName")
|
|
1273
|
-
|
|
1274
|
-
feature_units_plural: Optional[str] = Field(
|
|
1275
|
-
alias="featureUnitsPlural", default=None
|
|
1276
|
-
)
|
|
1266
|
+
quantity: int
|
|
1277
1267
|
|
|
1278
1268
|
|
|
1279
1269
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
@@ -1445,11 +1435,31 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1445
1435
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1446
1436
|
|
|
1447
1437
|
|
|
1448
|
-
class
|
|
1449
|
-
|
|
1450
|
-
|
|
1438
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1439
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1440
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1441
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1442
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1443
|
+
default=None
|
|
1444
|
+
)
|
|
1445
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1446
|
+
default=None
|
|
1447
|
+
)
|
|
1448
|
+
|
|
1449
|
+
|
|
1450
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1451
|
+
amount: float
|
|
1452
|
+
currency: Currency
|
|
1453
|
+
|
|
1454
|
+
|
|
1455
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1456
|
+
id: str
|
|
1457
|
+
ref_id: str = Field(alias="refId")
|
|
1451
1458
|
display_name: str = Field(alias="displayName")
|
|
1452
|
-
|
|
1459
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1460
|
+
feature_units_plural: Optional[str] = Field(
|
|
1461
|
+
alias="featureUnitsPlural", default=None
|
|
1462
|
+
)
|
|
1453
1463
|
|
|
1454
1464
|
|
|
1455
1465
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
@@ -1548,16 +1558,6 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1548
1558
|
pass
|
|
1549
1559
|
|
|
1550
1560
|
|
|
1551
|
-
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1552
|
-
display_name: str = Field(alias="displayName")
|
|
1553
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1554
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1555
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1556
|
-
period: PromotionalEntitlementPeriod
|
|
1557
|
-
start_date: Any = Field(alias="startDate")
|
|
1558
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
1561
|
class CustomerPortalFragment(BaseModel):
|
|
1562
1562
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1563
1563
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -1785,6 +1785,39 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1785
1785
|
description: Optional[str] = Field(default=None)
|
|
1786
1786
|
|
|
1787
1787
|
|
|
1788
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1789
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1790
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1791
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1792
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1793
|
+
alias="resetPeriod", default=None
|
|
1794
|
+
)
|
|
1795
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1796
|
+
alias="hiddenFromWidgets", default=None
|
|
1797
|
+
)
|
|
1798
|
+
display_name_override: Optional[str] = Field(
|
|
1799
|
+
alias="displayNameOverride", default=None
|
|
1800
|
+
)
|
|
1801
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1802
|
+
default=None
|
|
1803
|
+
)
|
|
1804
|
+
|
|
1805
|
+
|
|
1806
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1807
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1808
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1809
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1810
|
+
feature_units_plural: Optional[str] = Field(
|
|
1811
|
+
alias="featureUnitsPlural", default=None
|
|
1812
|
+
)
|
|
1813
|
+
display_name: str = Field(alias="displayName")
|
|
1814
|
+
description: Optional[str] = Field(default=None)
|
|
1815
|
+
ref_id: str = Field(alias="refId")
|
|
1816
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1817
|
+
alias="additionalMetaData", default=None
|
|
1818
|
+
)
|
|
1819
|
+
|
|
1820
|
+
|
|
1788
1821
|
class MockPaywallPriceFragment(BaseModel):
|
|
1789
1822
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1790
1823
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1819,39 +1852,6 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1819
1852
|
display_name: str = Field(alias="displayName")
|
|
1820
1853
|
|
|
1821
1854
|
|
|
1822
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1823
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1824
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1825
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1826
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1827
|
-
alias="resetPeriod", default=None
|
|
1828
|
-
)
|
|
1829
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1830
|
-
alias="hiddenFromWidgets", default=None
|
|
1831
|
-
)
|
|
1832
|
-
display_name_override: Optional[str] = Field(
|
|
1833
|
-
alias="displayNameOverride", default=None
|
|
1834
|
-
)
|
|
1835
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1836
|
-
default=None
|
|
1837
|
-
)
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1841
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1842
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1843
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1844
|
-
feature_units_plural: Optional[str] = Field(
|
|
1845
|
-
alias="featureUnitsPlural", default=None
|
|
1846
|
-
)
|
|
1847
|
-
display_name: str = Field(alias="displayName")
|
|
1848
|
-
description: Optional[str] = Field(default=None)
|
|
1849
|
-
ref_id: str = Field(alias="refId")
|
|
1850
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1851
|
-
alias="additionalMetaData", default=None
|
|
1852
|
-
)
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
1855
|
class MockPaywallAddonFragment(BaseModel):
|
|
1856
1856
|
ref_id: str = Field(alias="refId")
|
|
1857
1857
|
display_name: str = Field(alias="displayName")
|
|
@@ -2763,39 +2763,39 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2763
2763
|
|
|
2764
2764
|
AddonDependencyFragment.model_rebuild()
|
|
2765
2765
|
PriceTierFragment.model_rebuild()
|
|
2766
|
-
PriceFragment.model_rebuild()
|
|
2767
|
-
PackageEntitlementFragment.model_rebuild()
|
|
2768
2766
|
OveragePriceFragment.model_rebuild()
|
|
2767
|
+
PackageEntitlementFragment.model_rebuild()
|
|
2768
|
+
PriceFragment.model_rebuild()
|
|
2769
2769
|
AddonFragment.model_rebuild()
|
|
2770
2770
|
FeatureFragment.model_rebuild()
|
|
2771
2771
|
EntitlementFragment.model_rebuild()
|
|
2772
|
-
CustomerResourceFragment.model_rebuild()
|
|
2773
|
-
SlimCustomerFragment.model_rebuild()
|
|
2774
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2775
2772
|
SubscriptionFutureUpdateData.model_rebuild()
|
|
2776
|
-
|
|
2773
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2774
|
+
SlimCustomerFragment.model_rebuild()
|
|
2775
|
+
CustomerResourceFragment.model_rebuild()
|
|
2777
2776
|
TotalPriceFragment.model_rebuild()
|
|
2778
|
-
SubscriptionInvoiceFragment.model_rebuild()
|
|
2779
2777
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2780
2778
|
ProductFragment.model_rebuild()
|
|
2781
2779
|
PlanFragment.model_rebuild()
|
|
2780
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2781
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2782
2782
|
SubscriptionFragment.model_rebuild()
|
|
2783
2783
|
ApplySubscriptionFragment.model_rebuild()
|
|
2784
2784
|
FontVariantFragment.model_rebuild()
|
|
2785
2785
|
TypographyConfigurationFragment.model_rebuild()
|
|
2786
2786
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2787
|
-
CouponFragment.model_rebuild()
|
|
2788
2787
|
PromotionalEntitlementFragment.model_rebuild()
|
|
2788
|
+
CouponFragment.model_rebuild()
|
|
2789
2789
|
CustomerFragment.model_rebuild()
|
|
2790
2790
|
CheckoutStateFragment.model_rebuild()
|
|
2791
2791
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2792
2792
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2793
2793
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2794
|
-
|
|
2795
|
-
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2794
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2796
2795
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2796
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2797
|
+
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2797
2798
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2798
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2799
2799
|
CustomerPortalFragment.model_rebuild()
|
|
2800
2800
|
CustomerStatisticsFragment.model_rebuild()
|
|
2801
2801
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
|
@@ -2805,8 +2805,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
2805
2805
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
2806
2806
|
LayoutConfigurationFragment.model_rebuild()
|
|
2807
2807
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
2808
|
-
MockPaywallPriceFragment.model_rebuild()
|
|
2809
2808
|
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2809
|
+
MockPaywallPriceFragment.model_rebuild()
|
|
2810
2810
|
MockPaywallAddonFragment.model_rebuild()
|
|
2811
2811
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2812
2812
|
MockPaywallPlanFragment.model_rebuild()
|
|
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=pc9LCxX-JHp05iOwlZI6QCpzXH5kinzBRAvgTHMBXyE,3433
|
|
|
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=E0gqZkwMS7mO-JW34At6-XobgDs8DnRffz3aIWVwdpA,100553
|
|
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.306.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.306.0.dist-info/METADATA,sha256=JTxa2eXF_IgRRvXEmypne-QF-suBaMRGuii6_iTVoE0,2258
|
|
165
|
+
stigg_api_client_v2-2.306.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.306.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|