stigg-api-client-v2 2.287.0__py3-none-any.whl → 2.289.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/generated/input_types.py +5 -0
- {stigg_api_client_v2-2.287.0.dist-info → stigg_api_client_v2-2.289.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.287.0.dist-info → stigg_api_client_v2-2.289.0.dist-info}/RECORD +6 -6
- {stigg_api_client_v2-2.287.0.dist-info → stigg_api_client_v2-2.289.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.287.0.dist-info → stigg_api_client_v2-2.289.0.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -59,39 +59,6 @@ class AddonDependencyFragment(BaseModel):
|
|
|
59
59
|
description: Optional[str] = Field(default=None)
|
|
60
60
|
|
|
61
61
|
|
|
62
|
-
class PackageEntitlementFragment(BaseModel):
|
|
63
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
64
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
65
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
66
|
-
feature_id: str = Field(alias="featureId")
|
|
67
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
68
|
-
alias="resetPeriod", default=None
|
|
69
|
-
)
|
|
70
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
71
|
-
alias="hiddenFromWidgets", default=None
|
|
72
|
-
)
|
|
73
|
-
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
74
|
-
display_name_override: Optional[str] = Field(
|
|
75
|
-
alias="displayNameOverride", default=None
|
|
76
|
-
)
|
|
77
|
-
feature: "PackageEntitlementFragmentFeature"
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
class PackageEntitlementFragmentFeature(BaseModel):
|
|
81
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
82
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
83
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
84
|
-
feature_units_plural: Optional[str] = Field(
|
|
85
|
-
alias="featureUnitsPlural", default=None
|
|
86
|
-
)
|
|
87
|
-
display_name: str = Field(alias="displayName")
|
|
88
|
-
description: Optional[str] = Field(default=None)
|
|
89
|
-
ref_id: str = Field(alias="refId")
|
|
90
|
-
additional_meta_data: Optional[Any] = Field(
|
|
91
|
-
alias="additionalMetaData", default=None
|
|
92
|
-
)
|
|
93
|
-
|
|
94
|
-
|
|
95
62
|
class PriceTierFragment(BaseModel):
|
|
96
63
|
up_to: Optional[float] = Field(alias="upTo", default=None)
|
|
97
64
|
unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
|
|
@@ -180,6 +147,39 @@ class OveragePriceFragmentFeature(BaseModel):
|
|
|
180
147
|
description: Optional[str] = Field(default=None)
|
|
181
148
|
|
|
182
149
|
|
|
150
|
+
class PackageEntitlementFragment(BaseModel):
|
|
151
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
152
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
153
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
154
|
+
feature_id: str = Field(alias="featureId")
|
|
155
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
156
|
+
alias="resetPeriod", default=None
|
|
157
|
+
)
|
|
158
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
159
|
+
alias="hiddenFromWidgets", default=None
|
|
160
|
+
)
|
|
161
|
+
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
162
|
+
display_name_override: Optional[str] = Field(
|
|
163
|
+
alias="displayNameOverride", default=None
|
|
164
|
+
)
|
|
165
|
+
feature: "PackageEntitlementFragmentFeature"
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
class PackageEntitlementFragmentFeature(BaseModel):
|
|
169
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
170
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
171
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
172
|
+
feature_units_plural: Optional[str] = Field(
|
|
173
|
+
alias="featureUnitsPlural", default=None
|
|
174
|
+
)
|
|
175
|
+
display_name: str = Field(alias="displayName")
|
|
176
|
+
description: Optional[str] = Field(default=None)
|
|
177
|
+
ref_id: str = Field(alias="refId")
|
|
178
|
+
additional_meta_data: Optional[Any] = Field(
|
|
179
|
+
alias="additionalMetaData", default=None
|
|
180
|
+
)
|
|
181
|
+
|
|
182
|
+
|
|
183
183
|
class AddonFragment(BaseModel):
|
|
184
184
|
id: str
|
|
185
185
|
ref_id: str = Field(alias="refId")
|
|
@@ -298,32 +298,6 @@ class EntitlementFragmentFeature(FeatureFragment):
|
|
|
298
298
|
pass
|
|
299
299
|
|
|
300
300
|
|
|
301
|
-
class SubscriptionInvoiceFragment(BaseModel):
|
|
302
|
-
billing_id: str = Field(alias="billingId")
|
|
303
|
-
status: SubscriptionInvoiceStatus
|
|
304
|
-
created_at: Any = Field(alias="createdAt")
|
|
305
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
306
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
307
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
308
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
309
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
310
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
311
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
312
|
-
alias="billingReason", default=None
|
|
313
|
-
)
|
|
314
|
-
currency: Optional[str] = Field(default=None)
|
|
315
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
316
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
317
|
-
alias="subTotalExcludingTax", default=None
|
|
318
|
-
)
|
|
319
|
-
total: Optional[float] = Field(default=None)
|
|
320
|
-
total_excluding_tax: Optional[float] = Field(
|
|
321
|
-
alias="totalExcludingTax", default=None
|
|
322
|
-
)
|
|
323
|
-
tax: Optional[float] = Field(default=None)
|
|
324
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
325
|
-
|
|
326
|
-
|
|
327
301
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
328
302
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
329
303
|
alias="subscriptionScheduleType"
|
|
@@ -486,130 +460,6 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
486
460
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
487
461
|
|
|
488
462
|
|
|
489
|
-
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
490
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
494
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
495
|
-
display_name: str = Field(alias="displayName")
|
|
496
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
497
|
-
default=None
|
|
498
|
-
)
|
|
499
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
503
|
-
pass
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
507
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
508
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
class ProductFragment(BaseModel):
|
|
512
|
-
ref_id: str = Field(alias="refId")
|
|
513
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
514
|
-
description: Optional[str] = Field(default=None)
|
|
515
|
-
additional_meta_data: Optional[Any] = Field(
|
|
516
|
-
alias="additionalMetaData", default=None
|
|
517
|
-
)
|
|
518
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
522
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
523
|
-
alias="downgradePlan", default=None
|
|
524
|
-
)
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
528
|
-
ref_id: str = Field(alias="refId")
|
|
529
|
-
display_name: str = Field(alias="displayName")
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
class PlanFragment(BaseModel):
|
|
533
|
-
id: str
|
|
534
|
-
ref_id: str = Field(alias="refId")
|
|
535
|
-
display_name: str = Field(alias="displayName")
|
|
536
|
-
description: Optional[str] = Field(default=None)
|
|
537
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
538
|
-
version_number: int = Field(alias="versionNumber")
|
|
539
|
-
additional_meta_data: Optional[Any] = Field(
|
|
540
|
-
alias="additionalMetaData", default=None
|
|
541
|
-
)
|
|
542
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
543
|
-
alias="hiddenFromWidgets", default=None
|
|
544
|
-
)
|
|
545
|
-
product: "PlanFragmentProduct"
|
|
546
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
547
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
548
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
549
|
-
alias="inheritedEntitlements", default=None
|
|
550
|
-
)
|
|
551
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
552
|
-
alias="compatibleAddons", default=None
|
|
553
|
-
)
|
|
554
|
-
compatible_package_groups: Optional[
|
|
555
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
556
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
557
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
558
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
559
|
-
alias="overagePrices", default=None
|
|
560
|
-
)
|
|
561
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
562
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
563
|
-
alias="defaultTrialConfig", default=None
|
|
564
|
-
)
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
class PlanFragmentProduct(ProductFragment):
|
|
568
|
-
pass
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
572
|
-
ref_id: str = Field(alias="refId")
|
|
573
|
-
display_name: str = Field(alias="displayName")
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
577
|
-
pass
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
581
|
-
pass
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
585
|
-
pass
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
589
|
-
pass
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
class PlanFragmentPrices(PriceFragment):
|
|
593
|
-
pass
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
597
|
-
pass
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
601
|
-
duration: float
|
|
602
|
-
units: TrialPeriodUnits
|
|
603
|
-
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
604
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
605
|
-
alias="trialEndBehavior", default=None
|
|
606
|
-
)
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
610
|
-
limit: float
|
|
611
|
-
|
|
612
|
-
|
|
613
463
|
class SlimCustomerFragment(BaseModel):
|
|
614
464
|
id: str
|
|
615
465
|
name: Optional[str] = Field(default=None)
|
|
@@ -719,66 +569,220 @@ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddon
|
|
|
719
569
|
quantity: float
|
|
720
570
|
|
|
721
571
|
|
|
722
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
723
|
-
BaseModel
|
|
724
|
-
):
|
|
725
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
726
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
727
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
572
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
573
|
+
BaseModel
|
|
574
|
+
):
|
|
575
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
576
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
577
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
578
|
+
|
|
579
|
+
|
|
580
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
581
|
+
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
582
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
583
|
+
change_type: PlanChangeType = Field(alias="changeType")
|
|
584
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
585
|
+
billable_features: Optional[
|
|
586
|
+
List[
|
|
587
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
588
|
+
]
|
|
589
|
+
] = Field(alias="billableFeatures", default=None)
|
|
590
|
+
addons: Optional[
|
|
591
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
592
|
+
] = Field(default=None)
|
|
593
|
+
price_overrides: Optional[
|
|
594
|
+
List[
|
|
595
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
596
|
+
]
|
|
597
|
+
] = Field(alias="priceOverrides", default=None)
|
|
598
|
+
|
|
599
|
+
|
|
600
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
601
|
+
BaseModel
|
|
602
|
+
):
|
|
603
|
+
feature_id: str = Field(alias="featureId")
|
|
604
|
+
quantity: float
|
|
605
|
+
|
|
606
|
+
|
|
607
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
608
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
609
|
+
quantity: float
|
|
610
|
+
|
|
611
|
+
|
|
612
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
613
|
+
BaseModel
|
|
614
|
+
):
|
|
615
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
616
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
617
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
618
|
+
|
|
619
|
+
|
|
620
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
621
|
+
BaseModel
|
|
622
|
+
):
|
|
623
|
+
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
624
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
625
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
626
|
+
|
|
627
|
+
|
|
628
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
629
|
+
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
630
|
+
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
631
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
632
|
+
|
|
633
|
+
|
|
634
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
635
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
636
|
+
|
|
637
|
+
|
|
638
|
+
class CustomerResourceFragment(BaseModel):
|
|
639
|
+
resource_id: str = Field(alias="resourceId")
|
|
640
|
+
|
|
641
|
+
|
|
642
|
+
class ProductFragment(BaseModel):
|
|
643
|
+
ref_id: str = Field(alias="refId")
|
|
644
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
645
|
+
description: Optional[str] = Field(default=None)
|
|
646
|
+
additional_meta_data: Optional[Any] = Field(
|
|
647
|
+
alias="additionalMetaData", default=None
|
|
648
|
+
)
|
|
649
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
650
|
+
|
|
651
|
+
|
|
652
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
653
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
654
|
+
alias="downgradePlan", default=None
|
|
655
|
+
)
|
|
656
|
+
|
|
657
|
+
|
|
658
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
659
|
+
ref_id: str = Field(alias="refId")
|
|
660
|
+
display_name: str = Field(alias="displayName")
|
|
661
|
+
|
|
662
|
+
|
|
663
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
664
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
665
|
+
display_name: str = Field(alias="displayName")
|
|
666
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
667
|
+
default=None
|
|
668
|
+
)
|
|
669
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
670
|
+
|
|
671
|
+
|
|
672
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
673
|
+
pass
|
|
674
|
+
|
|
675
|
+
|
|
676
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
677
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
678
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
679
|
+
|
|
680
|
+
|
|
681
|
+
class PlanFragment(BaseModel):
|
|
682
|
+
id: str
|
|
683
|
+
ref_id: str = Field(alias="refId")
|
|
684
|
+
display_name: str = Field(alias="displayName")
|
|
685
|
+
description: Optional[str] = Field(default=None)
|
|
686
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
687
|
+
version_number: int = Field(alias="versionNumber")
|
|
688
|
+
additional_meta_data: Optional[Any] = Field(
|
|
689
|
+
alias="additionalMetaData", default=None
|
|
690
|
+
)
|
|
691
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
692
|
+
alias="hiddenFromWidgets", default=None
|
|
693
|
+
)
|
|
694
|
+
product: "PlanFragmentProduct"
|
|
695
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
696
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
697
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
698
|
+
alias="inheritedEntitlements", default=None
|
|
699
|
+
)
|
|
700
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
701
|
+
alias="compatibleAddons", default=None
|
|
702
|
+
)
|
|
703
|
+
compatible_package_groups: Optional[
|
|
704
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
705
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
706
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
707
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
708
|
+
alias="overagePrices", default=None
|
|
709
|
+
)
|
|
710
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
711
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
712
|
+
alias="defaultTrialConfig", default=None
|
|
713
|
+
)
|
|
714
|
+
|
|
715
|
+
|
|
716
|
+
class PlanFragmentProduct(ProductFragment):
|
|
717
|
+
pass
|
|
718
|
+
|
|
719
|
+
|
|
720
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
721
|
+
ref_id: str = Field(alias="refId")
|
|
722
|
+
display_name: str = Field(alias="displayName")
|
|
723
|
+
|
|
724
|
+
|
|
725
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
726
|
+
pass
|
|
727
|
+
|
|
728
|
+
|
|
729
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
730
|
+
pass
|
|
728
731
|
|
|
729
732
|
|
|
730
|
-
class
|
|
731
|
-
|
|
732
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
733
|
-
change_type: PlanChangeType = Field(alias="changeType")
|
|
734
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
735
|
-
billable_features: Optional[
|
|
736
|
-
List[
|
|
737
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
738
|
-
]
|
|
739
|
-
] = Field(alias="billableFeatures", default=None)
|
|
740
|
-
addons: Optional[
|
|
741
|
-
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
742
|
-
] = Field(default=None)
|
|
743
|
-
price_overrides: Optional[
|
|
744
|
-
List[
|
|
745
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
746
|
-
]
|
|
747
|
-
] = Field(alias="priceOverrides", default=None)
|
|
733
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
734
|
+
pass
|
|
748
735
|
|
|
749
736
|
|
|
750
|
-
class
|
|
751
|
-
|
|
752
|
-
):
|
|
753
|
-
feature_id: str = Field(alias="featureId")
|
|
754
|
-
quantity: float
|
|
737
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
738
|
+
pass
|
|
755
739
|
|
|
756
740
|
|
|
757
|
-
class
|
|
758
|
-
|
|
759
|
-
quantity: float
|
|
741
|
+
class PlanFragmentPrices(PriceFragment):
|
|
742
|
+
pass
|
|
760
743
|
|
|
761
744
|
|
|
762
|
-
class
|
|
763
|
-
|
|
764
|
-
):
|
|
765
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
766
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
767
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
745
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
746
|
+
pass
|
|
768
747
|
|
|
769
748
|
|
|
770
|
-
class
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
749
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
750
|
+
duration: float
|
|
751
|
+
units: TrialPeriodUnits
|
|
752
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
753
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
754
|
+
alias="trialEndBehavior", default=None
|
|
755
|
+
)
|
|
776
756
|
|
|
777
757
|
|
|
778
|
-
class
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
758
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
759
|
+
limit: float
|
|
760
|
+
|
|
761
|
+
|
|
762
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
763
|
+
billing_id: str = Field(alias="billingId")
|
|
764
|
+
status: SubscriptionInvoiceStatus
|
|
765
|
+
created_at: Any = Field(alias="createdAt")
|
|
766
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
767
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
768
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
769
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
770
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
771
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
772
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
773
|
+
alias="billingReason", default=None
|
|
774
|
+
)
|
|
775
|
+
currency: Optional[str] = Field(default=None)
|
|
776
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
777
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
778
|
+
alias="subTotalExcludingTax", default=None
|
|
779
|
+
)
|
|
780
|
+
total: Optional[float] = Field(default=None)
|
|
781
|
+
total_excluding_tax: Optional[float] = Field(
|
|
782
|
+
alias="totalExcludingTax", default=None
|
|
783
|
+
)
|
|
784
|
+
tax: Optional[float] = Field(default=None)
|
|
785
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
782
786
|
|
|
783
787
|
|
|
784
788
|
class TotalPriceFragment(BaseModel):
|
|
@@ -796,10 +800,6 @@ class TotalPriceFragmentTotal(BaseModel):
|
|
|
796
800
|
currency: Currency
|
|
797
801
|
|
|
798
802
|
|
|
799
|
-
class CustomerResourceFragment(BaseModel):
|
|
800
|
-
resource_id: str = Field(alias="resourceId")
|
|
801
|
-
|
|
802
|
-
|
|
803
803
|
class SubscriptionFragment(BaseModel):
|
|
804
804
|
id: str
|
|
805
805
|
subscription_id: str = Field(alias="subscriptionId")
|
|
@@ -1249,6 +1249,43 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1249
1249
|
pass
|
|
1250
1250
|
|
|
1251
1251
|
|
|
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)
|
|
1260
|
+
|
|
1261
|
+
|
|
1262
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1263
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1264
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1265
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1266
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1267
|
+
default=None
|
|
1268
|
+
)
|
|
1269
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1270
|
+
default=None
|
|
1271
|
+
)
|
|
1272
|
+
|
|
1273
|
+
|
|
1274
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1275
|
+
amount: float
|
|
1276
|
+
currency: Currency
|
|
1277
|
+
|
|
1278
|
+
|
|
1279
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1280
|
+
id: str
|
|
1281
|
+
ref_id: str = Field(alias="refId")
|
|
1282
|
+
display_name: str = Field(alias="displayName")
|
|
1283
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1284
|
+
feature_units_plural: Optional[str] = Field(
|
|
1285
|
+
alias="featureUnitsPlural", default=None
|
|
1286
|
+
)
|
|
1287
|
+
|
|
1288
|
+
|
|
1252
1289
|
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1253
1290
|
addon_id: str = Field(alias="addonId")
|
|
1254
1291
|
description: Optional[str] = Field(default=None)
|
|
@@ -1425,33 +1462,6 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1425
1462
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1426
1463
|
|
|
1427
1464
|
|
|
1428
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1429
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1430
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1431
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1432
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1433
|
-
default=None
|
|
1434
|
-
)
|
|
1435
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1436
|
-
default=None
|
|
1437
|
-
)
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1441
|
-
amount: float
|
|
1442
|
-
currency: Currency
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1446
|
-
id: str
|
|
1447
|
-
ref_id: str = Field(alias="refId")
|
|
1448
|
-
display_name: str = Field(alias="displayName")
|
|
1449
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1450
|
-
feature_units_plural: Optional[str] = Field(
|
|
1451
|
-
alias="featureUnitsPlural", default=None
|
|
1452
|
-
)
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
1465
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1456
1466
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1457
1467
|
plan_id: str = Field(alias="planId")
|
|
@@ -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,39 +1785,6 @@ 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
|
-
|
|
1821
1788
|
class MockPaywallPriceFragment(BaseModel):
|
|
1822
1789
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1823
1790
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1852,6 +1819,39 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1852
1819
|
display_name: str = Field(alias="displayName")
|
|
1853
1820
|
|
|
1854
1821
|
|
|
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")
|
|
@@ -2762,23 +2762,23 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2762
2762
|
|
|
2763
2763
|
|
|
2764
2764
|
AddonDependencyFragment.model_rebuild()
|
|
2765
|
-
PackageEntitlementFragment.model_rebuild()
|
|
2766
2765
|
PriceTierFragment.model_rebuild()
|
|
2767
2766
|
PriceFragment.model_rebuild()
|
|
2768
2767
|
OveragePriceFragment.model_rebuild()
|
|
2768
|
+
PackageEntitlementFragment.model_rebuild()
|
|
2769
2769
|
AddonFragment.model_rebuild()
|
|
2770
2770
|
FeatureFragment.model_rebuild()
|
|
2771
2771
|
EntitlementFragment.model_rebuild()
|
|
2772
|
-
SubscriptionInvoiceFragment.model_rebuild()
|
|
2773
2772
|
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2773
|
+
SlimCustomerFragment.model_rebuild()
|
|
2774
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2774
2775
|
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2775
|
-
|
|
2776
|
+
CustomerResourceFragment.model_rebuild()
|
|
2776
2777
|
ProductFragment.model_rebuild()
|
|
2778
|
+
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2777
2779
|
PlanFragment.model_rebuild()
|
|
2778
|
-
|
|
2779
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2780
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2780
2781
|
TotalPriceFragment.model_rebuild()
|
|
2781
|
-
CustomerResourceFragment.model_rebuild()
|
|
2782
2782
|
SubscriptionFragment.model_rebuild()
|
|
2783
2783
|
ApplySubscriptionFragment.model_rebuild()
|
|
2784
2784
|
FontVariantFragment.model_rebuild()
|
|
@@ -2791,11 +2791,11 @@ CheckoutStateFragment.model_rebuild()
|
|
|
2791
2791
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2792
2792
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2793
2793
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2794
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2795
|
+
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2794
2796
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2795
2797
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2796
|
-
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
|
-
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2809
2808
|
MockPaywallPriceFragment.model_rebuild()
|
|
2809
|
+
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2810
2810
|
MockPaywallAddonFragment.model_rebuild()
|
|
2811
2811
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2812
2812
|
MockPaywallPlanFragment.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -1930,6 +1930,7 @@ class ImportCustomerInput(BaseModel):
|
|
|
1930
1930
|
name: Optional[str] = None
|
|
1931
1931
|
payment_method_id: Optional[str] = Field(alias="paymentMethodId", default=None)
|
|
1932
1932
|
ref_id: Optional[str] = Field(alias="refId", default=None)
|
|
1933
|
+
salesforce_id: Optional[str] = Field(alias="salesforceId", default=None)
|
|
1933
1934
|
updated_at: Optional[Any] = Field(alias="updatedAt", default=None)
|
|
1934
1935
|
|
|
1935
1936
|
|
|
@@ -2001,7 +2002,11 @@ class ImportSubscriptionInput(BaseModel):
|
|
|
2001
2002
|
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
2002
2003
|
plan_id: str = Field(alias="planId")
|
|
2003
2004
|
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
2005
|
+
salesforce_id: Optional[str] = Field(alias="salesforceId", default=None)
|
|
2004
2006
|
start_date: Optional[Any] = Field(alias="startDate", default=None)
|
|
2007
|
+
subscription_entitlements: Optional[List["SubscriptionEntitlementInput"]] = Field(
|
|
2008
|
+
alias="subscriptionEntitlements", default=None
|
|
2009
|
+
)
|
|
2005
2010
|
unit_quantity: Optional[float] = Field(alias="unitQuantity", default=None)
|
|
2006
2011
|
updated_at: Optional[Any] = Field(alias="updatedAt", default=None)
|
|
2007
2012
|
|
|
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=sAWkIRKUluDgemnIRIPpRnCf49mbnaTUKOc_OxDO3NY,3415
|
|
|
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=vebx1BlNSSee-PvPM0P_lwZNH85mQhG4EPSAAsZ_KAk,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
|
|
@@ -144,7 +144,7 @@ stigg/generated/grant_promotional_entitlements.py,sha256=72PRYuqecL-0SkWb7deygkh
|
|
|
144
144
|
stigg/generated/import_customer.py,sha256=yEtrEB7T-Aykv3AUl-rAQz2XL6hKL0j-7JL3h-xi87o,403
|
|
145
145
|
stigg/generated/import_customer_bulk.py,sha256=miLn2ScWlPOH1IipltY5Vgd-ZQ_BkBk9t3-EsLvU5ZQ,284
|
|
146
146
|
stigg/generated/import_subscriptions_bulk.py,sha256=QgitpZkjE7eBhP1o5W0PTVAbKOvz61dNoeBAWupIcgU,297
|
|
147
|
-
stigg/generated/input_types.py,sha256=
|
|
147
|
+
stigg/generated/input_types.py,sha256=EsEsJcKn1CI1KEhFMVE6VgWCXutOa1f-ta6WVDG-__0,189350
|
|
148
148
|
stigg/generated/migrate_subscription_to_latest.py,sha256=qQDwH7EodYAeJFb62IIl-MAEB5MbthgCJ0v1RMxpdYk,516
|
|
149
149
|
stigg/generated/preview_next_invoice.py,sha256=MiQ4Gv7Ve1Hv60xhaQi7uj82aq0xLP2UB-gjvcQdOL8,478
|
|
150
150
|
stigg/generated/preview_subscription.py,sha256=Qo2vlFs7sFzqaE8J_e-EHTRfLvG46lko-dcJMxDSCR0,475
|
|
@@ -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.289.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.289.0.dist-info/METADATA,sha256=AG911F7P_i60gKjbOmDJy1DmWGXbGkWroaWop8-HU90,2258
|
|
165
|
+
stigg_api_client_v2-2.289.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.289.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|