stigg-api-client-v2 2.284.0__py3-none-any.whl → 2.285.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/enums.py +1 -0
- stigg/generated/fragments.py +189 -189
- {stigg_api_client_v2-2.284.0.dist-info → stigg_api_client_v2-2.285.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.284.0.dist-info → stigg_api_client_v2-2.285.0.dist-info}/RECORD +6 -6
- {stigg_api_client_v2-2.284.0.dist-info → stigg_api_client_v2-2.285.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.284.0.dist-info → stigg_api_client_v2-2.285.0.dist-info}/WHEEL +0 -0
stigg/generated/enums.py
CHANGED
|
@@ -466,6 +466,7 @@ class ErrorCode(str, Enum):
|
|
|
466
466
|
InvalidAddressError = "InvalidAddressError"
|
|
467
467
|
InvalidArgumentError = "InvalidArgumentError"
|
|
468
468
|
InvalidCancellationDate = "InvalidCancellationDate"
|
|
469
|
+
InvalidDoggoSignatureError = "InvalidDoggoSignatureError"
|
|
469
470
|
InvalidEntitlementResetPeriod = "InvalidEntitlementResetPeriod"
|
|
470
471
|
InvalidMemberDelete = "InvalidMemberDelete"
|
|
471
472
|
InvalidMetadataError = "InvalidMetadataError"
|
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 PriceFragmentFeature(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")
|
|
@@ -215,30 +215,91 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
215
215
|
pass
|
|
216
216
|
|
|
217
217
|
|
|
218
|
-
class
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
226
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
227
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
228
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
229
|
-
alias="billingReason", default=None
|
|
218
|
+
class FeatureFragment(BaseModel):
|
|
219
|
+
typename__: str = Field(alias="__typename")
|
|
220
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
221
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
222
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
223
|
+
feature_units_plural: Optional[str] = Field(
|
|
224
|
+
alias="featureUnitsPlural", default=None
|
|
230
225
|
)
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
226
|
+
description: Optional[str] = Field(default=None)
|
|
227
|
+
display_name: str = Field(alias="displayName")
|
|
228
|
+
ref_id: str = Field(alias="refId")
|
|
229
|
+
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
230
|
+
alias="unitTransformation", default=None
|
|
235
231
|
)
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
class FeatureFragmentUnitTransformation(BaseModel):
|
|
235
|
+
divide: float
|
|
236
|
+
round: UnitTransformationRound
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
class EntitlementFragment(BaseModel):
|
|
240
|
+
typename__: str = Field(alias="__typename")
|
|
241
|
+
is_granted: bool = Field(alias="isGranted")
|
|
242
|
+
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
243
|
+
alias="accessDeniedReason", default=None
|
|
244
|
+
)
|
|
245
|
+
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
246
|
+
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
247
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
248
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
249
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
250
|
+
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
251
|
+
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
252
|
+
entitlement_updated_at: Optional[Any] = Field(
|
|
253
|
+
alias="entitlementUpdatedAt", default=None
|
|
254
|
+
)
|
|
255
|
+
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
256
|
+
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
257
|
+
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
258
|
+
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
259
|
+
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
260
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
261
|
+
alias="resetPeriod", default=None
|
|
262
|
+
)
|
|
263
|
+
reset_period_configuration: Optional[
|
|
264
|
+
Annotated[
|
|
265
|
+
Union[
|
|
266
|
+
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
267
|
+
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
268
|
+
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
269
|
+
],
|
|
270
|
+
Field(discriminator="typename__"),
|
|
271
|
+
]
|
|
272
|
+
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
273
|
+
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
277
|
+
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
278
|
+
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
279
|
+
alias="monthlyAccordingTo", default=None
|
|
280
|
+
)
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
284
|
+
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
285
|
+
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
286
|
+
alias="weeklyAccordingTo", default=None
|
|
239
287
|
)
|
|
240
|
-
|
|
241
|
-
|
|
288
|
+
|
|
289
|
+
|
|
290
|
+
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
291
|
+
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
292
|
+
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
293
|
+
alias="yearlyAccordingTo", default=None
|
|
294
|
+
)
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
class EntitlementFragmentFeature(FeatureFragment):
|
|
298
|
+
pass
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
302
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
242
303
|
|
|
243
304
|
|
|
244
305
|
class SubscriptionFutureUpdateData(BaseModel):
|
|
@@ -557,23 +618,25 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
557
618
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
558
619
|
|
|
559
620
|
|
|
560
|
-
class
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
621
|
+
class ProductFragment(BaseModel):
|
|
622
|
+
ref_id: str = Field(alias="refId")
|
|
623
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
624
|
+
description: Optional[str] = Field(default=None)
|
|
625
|
+
additional_meta_data: Optional[Any] = Field(
|
|
626
|
+
alias="additionalMetaData", default=None
|
|
627
|
+
)
|
|
628
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
568
629
|
|
|
569
630
|
|
|
570
|
-
class
|
|
571
|
-
|
|
572
|
-
|
|
631
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
632
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
633
|
+
alias="downgradePlan", default=None
|
|
634
|
+
)
|
|
573
635
|
|
|
574
636
|
|
|
575
|
-
class
|
|
576
|
-
|
|
637
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
638
|
+
ref_id: str = Field(alias="refId")
|
|
639
|
+
display_name: str = Field(alias="displayName")
|
|
577
640
|
|
|
578
641
|
|
|
579
642
|
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
@@ -594,27 +657,6 @@ class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
|
594
657
|
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
595
658
|
|
|
596
659
|
|
|
597
|
-
class ProductFragment(BaseModel):
|
|
598
|
-
ref_id: str = Field(alias="refId")
|
|
599
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
600
|
-
description: Optional[str] = Field(default=None)
|
|
601
|
-
additional_meta_data: Optional[Any] = Field(
|
|
602
|
-
alias="additionalMetaData", default=None
|
|
603
|
-
)
|
|
604
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
608
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
609
|
-
alias="downgradePlan", default=None
|
|
610
|
-
)
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
614
|
-
ref_id: str = Field(alias="refId")
|
|
615
|
-
display_name: str = Field(alias="displayName")
|
|
616
|
-
|
|
617
|
-
|
|
618
660
|
class PlanFragment(BaseModel):
|
|
619
661
|
id: str
|
|
620
662
|
ref_id: str = Field(alias="refId")
|
|
@@ -696,6 +738,21 @@ class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
|
696
738
|
limit: float
|
|
697
739
|
|
|
698
740
|
|
|
741
|
+
class TotalPriceFragment(BaseModel):
|
|
742
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
743
|
+
total: "TotalPriceFragmentTotal"
|
|
744
|
+
|
|
745
|
+
|
|
746
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
747
|
+
amount: float
|
|
748
|
+
currency: Currency
|
|
749
|
+
|
|
750
|
+
|
|
751
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
752
|
+
amount: float
|
|
753
|
+
currency: Currency
|
|
754
|
+
|
|
755
|
+
|
|
699
756
|
class SlimCustomerFragment(BaseModel):
|
|
700
757
|
id: str
|
|
701
758
|
name: Optional[str] = Field(default=None)
|
|
@@ -713,8 +770,34 @@ class SlimCustomerFragment(BaseModel):
|
|
|
713
770
|
)
|
|
714
771
|
|
|
715
772
|
|
|
716
|
-
class
|
|
717
|
-
|
|
773
|
+
class CustomerResourceFragment(BaseModel):
|
|
774
|
+
resource_id: str = Field(alias="resourceId")
|
|
775
|
+
|
|
776
|
+
|
|
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
|
|
789
|
+
)
|
|
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)
|
|
718
801
|
|
|
719
802
|
|
|
720
803
|
class SubscriptionFragment(BaseModel):
|
|
@@ -826,89 +909,6 @@ class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragm
|
|
|
826
909
|
pass
|
|
827
910
|
|
|
828
911
|
|
|
829
|
-
class FeatureFragment(BaseModel):
|
|
830
|
-
typename__: str = Field(alias="__typename")
|
|
831
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
832
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
833
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
834
|
-
feature_units_plural: Optional[str] = Field(
|
|
835
|
-
alias="featureUnitsPlural", default=None
|
|
836
|
-
)
|
|
837
|
-
description: Optional[str] = Field(default=None)
|
|
838
|
-
display_name: str = Field(alias="displayName")
|
|
839
|
-
ref_id: str = Field(alias="refId")
|
|
840
|
-
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
841
|
-
alias="unitTransformation", default=None
|
|
842
|
-
)
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
class FeatureFragmentUnitTransformation(BaseModel):
|
|
846
|
-
divide: float
|
|
847
|
-
round: UnitTransformationRound
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
class EntitlementFragment(BaseModel):
|
|
851
|
-
typename__: str = Field(alias="__typename")
|
|
852
|
-
is_granted: bool = Field(alias="isGranted")
|
|
853
|
-
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
854
|
-
alias="accessDeniedReason", default=None
|
|
855
|
-
)
|
|
856
|
-
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
857
|
-
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
858
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
859
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
860
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
861
|
-
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
862
|
-
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
863
|
-
entitlement_updated_at: Optional[Any] = Field(
|
|
864
|
-
alias="entitlementUpdatedAt", default=None
|
|
865
|
-
)
|
|
866
|
-
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
867
|
-
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
868
|
-
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
869
|
-
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
870
|
-
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
871
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
872
|
-
alias="resetPeriod", default=None
|
|
873
|
-
)
|
|
874
|
-
reset_period_configuration: Optional[
|
|
875
|
-
Annotated[
|
|
876
|
-
Union[
|
|
877
|
-
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
878
|
-
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
879
|
-
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
880
|
-
],
|
|
881
|
-
Field(discriminator="typename__"),
|
|
882
|
-
]
|
|
883
|
-
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
884
|
-
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
888
|
-
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
889
|
-
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
890
|
-
alias="monthlyAccordingTo", default=None
|
|
891
|
-
)
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
895
|
-
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
896
|
-
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
897
|
-
alias="weeklyAccordingTo", default=None
|
|
898
|
-
)
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
902
|
-
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
903
|
-
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
904
|
-
alias="yearlyAccordingTo", default=None
|
|
905
|
-
)
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
class EntitlementFragmentFeature(FeatureFragment):
|
|
909
|
-
pass
|
|
910
|
-
|
|
911
|
-
|
|
912
912
|
class ApplySubscriptionFragment(BaseModel):
|
|
913
913
|
subscription: Optional["ApplySubscriptionFragmentSubscription"] = Field(
|
|
914
914
|
default=None
|
|
@@ -1418,13 +1418,6 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1418
1418
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1419
1419
|
|
|
1420
1420
|
|
|
1421
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1422
|
-
addon_id: str = Field(alias="addonId")
|
|
1423
|
-
description: Optional[str] = Field(default=None)
|
|
1424
|
-
display_name: str = Field(alias="displayName")
|
|
1425
|
-
quantity: int
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
1421
|
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1429
1422
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1430
1423
|
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
@@ -1452,6 +1445,13 @@ class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
|
1452
1445
|
)
|
|
1453
1446
|
|
|
1454
1447
|
|
|
1448
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1449
|
+
addon_id: str = Field(alias="addonId")
|
|
1450
|
+
description: Optional[str] = Field(default=None)
|
|
1451
|
+
display_name: str = Field(alias="displayName")
|
|
1452
|
+
quantity: int
|
|
1453
|
+
|
|
1454
|
+
|
|
1455
1455
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1456
1456
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1457
1457
|
plan_id: str = Field(alias="planId")
|
|
@@ -2762,24 +2762,24 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2762
2762
|
|
|
2763
2763
|
|
|
2764
2764
|
AddonDependencyFragment.model_rebuild()
|
|
2765
|
-
PackageEntitlementFragment.model_rebuild()
|
|
2766
2765
|
PriceTierFragment.model_rebuild()
|
|
2767
2766
|
OveragePriceFragment.model_rebuild()
|
|
2768
2767
|
PriceFragment.model_rebuild()
|
|
2768
|
+
PackageEntitlementFragment.model_rebuild()
|
|
2769
2769
|
AddonFragment.model_rebuild()
|
|
2770
|
-
|
|
2770
|
+
FeatureFragment.model_rebuild()
|
|
2771
|
+
EntitlementFragment.model_rebuild()
|
|
2772
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2771
2773
|
SubscriptionFutureUpdateData.model_rebuild()
|
|
2772
2774
|
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2773
|
-
TotalPriceFragment.model_rebuild()
|
|
2774
|
-
CustomerResourceFragment.model_rebuild()
|
|
2775
|
-
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2776
2775
|
ProductFragment.model_rebuild()
|
|
2776
|
+
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2777
2777
|
PlanFragment.model_rebuild()
|
|
2778
|
+
TotalPriceFragment.model_rebuild()
|
|
2778
2779
|
SlimCustomerFragment.model_rebuild()
|
|
2779
|
-
|
|
2780
|
+
CustomerResourceFragment.model_rebuild()
|
|
2781
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2780
2782
|
SubscriptionFragment.model_rebuild()
|
|
2781
|
-
FeatureFragment.model_rebuild()
|
|
2782
|
-
EntitlementFragment.model_rebuild()
|
|
2783
2783
|
ApplySubscriptionFragment.model_rebuild()
|
|
2784
2784
|
FontVariantFragment.model_rebuild()
|
|
2785
2785
|
TypographyConfigurationFragment.model_rebuild()
|
|
@@ -2792,8 +2792,8 @@ CustomerPortalBillingInformationFragment.model_rebuild()
|
|
|
2792
2792
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2793
2793
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2794
2794
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2795
|
-
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2796
2795
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2796
|
+
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2797
2797
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2798
2798
|
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2799
2799
|
CustomerPortalFragment.model_rebuild()
|
|
@@ -119,11 +119,11 @@ stigg/generated/client.py,sha256=ID5x5Jok4GeF-j_WWeIQokdYlfH3iAOG7uqMD-mI0TI,169
|
|
|
119
119
|
stigg/generated/create_subscription.py,sha256=vbpBJ_daXHcQDtvU3vbwSr2E7s4VGRHxqPavyTV3Mtk,457
|
|
120
120
|
stigg/generated/delegate_subscription_to_customer.py,sha256=0TgQDO0Hk-z7X7PGtqhvciqa8IjkToK9cpiX3Kqu_UY,561
|
|
121
121
|
stigg/generated/detach_customer_payment_method.py,sha256=ACXlC2xsGaUP723OrayFZQ9SbXxe8TtVUYdG1gqcYFc,523
|
|
122
|
-
stigg/generated/enums.py,sha256=
|
|
122
|
+
stigg/generated/enums.py,sha256=sAWkIRKUluDgemnIRIPpRnCf49mbnaTUKOc_OxDO3NY,34153
|
|
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=O_AWcl5AuHieUQV8gXWh-V1nnHwyhRmeyzj8c8CRlV0,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.285.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.285.0.dist-info/METADATA,sha256=RzL-zAJ0wczxwL-QZ6n1RSqZS5-s28mctuyZfp09L2s,2258
|
|
165
|
+
stigg_api_client_v2-2.285.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.285.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|