stigg-api-client-v2 2.467.0__py3-none-any.whl → 2.470.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 +187 -187
- {stigg_api_client_v2-2.467.0.dist-info → stigg_api_client_v2-2.470.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.467.0.dist-info → stigg_api_client_v2-2.470.0.dist-info}/RECORD +6 -6
- {stigg_api_client_v2-2.467.0.dist-info → stigg_api_client_v2-2.470.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.467.0.dist-info → stigg_api_client_v2-2.470.0.dist-info}/WHEEL +0 -0
stigg/generated/enums.py
CHANGED
|
@@ -10,6 +10,7 @@ class AccessDeniedReason(str, Enum):
|
|
|
10
10
|
CustomerNotFound = "CustomerNotFound"
|
|
11
11
|
CustomerResourceNotFound = "CustomerResourceNotFound"
|
|
12
12
|
FeatureNotFound = "FeatureNotFound"
|
|
13
|
+
FeatureTypeMismatch = "FeatureTypeMismatch"
|
|
13
14
|
NoActiveSubscription = "NoActiveSubscription"
|
|
14
15
|
NoFeatureEntitlementInSubscription = "NoFeatureEntitlementInSubscription"
|
|
15
16
|
RequestedUsageExceedingLimit = "RequestedUsageExceedingLimit"
|
stigg/generated/fragments.py
CHANGED
|
@@ -219,147 +219,10 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
219
219
|
pass
|
|
220
220
|
|
|
221
221
|
|
|
222
|
-
class SlimCustomerFragment(BaseModel):
|
|
223
|
-
id: str
|
|
224
|
-
name: Optional[str] = Field(default=None)
|
|
225
|
-
email: Optional[str] = Field(default=None)
|
|
226
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
227
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
228
|
-
ref_id: str = Field(alias="refId")
|
|
229
|
-
customer_id: str = Field(alias="customerId")
|
|
230
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
231
|
-
additional_meta_data: Optional[Any] = Field(
|
|
232
|
-
alias="additionalMetaData", default=None
|
|
233
|
-
)
|
|
234
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
235
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
236
|
-
)
|
|
237
|
-
|
|
238
|
-
|
|
239
222
|
class CustomerResourceFragment(BaseModel):
|
|
240
223
|
resource_id: str = Field(alias="resourceId")
|
|
241
224
|
|
|
242
225
|
|
|
243
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
244
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
245
|
-
display_name: str = Field(alias="displayName")
|
|
246
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
247
|
-
default=None
|
|
248
|
-
)
|
|
249
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
253
|
-
pass
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
257
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
258
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
class ProductFragment(BaseModel):
|
|
262
|
-
ref_id: str = Field(alias="refId")
|
|
263
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
264
|
-
description: Optional[str] = Field(default=None)
|
|
265
|
-
additional_meta_data: Optional[Any] = Field(
|
|
266
|
-
alias="additionalMetaData", default=None
|
|
267
|
-
)
|
|
268
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
272
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
273
|
-
alias="downgradePlan", default=None
|
|
274
|
-
)
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
278
|
-
ref_id: str = Field(alias="refId")
|
|
279
|
-
display_name: str = Field(alias="displayName")
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
class PlanFragment(BaseModel):
|
|
283
|
-
id: str
|
|
284
|
-
ref_id: str = Field(alias="refId")
|
|
285
|
-
display_name: str = Field(alias="displayName")
|
|
286
|
-
description: Optional[str] = Field(default=None)
|
|
287
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
288
|
-
version_number: int = Field(alias="versionNumber")
|
|
289
|
-
additional_meta_data: Optional[Any] = Field(
|
|
290
|
-
alias="additionalMetaData", default=None
|
|
291
|
-
)
|
|
292
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
293
|
-
alias="hiddenFromWidgets", default=None
|
|
294
|
-
)
|
|
295
|
-
product: "PlanFragmentProduct"
|
|
296
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
297
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
298
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
299
|
-
alias="inheritedEntitlements", default=None
|
|
300
|
-
)
|
|
301
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
302
|
-
alias="compatibleAddons", default=None
|
|
303
|
-
)
|
|
304
|
-
compatible_package_groups: Optional[
|
|
305
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
306
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
307
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
308
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
309
|
-
alias="overagePrices", default=None
|
|
310
|
-
)
|
|
311
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
312
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
313
|
-
alias="defaultTrialConfig", default=None
|
|
314
|
-
)
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
class PlanFragmentProduct(ProductFragment):
|
|
318
|
-
pass
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
322
|
-
ref_id: str = Field(alias="refId")
|
|
323
|
-
display_name: str = Field(alias="displayName")
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
327
|
-
pass
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
331
|
-
pass
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
335
|
-
pass
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
339
|
-
pass
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
class PlanFragmentPrices(PriceFragment):
|
|
343
|
-
pass
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
347
|
-
pass
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
351
|
-
duration: float
|
|
352
|
-
units: TrialPeriodUnits
|
|
353
|
-
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
354
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
355
|
-
alias="trialEndBehavior", default=None
|
|
356
|
-
)
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
360
|
-
limit: float
|
|
361
|
-
|
|
362
|
-
|
|
363
226
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
364
227
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
365
228
|
alias="subscriptionScheduleType"
|
|
@@ -676,10 +539,42 @@ class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(Bas
|
|
|
676
539
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
677
540
|
|
|
678
541
|
|
|
542
|
+
class SlimCustomerFragment(BaseModel):
|
|
543
|
+
id: str
|
|
544
|
+
name: Optional[str] = Field(default=None)
|
|
545
|
+
email: Optional[str] = Field(default=None)
|
|
546
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
547
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
548
|
+
ref_id: str = Field(alias="refId")
|
|
549
|
+
customer_id: str = Field(alias="customerId")
|
|
550
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
551
|
+
additional_meta_data: Optional[Any] = Field(
|
|
552
|
+
alias="additionalMetaData", default=None
|
|
553
|
+
)
|
|
554
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
555
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
556
|
+
)
|
|
557
|
+
|
|
558
|
+
|
|
679
559
|
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
680
560
|
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
681
561
|
|
|
682
562
|
|
|
563
|
+
class TotalPriceFragment(BaseModel):
|
|
564
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
565
|
+
total: "TotalPriceFragmentTotal"
|
|
566
|
+
|
|
567
|
+
|
|
568
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
569
|
+
amount: float
|
|
570
|
+
currency: Currency
|
|
571
|
+
|
|
572
|
+
|
|
573
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
574
|
+
amount: float
|
|
575
|
+
currency: Currency
|
|
576
|
+
|
|
577
|
+
|
|
683
578
|
class SubscriptionInvoiceFragment(BaseModel):
|
|
684
579
|
billing_id: str = Field(alias="billingId")
|
|
685
580
|
status: SubscriptionInvoiceStatus
|
|
@@ -707,19 +602,124 @@ class SubscriptionInvoiceFragment(BaseModel):
|
|
|
707
602
|
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
708
603
|
|
|
709
604
|
|
|
710
|
-
class
|
|
711
|
-
|
|
712
|
-
|
|
605
|
+
class ProductFragment(BaseModel):
|
|
606
|
+
ref_id: str = Field(alias="refId")
|
|
607
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
608
|
+
description: Optional[str] = Field(default=None)
|
|
609
|
+
additional_meta_data: Optional[Any] = Field(
|
|
610
|
+
alias="additionalMetaData", default=None
|
|
611
|
+
)
|
|
612
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
713
613
|
|
|
714
614
|
|
|
715
|
-
class
|
|
716
|
-
|
|
717
|
-
|
|
615
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
616
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
617
|
+
alias="downgradePlan", default=None
|
|
618
|
+
)
|
|
718
619
|
|
|
719
620
|
|
|
720
|
-
class
|
|
721
|
-
|
|
722
|
-
|
|
621
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
622
|
+
ref_id: str = Field(alias="refId")
|
|
623
|
+
display_name: str = Field(alias="displayName")
|
|
624
|
+
|
|
625
|
+
|
|
626
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
627
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
628
|
+
display_name: str = Field(alias="displayName")
|
|
629
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
630
|
+
default=None
|
|
631
|
+
)
|
|
632
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
633
|
+
|
|
634
|
+
|
|
635
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
636
|
+
pass
|
|
637
|
+
|
|
638
|
+
|
|
639
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
640
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
641
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
642
|
+
|
|
643
|
+
|
|
644
|
+
class PlanFragment(BaseModel):
|
|
645
|
+
id: str
|
|
646
|
+
ref_id: str = Field(alias="refId")
|
|
647
|
+
display_name: str = Field(alias="displayName")
|
|
648
|
+
description: Optional[str] = Field(default=None)
|
|
649
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
650
|
+
version_number: int = Field(alias="versionNumber")
|
|
651
|
+
additional_meta_data: Optional[Any] = Field(
|
|
652
|
+
alias="additionalMetaData", default=None
|
|
653
|
+
)
|
|
654
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
655
|
+
alias="hiddenFromWidgets", default=None
|
|
656
|
+
)
|
|
657
|
+
product: "PlanFragmentProduct"
|
|
658
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
659
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
660
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
661
|
+
alias="inheritedEntitlements", default=None
|
|
662
|
+
)
|
|
663
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
664
|
+
alias="compatibleAddons", default=None
|
|
665
|
+
)
|
|
666
|
+
compatible_package_groups: Optional[
|
|
667
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
668
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
669
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
670
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
671
|
+
alias="overagePrices", default=None
|
|
672
|
+
)
|
|
673
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
674
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
675
|
+
alias="defaultTrialConfig", default=None
|
|
676
|
+
)
|
|
677
|
+
|
|
678
|
+
|
|
679
|
+
class PlanFragmentProduct(ProductFragment):
|
|
680
|
+
pass
|
|
681
|
+
|
|
682
|
+
|
|
683
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
684
|
+
ref_id: str = Field(alias="refId")
|
|
685
|
+
display_name: str = Field(alias="displayName")
|
|
686
|
+
|
|
687
|
+
|
|
688
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
689
|
+
pass
|
|
690
|
+
|
|
691
|
+
|
|
692
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
693
|
+
pass
|
|
694
|
+
|
|
695
|
+
|
|
696
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
697
|
+
pass
|
|
698
|
+
|
|
699
|
+
|
|
700
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
701
|
+
pass
|
|
702
|
+
|
|
703
|
+
|
|
704
|
+
class PlanFragmentPrices(PriceFragment):
|
|
705
|
+
pass
|
|
706
|
+
|
|
707
|
+
|
|
708
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
709
|
+
pass
|
|
710
|
+
|
|
711
|
+
|
|
712
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
713
|
+
duration: float
|
|
714
|
+
units: TrialPeriodUnits
|
|
715
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
716
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
717
|
+
alias="trialEndBehavior", default=None
|
|
718
|
+
)
|
|
719
|
+
|
|
720
|
+
|
|
721
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
722
|
+
limit: float
|
|
723
723
|
|
|
724
724
|
|
|
725
725
|
class SubscriptionFragment(BaseModel):
|
|
@@ -1260,40 +1260,6 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1260
1260
|
pass
|
|
1261
1261
|
|
|
1262
1262
|
|
|
1263
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1264
|
-
addon_id: str = Field(alias="addonId")
|
|
1265
|
-
description: Optional[str] = Field(default=None)
|
|
1266
|
-
display_name: str = Field(alias="displayName")
|
|
1267
|
-
quantity: int
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1271
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1272
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1273
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1274
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1275
|
-
default=None
|
|
1276
|
-
)
|
|
1277
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1278
|
-
default=None
|
|
1279
|
-
)
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1283
|
-
amount: float
|
|
1284
|
-
currency: Currency
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1288
|
-
id: str
|
|
1289
|
-
ref_id: str = Field(alias="refId")
|
|
1290
|
-
display_name: str = Field(alias="displayName")
|
|
1291
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1292
|
-
feature_units_plural: Optional[str] = Field(
|
|
1293
|
-
alias="featureUnitsPlural", default=None
|
|
1294
|
-
)
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
1263
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1298
1264
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1299
1265
|
alias="subscriptionScheduleType"
|
|
@@ -1463,6 +1429,40 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1463
1429
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1464
1430
|
|
|
1465
1431
|
|
|
1432
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1433
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1434
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1435
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1436
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1437
|
+
default=None
|
|
1438
|
+
)
|
|
1439
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1440
|
+
default=None
|
|
1441
|
+
)
|
|
1442
|
+
|
|
1443
|
+
|
|
1444
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1445
|
+
amount: float
|
|
1446
|
+
currency: Currency
|
|
1447
|
+
|
|
1448
|
+
|
|
1449
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1450
|
+
id: str
|
|
1451
|
+
ref_id: str = Field(alias="refId")
|
|
1452
|
+
display_name: str = Field(alias="displayName")
|
|
1453
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1454
|
+
feature_units_plural: Optional[str] = Field(
|
|
1455
|
+
alias="featureUnitsPlural", default=None
|
|
1456
|
+
)
|
|
1457
|
+
|
|
1458
|
+
|
|
1459
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1460
|
+
addon_id: str = Field(alias="addonId")
|
|
1461
|
+
description: Optional[str] = Field(default=None)
|
|
1462
|
+
display_name: str = Field(alias="displayName")
|
|
1463
|
+
quantity: int
|
|
1464
|
+
|
|
1465
|
+
|
|
1466
1466
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1467
1467
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1468
1468
|
plan_id: str = Field(alias="planId")
|
|
@@ -2839,16 +2839,16 @@ PriceFragment.model_rebuild()
|
|
|
2839
2839
|
OveragePriceFragment.model_rebuild()
|
|
2840
2840
|
PackageEntitlementFragment.model_rebuild()
|
|
2841
2841
|
AddonFragment.model_rebuild()
|
|
2842
|
-
SlimCustomerFragment.model_rebuild()
|
|
2843
2842
|
CustomerResourceFragment.model_rebuild()
|
|
2844
|
-
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2845
|
-
ProductFragment.model_rebuild()
|
|
2846
|
-
PlanFragment.model_rebuild()
|
|
2847
2843
|
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2848
2844
|
SubscriptionFutureUpdateData.model_rebuild()
|
|
2845
|
+
SlimCustomerFragment.model_rebuild()
|
|
2849
2846
|
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2850
|
-
SubscriptionInvoiceFragment.model_rebuild()
|
|
2851
2847
|
TotalPriceFragment.model_rebuild()
|
|
2848
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2849
|
+
ProductFragment.model_rebuild()
|
|
2850
|
+
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2851
|
+
PlanFragment.model_rebuild()
|
|
2852
2852
|
SubscriptionFragment.model_rebuild()
|
|
2853
2853
|
FeatureFragment.model_rebuild()
|
|
2854
2854
|
EntitlementFragment.model_rebuild()
|
|
@@ -2863,9 +2863,9 @@ CheckoutStateFragment.model_rebuild()
|
|
|
2863
2863
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2864
2864
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2865
2865
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2866
|
-
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2867
|
-
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2868
2866
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2867
|
+
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2868
|
+
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2869
2869
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2870
2870
|
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2871
2871
|
CustomerPortalFragment.model_rebuild()
|
|
@@ -119,11 +119,11 @@ stigg/generated/client.py,sha256=OXPEsN3pWBsiqUcTkLsmFEW4p23uiAXrWtgjs0CHcN4,172
|
|
|
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=zRFjUe-NJ3-4oQ67F5kRyqpbYtjJ-XrQcGMHspaODhM,36260
|
|
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=jeJxvGlfr5qZ-Dq87BEmNGbTtoZ6a6xyhkrwqcfYB10,103354
|
|
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
|
|
@@ -161,7 +161,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
|
|
|
161
161
|
stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
|
|
162
162
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
163
163
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
164
|
-
stigg_api_client_v2-2.
|
|
165
|
-
stigg_api_client_v2-2.
|
|
166
|
-
stigg_api_client_v2-2.
|
|
167
|
-
stigg_api_client_v2-2.
|
|
164
|
+
stigg_api_client_v2-2.470.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
165
|
+
stigg_api_client_v2-2.470.0.dist-info/METADATA,sha256=wPqV12F1nHQqUV_u01XIIzkzI6yoc5tsb2DIBXAGN2o,2258
|
|
166
|
+
stigg_api_client_v2-2.470.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
167
|
+
stigg_api_client_v2-2.470.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|