stigg-api-client-v2 2.412.2__py3-none-any.whl → 2.414.3__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 +239 -239
- {stigg_api_client_v2-2.412.2.dist-info → stigg_api_client_v2-2.414.3.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.412.2.dist-info → stigg_api_client_v2-2.414.3.dist-info}/RECORD +5 -5
- {stigg_api_client_v2-2.412.2.dist-info → stigg_api_client_v2-2.414.3.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.412.2.dist-info → stigg_api_client_v2-2.414.3.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -299,12 +299,52 @@ class EntitlementFragmentFeature(FeatureFragment):
|
|
|
299
299
|
pass
|
|
300
300
|
|
|
301
301
|
|
|
302
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
303
|
+
billing_id: str = Field(alias="billingId")
|
|
304
|
+
status: SubscriptionInvoiceStatus
|
|
305
|
+
created_at: Any = Field(alias="createdAt")
|
|
306
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
307
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
308
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
309
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
310
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
311
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
312
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
313
|
+
alias="billingReason", default=None
|
|
314
|
+
)
|
|
315
|
+
currency: Optional[str] = Field(default=None)
|
|
316
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
317
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
318
|
+
alias="subTotalExcludingTax", default=None
|
|
319
|
+
)
|
|
320
|
+
total: Optional[float] = Field(default=None)
|
|
321
|
+
total_excluding_tax: Optional[float] = Field(
|
|
322
|
+
alias="totalExcludingTax", default=None
|
|
323
|
+
)
|
|
324
|
+
tax: Optional[float] = Field(default=None)
|
|
325
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
326
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
327
|
+
|
|
328
|
+
|
|
302
329
|
class CustomerResourceFragment(BaseModel):
|
|
303
330
|
resource_id: str = Field(alias="resourceId")
|
|
304
331
|
|
|
305
332
|
|
|
306
|
-
class
|
|
307
|
-
|
|
333
|
+
class SlimCustomerFragment(BaseModel):
|
|
334
|
+
id: str
|
|
335
|
+
name: Optional[str] = Field(default=None)
|
|
336
|
+
email: Optional[str] = Field(default=None)
|
|
337
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
338
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
339
|
+
ref_id: str = Field(alias="refId")
|
|
340
|
+
customer_id: str = Field(alias="customerId")
|
|
341
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
342
|
+
additional_meta_data: Optional[Any] = Field(
|
|
343
|
+
alias="additionalMetaData", default=None
|
|
344
|
+
)
|
|
345
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
346
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
347
|
+
)
|
|
308
348
|
|
|
309
349
|
|
|
310
350
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
@@ -469,48 +509,143 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
469
509
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
470
510
|
|
|
471
511
|
|
|
472
|
-
class
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
512
|
+
class TotalPriceFragment(BaseModel):
|
|
513
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
514
|
+
total: "TotalPriceFragmentTotal"
|
|
515
|
+
|
|
516
|
+
|
|
517
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
518
|
+
amount: float
|
|
519
|
+
currency: Currency
|
|
520
|
+
|
|
521
|
+
|
|
522
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
523
|
+
amount: float
|
|
524
|
+
currency: Currency
|
|
525
|
+
|
|
526
|
+
|
|
527
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
528
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
529
|
+
|
|
530
|
+
|
|
531
|
+
class ProductFragment(BaseModel):
|
|
478
532
|
ref_id: str = Field(alias="refId")
|
|
479
|
-
|
|
480
|
-
|
|
533
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
534
|
+
description: Optional[str] = Field(default=None)
|
|
481
535
|
additional_meta_data: Optional[Any] = Field(
|
|
482
536
|
alias="additionalMetaData", default=None
|
|
483
537
|
)
|
|
484
|
-
|
|
485
|
-
|
|
538
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
539
|
+
|
|
540
|
+
|
|
541
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
542
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
543
|
+
alias="downgradePlan", default=None
|
|
486
544
|
)
|
|
487
545
|
|
|
488
546
|
|
|
489
|
-
class
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
500
|
-
alias="billingReason", default=None
|
|
547
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
548
|
+
ref_id: str = Field(alias="refId")
|
|
549
|
+
display_name: str = Field(alias="displayName")
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
553
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
554
|
+
display_name: str = Field(alias="displayName")
|
|
555
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
556
|
+
default=None
|
|
501
557
|
)
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
558
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
559
|
+
|
|
560
|
+
|
|
561
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
562
|
+
pass
|
|
563
|
+
|
|
564
|
+
|
|
565
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
566
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
567
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
568
|
+
|
|
569
|
+
|
|
570
|
+
class PlanFragment(BaseModel):
|
|
571
|
+
id: str
|
|
572
|
+
ref_id: str = Field(alias="refId")
|
|
573
|
+
display_name: str = Field(alias="displayName")
|
|
574
|
+
description: Optional[str] = Field(default=None)
|
|
575
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
576
|
+
version_number: int = Field(alias="versionNumber")
|
|
577
|
+
additional_meta_data: Optional[Any] = Field(
|
|
578
|
+
alias="additionalMetaData", default=None
|
|
506
579
|
)
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
alias="totalExcludingTax", default=None
|
|
580
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
581
|
+
alias="hiddenFromWidgets", default=None
|
|
510
582
|
)
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
583
|
+
product: "PlanFragmentProduct"
|
|
584
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
585
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
586
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
587
|
+
alias="inheritedEntitlements", default=None
|
|
588
|
+
)
|
|
589
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
590
|
+
alias="compatibleAddons", default=None
|
|
591
|
+
)
|
|
592
|
+
compatible_package_groups: Optional[
|
|
593
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
594
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
595
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
596
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
597
|
+
alias="overagePrices", default=None
|
|
598
|
+
)
|
|
599
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
600
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
601
|
+
alias="defaultTrialConfig", default=None
|
|
602
|
+
)
|
|
603
|
+
|
|
604
|
+
|
|
605
|
+
class PlanFragmentProduct(ProductFragment):
|
|
606
|
+
pass
|
|
607
|
+
|
|
608
|
+
|
|
609
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
610
|
+
ref_id: str = Field(alias="refId")
|
|
611
|
+
display_name: str = Field(alias="displayName")
|
|
612
|
+
|
|
613
|
+
|
|
614
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
615
|
+
pass
|
|
616
|
+
|
|
617
|
+
|
|
618
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
619
|
+
pass
|
|
620
|
+
|
|
621
|
+
|
|
622
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
623
|
+
pass
|
|
624
|
+
|
|
625
|
+
|
|
626
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
627
|
+
pass
|
|
628
|
+
|
|
629
|
+
|
|
630
|
+
class PlanFragmentPrices(PriceFragment):
|
|
631
|
+
pass
|
|
632
|
+
|
|
633
|
+
|
|
634
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
635
|
+
pass
|
|
636
|
+
|
|
637
|
+
|
|
638
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
639
|
+
duration: float
|
|
640
|
+
units: TrialPeriodUnits
|
|
641
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
642
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
643
|
+
alias="trialEndBehavior", default=None
|
|
644
|
+
)
|
|
645
|
+
|
|
646
|
+
|
|
647
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
648
|
+
limit: float
|
|
514
649
|
|
|
515
650
|
|
|
516
651
|
class SubscriptionFutureUpdateData(BaseModel):
|
|
@@ -667,141 +802,6 @@ class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(Bas
|
|
|
667
802
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
668
803
|
|
|
669
804
|
|
|
670
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
671
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
672
|
-
display_name: str = Field(alias="displayName")
|
|
673
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
674
|
-
default=None
|
|
675
|
-
)
|
|
676
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
680
|
-
pass
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
684
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
685
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
class ProductFragment(BaseModel):
|
|
689
|
-
ref_id: str = Field(alias="refId")
|
|
690
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
691
|
-
description: Optional[str] = Field(default=None)
|
|
692
|
-
additional_meta_data: Optional[Any] = Field(
|
|
693
|
-
alias="additionalMetaData", default=None
|
|
694
|
-
)
|
|
695
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
699
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
700
|
-
alias="downgradePlan", default=None
|
|
701
|
-
)
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
705
|
-
ref_id: str = Field(alias="refId")
|
|
706
|
-
display_name: str = Field(alias="displayName")
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
class PlanFragment(BaseModel):
|
|
710
|
-
id: str
|
|
711
|
-
ref_id: str = Field(alias="refId")
|
|
712
|
-
display_name: str = Field(alias="displayName")
|
|
713
|
-
description: Optional[str] = Field(default=None)
|
|
714
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
715
|
-
version_number: int = Field(alias="versionNumber")
|
|
716
|
-
additional_meta_data: Optional[Any] = Field(
|
|
717
|
-
alias="additionalMetaData", default=None
|
|
718
|
-
)
|
|
719
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
720
|
-
alias="hiddenFromWidgets", default=None
|
|
721
|
-
)
|
|
722
|
-
product: "PlanFragmentProduct"
|
|
723
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
724
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
725
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
726
|
-
alias="inheritedEntitlements", default=None
|
|
727
|
-
)
|
|
728
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
729
|
-
alias="compatibleAddons", default=None
|
|
730
|
-
)
|
|
731
|
-
compatible_package_groups: Optional[
|
|
732
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
733
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
734
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
735
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
736
|
-
alias="overagePrices", default=None
|
|
737
|
-
)
|
|
738
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
739
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
740
|
-
alias="defaultTrialConfig", default=None
|
|
741
|
-
)
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
class PlanFragmentProduct(ProductFragment):
|
|
745
|
-
pass
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
749
|
-
ref_id: str = Field(alias="refId")
|
|
750
|
-
display_name: str = Field(alias="displayName")
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
754
|
-
pass
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
758
|
-
pass
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
762
|
-
pass
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
766
|
-
pass
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
class PlanFragmentPrices(PriceFragment):
|
|
770
|
-
pass
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
774
|
-
pass
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
778
|
-
duration: float
|
|
779
|
-
units: TrialPeriodUnits
|
|
780
|
-
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
781
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
782
|
-
alias="trialEndBehavior", default=None
|
|
783
|
-
)
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
787
|
-
limit: float
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
class TotalPriceFragment(BaseModel):
|
|
791
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
792
|
-
total: "TotalPriceFragmentTotal"
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
796
|
-
amount: float
|
|
797
|
-
currency: Currency
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
801
|
-
amount: float
|
|
802
|
-
currency: Currency
|
|
803
|
-
|
|
804
|
-
|
|
805
805
|
class SubscriptionFragment(BaseModel):
|
|
806
806
|
id: str
|
|
807
807
|
subscription_id: str = Field(alias="subscriptionId")
|
|
@@ -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")
|
|
@@ -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")
|
|
@@ -2777,23 +2777,23 @@ PriceFragment.model_rebuild()
|
|
|
2777
2777
|
AddonFragment.model_rebuild()
|
|
2778
2778
|
FeatureFragment.model_rebuild()
|
|
2779
2779
|
EntitlementFragment.model_rebuild()
|
|
2780
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2780
2781
|
CustomerResourceFragment.model_rebuild()
|
|
2781
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2782
|
-
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2783
2782
|
SlimCustomerFragment.model_rebuild()
|
|
2784
|
-
|
|
2785
|
-
|
|
2786
|
-
|
|
2783
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2784
|
+
TotalPriceFragment.model_rebuild()
|
|
2785
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2787
2786
|
ProductFragment.model_rebuild()
|
|
2787
|
+
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2788
2788
|
PlanFragment.model_rebuild()
|
|
2789
|
-
|
|
2789
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2790
2790
|
SubscriptionFragment.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()
|
|
@@ -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()
|
|
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=t6q4y-5cKBmgLTrf_2YWXkNvmclEjnvBos1Ycd0aomI,3521
|
|
|
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=9SpA5ohccoQeVjWQU9UMQPFE_CD_ffwZUpUV3TYLrkg,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.414.3.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.414.3.dist-info/METADATA,sha256=eTiOcSNYyVN4ZchRow3rcNL8b6d72nHnFvVLQ3vhYEQ,2258
|
|
165
|
+
stigg_api_client_v2-2.414.3.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.414.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|