stigg-api-client-v2 2.491.0__py3-none-any.whl → 2.492.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.

@@ -893,7 +893,7 @@ from .input_types import (
893
893
  UnArchiveFeatureInput,
894
894
  UnArchivePlanInput,
895
895
  UnitTransformationInput,
896
- UnlinkFeatureGroupInput,
896
+ UnlinkFeatureGroupFromPackageInput,
897
897
  UpdateAccountInput,
898
898
  UpdateCouponInput,
899
899
  UpdateCustomerInput,
@@ -1842,7 +1842,7 @@ __all__ = [
1842
1842
  "UnarchiveEnvironmentInput",
1843
1843
  "UnitTransformationInput",
1844
1844
  "UnitTransformationRound",
1845
- "UnlinkFeatureGroupInput",
1845
+ "UnlinkFeatureGroupFromPackageInput",
1846
1846
  "UpdateAccountInput",
1847
1847
  "UpdateCouponInput",
1848
1848
  "UpdateCustomer",
@@ -305,27 +305,6 @@ class EntitlementFragmentFeature(FeatureFragment):
305
305
  pass
306
306
 
307
307
 
308
- class SlimCustomerFragment(BaseModel):
309
- id: Any
310
- name: Optional[str] = Field(default=None)
311
- email: Optional[str] = Field(default=None)
312
- created_at: Optional[Any] = Field(alias="createdAt", default=None)
313
- updated_at: Any = Field(alias="updatedAt")
314
- ref_id: str = Field(alias="refId")
315
- customer_id: str = Field(alias="customerId")
316
- billing_id: Optional[str] = Field(alias="billingId", default=None)
317
- additional_meta_data: Optional[Any] = Field(
318
- alias="additionalMetaData", default=None
319
- )
320
- aws_marketplace_customer_id: Optional[str] = Field(
321
- alias="awsMarketplaceCustomerId", default=None
322
- )
323
-
324
-
325
- class SubscriptionTrialConfigurationFragment(BaseModel):
326
- trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
327
-
328
-
329
308
  class TotalPriceFragment(BaseModel):
330
309
  sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
331
310
  total: "TotalPriceFragmentTotal"
@@ -341,22 +320,56 @@ class TotalPriceFragmentTotal(BaseModel):
341
320
  currency: Currency
342
321
 
343
322
 
344
- class PlanCompatiblePackageGroupsFragment(BaseModel):
345
- package_group_id: str = Field(alias="packageGroupId")
346
- display_name: str = Field(alias="displayName")
347
- addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
348
- default=None
349
- )
350
- options: "PlanCompatiblePackageGroupsFragmentOptions"
323
+ class CustomerResourceFragment(BaseModel):
324
+ resource_id: str = Field(alias="resourceId")
351
325
 
352
326
 
353
- class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
354
- pass
327
+ class SubscriptionTrialConfigurationFragment(BaseModel):
328
+ trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
355
329
 
356
330
 
357
- class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
358
- min_items: Optional[float] = Field(alias="minItems", default=None)
359
- free_items: Optional[float] = Field(alias="freeItems", default=None)
331
+ class SubscriptionInvoiceFragment(BaseModel):
332
+ billing_id: str = Field(alias="billingId")
333
+ status: SubscriptionInvoiceStatus
334
+ created_at: Any = Field(alias="createdAt")
335
+ updated_at: Any = Field(alias="updatedAt")
336
+ error_message: Optional[str] = Field(alias="errorMessage", default=None)
337
+ requires_action: bool = Field(alias="requiresAction")
338
+ payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
339
+ payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
340
+ pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
341
+ billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
342
+ alias="billingReason", default=None
343
+ )
344
+ currency: Optional[str] = Field(default=None)
345
+ sub_total: Optional[float] = Field(alias="subTotal", default=None)
346
+ sub_total_excluding_tax: Optional[float] = Field(
347
+ alias="subTotalExcludingTax", default=None
348
+ )
349
+ total: Optional[float] = Field(default=None)
350
+ total_excluding_tax: Optional[float] = Field(
351
+ alias="totalExcludingTax", default=None
352
+ )
353
+ tax: Optional[float] = Field(default=None)
354
+ amount_due: Optional[float] = Field(alias="amountDue", default=None)
355
+ attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
356
+
357
+
358
+ class SlimCustomerFragment(BaseModel):
359
+ id: Any
360
+ name: Optional[str] = Field(default=None)
361
+ email: Optional[str] = Field(default=None)
362
+ created_at: Optional[Any] = Field(alias="createdAt", default=None)
363
+ updated_at: Any = Field(alias="updatedAt")
364
+ ref_id: str = Field(alias="refId")
365
+ customer_id: str = Field(alias="customerId")
366
+ billing_id: Optional[str] = Field(alias="billingId", default=None)
367
+ additional_meta_data: Optional[Any] = Field(
368
+ alias="additionalMetaData", default=None
369
+ )
370
+ aws_marketplace_customer_id: Optional[str] = Field(
371
+ alias="awsMarketplaceCustomerId", default=None
372
+ )
360
373
 
361
374
 
362
375
  class ProductFragment(BaseModel):
@@ -380,6 +393,24 @@ class ProductFragmentProductSettingsDowngradePlan(BaseModel):
380
393
  display_name: str = Field(alias="displayName")
381
394
 
382
395
 
396
+ class PlanCompatiblePackageGroupsFragment(BaseModel):
397
+ package_group_id: str = Field(alias="packageGroupId")
398
+ display_name: str = Field(alias="displayName")
399
+ addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
400
+ default=None
401
+ )
402
+ options: "PlanCompatiblePackageGroupsFragmentOptions"
403
+
404
+
405
+ class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
406
+ pass
407
+
408
+
409
+ class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
410
+ min_items: Optional[float] = Field(alias="minItems", default=None)
411
+ free_items: Optional[float] = Field(alias="freeItems", default=None)
412
+
413
+
383
414
  class PlanFragment(BaseModel):
384
415
  id: Any
385
416
  ref_id: str = Field(alias="refId")
@@ -461,45 +492,45 @@ class PlanFragmentDefaultTrialConfigBudget(BaseModel):
461
492
  limit: float
462
493
 
463
494
 
464
- class SubscriptionFutureUpdateData(BaseModel):
495
+ class SubscriptionScheduledUpdateData(BaseModel):
465
496
  subscription_schedule_type: SubscriptionScheduleType = Field(
466
497
  alias="subscriptionScheduleType"
467
498
  )
468
499
  schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
469
500
  scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
470
- target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
501
+ target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
471
502
  alias="targetPackage", default=None
472
503
  )
473
504
  schedule_variables: Optional[
474
505
  Annotated[
475
506
  Union[
476
- "SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
477
- "SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
478
- "SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
479
- "SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
480
- "SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
481
- "SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
482
- "SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
483
- "SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
507
+ "SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
508
+ "SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
509
+ "SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
510
+ "SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
511
+ "SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
512
+ "SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
513
+ "SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
514
+ "SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
484
515
  ],
485
516
  Field(discriminator="typename__"),
486
517
  ]
487
518
  ] = Field(alias="scheduleVariables", default=None)
488
519
 
489
520
 
490
- class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
521
+ class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
491
522
  id: Any
492
523
  ref_id: str = Field(alias="refId")
493
524
  display_name: str = Field(alias="displayName")
494
525
 
495
526
 
496
- class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
527
+ class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
497
528
  typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
498
529
  addon_ref_id: str = Field(alias="addonRefId")
499
530
  new_quantity: float = Field(alias="newQuantity")
500
531
 
501
532
 
502
- class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
533
+ class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
503
534
  BaseModel
504
535
  ):
505
536
  typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
@@ -507,53 +538,55 @@ class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVaria
507
538
  feature_id: Optional[str] = Field(alias="featureId", default=None)
508
539
 
509
540
 
510
- class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
541
+ class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
511
542
  BaseModel
512
543
  ):
513
544
  typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
514
545
  billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
515
546
 
516
547
 
517
- class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
548
+ class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
518
549
  typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
519
550
 
520
551
 
521
- class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
552
+ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
553
+ BaseModel
554
+ ):
522
555
  typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
523
556
  downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
524
557
  billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
525
558
  billable_features: Optional[
526
559
  List[
527
- "SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
560
+ "SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
528
561
  ]
529
562
  ] = Field(alias="billableFeatures", default=None)
530
563
  addons: Optional[
531
564
  List[
532
- "SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
565
+ "SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
533
566
  ]
534
567
  ] = Field(default=None)
535
568
  price_overrides: Optional[
536
569
  List[
537
- "SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
570
+ "SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
538
571
  ]
539
572
  ] = Field(alias="priceOverrides", default=None)
540
573
 
541
574
 
542
- class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
575
+ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
543
576
  BaseModel
544
577
  ):
545
578
  feature_id: str = Field(alias="featureId")
546
579
  quantity: float
547
580
 
548
581
 
549
- class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
582
+ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
550
583
  BaseModel
551
584
  ):
552
585
  addon_ref_id: str = Field(alias="addonRefId")
553
586
  quantity: float
554
587
 
555
588
 
556
- class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
589
+ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
557
590
  BaseModel
558
591
  ):
559
592
  plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
@@ -561,39 +594,43 @@ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPrice
561
594
  feature_id: Optional[str] = Field(alias="featureId", default=None)
562
595
 
563
596
 
564
- class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
597
+ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
565
598
  typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
566
599
  plan_ref_id: str = Field(alias="planRefId")
567
600
  change_type: PlanChangeType = Field(alias="changeType")
568
601
  billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
569
602
  billable_features: Optional[
570
603
  List[
571
- "SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
604
+ "SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
572
605
  ]
573
606
  ] = Field(alias="billableFeatures", default=None)
574
607
  addons: Optional[
575
- List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
608
+ List[
609
+ "SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
610
+ ]
576
611
  ] = Field(default=None)
577
612
  price_overrides: Optional[
578
613
  List[
579
- "SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
614
+ "SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
580
615
  ]
581
616
  ] = Field(alias="priceOverrides", default=None)
582
617
 
583
618
 
584
- class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
619
+ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
585
620
  BaseModel
586
621
  ):
587
622
  feature_id: str = Field(alias="featureId")
588
623
  quantity: float
589
624
 
590
625
 
591
- class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
626
+ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
627
+ BaseModel
628
+ ):
592
629
  addon_ref_id: str = Field(alias="addonRefId")
593
630
  quantity: float
594
631
 
595
632
 
596
- class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
633
+ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
597
634
  BaseModel
598
635
  ):
599
636
  plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
@@ -601,7 +638,7 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverr
601
638
  feature_id: Optional[str] = Field(alias="featureId", default=None)
602
639
 
603
640
 
604
- class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
641
+ class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
605
642
  BaseModel
606
643
  ):
607
644
  typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
@@ -609,82 +646,53 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariab
609
646
  feature_id: Optional[str] = Field(alias="featureId", default=None)
610
647
 
611
648
 
612
- class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
649
+ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
650
+ BaseModel
651
+ ):
613
652
  typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
614
653
  new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
615
654
  feature_id: Optional[str] = Field(alias="featureId", default=None)
616
655
 
617
656
 
618
- class SubscriptionInvoiceFragment(BaseModel):
619
- billing_id: str = Field(alias="billingId")
620
- status: SubscriptionInvoiceStatus
621
- created_at: Any = Field(alias="createdAt")
622
- updated_at: Any = Field(alias="updatedAt")
623
- error_message: Optional[str] = Field(alias="errorMessage", default=None)
624
- requires_action: bool = Field(alias="requiresAction")
625
- payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
626
- payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
627
- pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
628
- billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
629
- alias="billingReason", default=None
630
- )
631
- currency: Optional[str] = Field(default=None)
632
- sub_total: Optional[float] = Field(alias="subTotal", default=None)
633
- sub_total_excluding_tax: Optional[float] = Field(
634
- alias="subTotalExcludingTax", default=None
635
- )
636
- total: Optional[float] = Field(default=None)
637
- total_excluding_tax: Optional[float] = Field(
638
- alias="totalExcludingTax", default=None
639
- )
640
- tax: Optional[float] = Field(default=None)
641
- amount_due: Optional[float] = Field(alias="amountDue", default=None)
642
- attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
643
-
644
-
645
- class CustomerResourceFragment(BaseModel):
646
- resource_id: str = Field(alias="resourceId")
647
-
648
-
649
- class SubscriptionScheduledUpdateData(BaseModel):
657
+ class SubscriptionFutureUpdateData(BaseModel):
650
658
  subscription_schedule_type: SubscriptionScheduleType = Field(
651
659
  alias="subscriptionScheduleType"
652
660
  )
653
661
  schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
654
662
  scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
655
- target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
663
+ target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
656
664
  alias="targetPackage", default=None
657
665
  )
658
666
  schedule_variables: Optional[
659
667
  Annotated[
660
668
  Union[
661
- "SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
662
- "SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
663
- "SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
664
- "SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
665
- "SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
666
- "SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
667
- "SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
668
- "SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
669
+ "SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
670
+ "SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
671
+ "SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
672
+ "SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
673
+ "SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
674
+ "SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
675
+ "SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
676
+ "SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
669
677
  ],
670
678
  Field(discriminator="typename__"),
671
679
  ]
672
680
  ] = Field(alias="scheduleVariables", default=None)
673
681
 
674
682
 
675
- class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
683
+ class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
676
684
  id: Any
677
685
  ref_id: str = Field(alias="refId")
678
686
  display_name: str = Field(alias="displayName")
679
687
 
680
688
 
681
- class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
689
+ class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
682
690
  typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
683
691
  addon_ref_id: str = Field(alias="addonRefId")
684
692
  new_quantity: float = Field(alias="newQuantity")
685
693
 
686
694
 
687
- class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
695
+ class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
688
696
  BaseModel
689
697
  ):
690
698
  typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
@@ -692,55 +700,53 @@ class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVa
692
700
  feature_id: Optional[str] = Field(alias="featureId", default=None)
693
701
 
694
702
 
695
- class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
703
+ class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
696
704
  BaseModel
697
705
  ):
698
706
  typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
699
707
  billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
700
708
 
701
709
 
702
- class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
710
+ class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
703
711
  typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
704
712
 
705
713
 
706
- class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
707
- BaseModel
708
- ):
714
+ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
709
715
  typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
710
716
  downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
711
717
  billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
712
718
  billable_features: Optional[
713
719
  List[
714
- "SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
720
+ "SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
715
721
  ]
716
722
  ] = Field(alias="billableFeatures", default=None)
717
723
  addons: Optional[
718
724
  List[
719
- "SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
725
+ "SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
720
726
  ]
721
727
  ] = Field(default=None)
722
728
  price_overrides: Optional[
723
729
  List[
724
- "SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
730
+ "SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
725
731
  ]
726
732
  ] = Field(alias="priceOverrides", default=None)
727
733
 
728
734
 
729
- class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
735
+ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
730
736
  BaseModel
731
737
  ):
732
738
  feature_id: str = Field(alias="featureId")
733
739
  quantity: float
734
740
 
735
741
 
736
- class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
742
+ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
737
743
  BaseModel
738
744
  ):
739
745
  addon_ref_id: str = Field(alias="addonRefId")
740
746
  quantity: float
741
747
 
742
748
 
743
- class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
749
+ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
744
750
  BaseModel
745
751
  ):
746
752
  plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
@@ -748,43 +754,39 @@ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPr
748
754
  feature_id: Optional[str] = Field(alias="featureId", default=None)
749
755
 
750
756
 
751
- class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
757
+ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
752
758
  typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
753
759
  plan_ref_id: str = Field(alias="planRefId")
754
760
  change_type: PlanChangeType = Field(alias="changeType")
755
761
  billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
756
762
  billable_features: Optional[
757
763
  List[
758
- "SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
764
+ "SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
759
765
  ]
760
766
  ] = Field(alias="billableFeatures", default=None)
761
767
  addons: Optional[
762
- List[
763
- "SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
764
- ]
768
+ List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
765
769
  ] = Field(default=None)
766
770
  price_overrides: Optional[
767
771
  List[
768
- "SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
772
+ "SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
769
773
  ]
770
774
  ] = Field(alias="priceOverrides", default=None)
771
775
 
772
776
 
773
- class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
777
+ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
774
778
  BaseModel
775
779
  ):
776
780
  feature_id: str = Field(alias="featureId")
777
781
  quantity: float
778
782
 
779
783
 
780
- class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
781
- BaseModel
782
- ):
784
+ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
783
785
  addon_ref_id: str = Field(alias="addonRefId")
784
786
  quantity: float
785
787
 
786
788
 
787
- class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
789
+ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
788
790
  BaseModel
789
791
  ):
790
792
  plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
@@ -792,7 +794,7 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOv
792
794
  feature_id: Optional[str] = Field(alias="featureId", default=None)
793
795
 
794
796
 
795
- class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
797
+ class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
796
798
  BaseModel
797
799
  ):
798
800
  typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
@@ -800,9 +802,7 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVar
800
802
  feature_id: Optional[str] = Field(alias="featureId", default=None)
801
803
 
802
804
 
803
- class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
804
- BaseModel
805
- ):
805
+ class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
806
806
  typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
807
807
  new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
808
808
  feature_id: Optional[str] = Field(alias="featureId", default=None)
@@ -1273,6 +1273,13 @@ class CustomerPortalPromotionalEntitlementFragment(BaseModel):
1273
1273
  end_date: Optional[Any] = Field(alias="endDate", default=None)
1274
1274
 
1275
1275
 
1276
+ class CustomerPortalSubscriptionAddonFragment(BaseModel):
1277
+ addon_id: str = Field(alias="addonId")
1278
+ description: Optional[str] = Field(default=None)
1279
+ display_name: str = Field(alias="displayName")
1280
+ quantity: int
1281
+
1282
+
1276
1283
  class CustomerPortalSubscriptionPriceFragment(BaseModel):
1277
1284
  billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
1278
1285
  billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
@@ -1300,13 +1307,6 @@ class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
1300
1307
  )
1301
1308
 
1302
1309
 
1303
- class CustomerPortalSubscriptionAddonFragment(BaseModel):
1304
- addon_id: str = Field(alias="addonId")
1305
- description: Optional[str] = Field(default=None)
1306
- display_name: str = Field(alias="displayName")
1307
- quantity: int
1308
-
1309
-
1310
1310
  class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
1311
1311
  subscription_schedule_type: SubscriptionScheduleType = Field(
1312
1312
  alias="subscriptionScheduleType"
@@ -2847,16 +2847,16 @@ PackageEntitlementFragment.model_rebuild()
2847
2847
  AddonFragment.model_rebuild()
2848
2848
  FeatureFragment.model_rebuild()
2849
2849
  EntitlementFragment.model_rebuild()
2850
- SlimCustomerFragment.model_rebuild()
2851
- SubscriptionTrialConfigurationFragment.model_rebuild()
2852
2850
  TotalPriceFragment.model_rebuild()
2853
- PlanCompatiblePackageGroupsFragment.model_rebuild()
2851
+ CustomerResourceFragment.model_rebuild()
2852
+ SubscriptionTrialConfigurationFragment.model_rebuild()
2853
+ SubscriptionInvoiceFragment.model_rebuild()
2854
+ SlimCustomerFragment.model_rebuild()
2854
2855
  ProductFragment.model_rebuild()
2856
+ PlanCompatiblePackageGroupsFragment.model_rebuild()
2855
2857
  PlanFragment.model_rebuild()
2856
- SubscriptionFutureUpdateData.model_rebuild()
2857
- SubscriptionInvoiceFragment.model_rebuild()
2858
- CustomerResourceFragment.model_rebuild()
2859
2858
  SubscriptionScheduledUpdateData.model_rebuild()
2859
+ SubscriptionFutureUpdateData.model_rebuild()
2860
2860
  SubscriptionFragment.model_rebuild()
2861
2861
  ApplySubscriptionFragment.model_rebuild()
2862
2862
  FontVariantFragment.model_rebuild()
@@ -2870,8 +2870,8 @@ CustomerPortalBillingInformationFragment.model_rebuild()
2870
2870
  CustomerPortalConfigurationFragment.model_rebuild()
2871
2871
  CustomerPortalEntitlementFragment.model_rebuild()
2872
2872
  CustomerPortalPromotionalEntitlementFragment.model_rebuild()
2873
- CustomerPortalSubscriptionPriceFragment.model_rebuild()
2874
2873
  CustomerPortalSubscriptionAddonFragment.model_rebuild()
2874
+ CustomerPortalSubscriptionPriceFragment.model_rebuild()
2875
2875
  CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
2876
2876
  CustomerPortalSubscriptionFragment.model_rebuild()
2877
2877
  CustomerPortalFragment.model_rebuild()
@@ -4462,7 +4462,7 @@ class UnitTransformationInput(BaseModel):
4462
4462
  round: Optional[UnitTransformationRound] = UnitTransformationRound.UP
4463
4463
 
4464
4464
 
4465
- class UnlinkFeatureGroupInput(BaseModel):
4465
+ class UnlinkFeatureGroupFromPackageInput(BaseModel):
4466
4466
  environment_id: Optional[Any] = Field(alias="environmentId", default=None)
4467
4467
  feature_group_id: Any = Field(alias="featureGroupId")
4468
4468
  package_id: Any = Field(alias="packageId")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: stigg-api-client-v2
3
- Version: 2.491.0
3
+ Version: 2.492.0
4
4
  Summary:
5
5
  License: STIGG SDK LICENSE
6
6
  Author: Stigg
@@ -106,7 +106,7 @@ stigg/_vendors/pydantic-2.6.4.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCe
106
106
  stigg/_vendors/pydantic-2.6.4.dist-info/WHEEL,sha256=TJPnKdtrSue7xZ_AVGkp9YXcvDrobsjBds1du3Nx6dc,87
107
107
  stigg/_vendors/pydantic-2.6.4.dist-info/licenses/LICENSE,sha256=qeGG88oWte74QxjnpwFyE1GgDLe4rjpDlLZ7SeNSnvM,1129
108
108
  stigg/client.py,sha256=RWrVnxo9zHFXka8KJVE4sMgyek70ispQk0vqOINCvM0,8335
109
- stigg/generated/__init__.py,sha256=8fT6fyA-MhIGPz6SLGukCkVZlCOedfvWLqu1FiEKewg,71665
109
+ stigg/generated/__init__.py,sha256=vlLeLOVc7thTyseqkEd6Gf_NjFRWvHwzUItaDU9zroQ,71687
110
110
  stigg/generated/apply_subscription.py,sha256=Vbs-QZZxN16pUpt3Hp7Jvvcc5o_8xwJK9oTLQQjH0ZA,451
111
111
  stigg/generated/archive_customer.py,sha256=3N3iBiT2Vvzfb0ckV3o57A6lmJ_ef7JNPaMX_Jtcg6c,396
112
112
  stigg/generated/async_base_client.py,sha256=zqd6IhYxpalyA6KQkeGhXgSurC0vXSwSWmSlM2zZ0VM,12593
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=LNYmJArnO1NejmLy-MhcZzdxPIRXDuKv2cYXTMxoDDk,3676
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=wffyWMiq-qYPwODG-RVpVV1AvSkzAFzmsMQCperBIR4,103850
126
+ stigg/generated/fragments.py,sha256=PPtpYpir9AA-HNYqONlHssRUSZcYBB_vf1eGHvcZ6Kw,103850
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
@@ -145,7 +145,7 @@ stigg/generated/grant_promotional_entitlements.py,sha256=72PRYuqecL-0SkWb7deygkh
145
145
  stigg/generated/import_customer.py,sha256=yEtrEB7T-Aykv3AUl-rAQz2XL6hKL0j-7JL3h-xi87o,403
146
146
  stigg/generated/import_customer_bulk.py,sha256=miLn2ScWlPOH1IipltY5Vgd-ZQ_BkBk9t3-EsLvU5ZQ,284
147
147
  stigg/generated/import_subscriptions_bulk.py,sha256=QgitpZkjE7eBhP1o5W0PTVAbKOvz61dNoeBAWupIcgU,297
148
- stigg/generated/input_types.py,sha256=KTbdT8_LEUUS-Bd9WN1MCzJQHTXWC2dE40slgjzYF-o,201523
148
+ stigg/generated/input_types.py,sha256=ABA8suyocvdVov0LKq4LP3fQ028f_60RnM1g8PQNTY0,201534
149
149
  stigg/generated/migrate_subscription_to_latest.py,sha256=qQDwH7EodYAeJFb62IIl-MAEB5MbthgCJ0v1RMxpdYk,516
150
150
  stigg/generated/preview_next_invoice.py,sha256=MiQ4Gv7Ve1Hv60xhaQi7uj82aq0xLP2UB-gjvcQdOL8,478
151
151
  stigg/generated/preview_subscription.py,sha256=Qo2vlFs7sFzqaE8J_e-EHTRfLvG46lko-dcJMxDSCR0,475
@@ -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.491.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
165
- stigg_api_client_v2-2.491.0.dist-info/METADATA,sha256=IcOIzIGgT85GZbQ9Ywq2_vd69ew_KIds6X7iU2JADqA,2258
166
- stigg_api_client_v2-2.491.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
167
- stigg_api_client_v2-2.491.0.dist-info/RECORD,,
164
+ stigg_api_client_v2-2.492.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
165
+ stigg_api_client_v2-2.492.0.dist-info/METADATA,sha256=Unms1Y4zggB573emmTooA_pDrnVLIWt42HusjBn--j8,2258
166
+ stigg_api_client_v2-2.492.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
167
+ stigg_api_client_v2-2.492.0.dist-info/RECORD,,