stigg-api-client-v2 2.323.4__py3-none-any.whl → 2.325.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of stigg-api-client-v2 might be problematic. Click here for more details.
- stigg/generated/__init__.py +6 -0
- stigg/generated/enums.py +2 -0
- stigg/generated/fragments.py +423 -423
- stigg/generated/input_types.py +19 -0
- {stigg_api_client_v2-2.323.4.dist-info → stigg_api_client_v2-2.325.3.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.323.4.dist-info → stigg_api_client_v2-2.325.3.dist-info}/RECORD +8 -8
- {stigg_api_client_v2-2.323.4.dist-info → stigg_api_client_v2-2.325.3.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.323.4.dist-info → stigg_api_client_v2-2.325.3.dist-info}/WHEEL +0 -0
stigg/generated/__init__.py
CHANGED
|
@@ -554,6 +554,7 @@ from .input_types import (
|
|
|
554
554
|
AddonCreateInput,
|
|
555
555
|
AddonFilter,
|
|
556
556
|
AddonSort,
|
|
557
|
+
AddonUnArchiveInput,
|
|
557
558
|
AddonUpdateInput,
|
|
558
559
|
Address,
|
|
559
560
|
AggregatedEventsByCustomerInput,
|
|
@@ -854,6 +855,8 @@ from .input_types import (
|
|
|
854
855
|
TypographyConfigurationInput,
|
|
855
856
|
UnarchiveCustomerInput,
|
|
856
857
|
UnarchiveEnvironmentInput,
|
|
858
|
+
UnArchiveFeatureInput,
|
|
859
|
+
UnArchivePlanInput,
|
|
857
860
|
UnitTransformationInput,
|
|
858
861
|
UpdateAccountInput,
|
|
859
862
|
UpdateCouponInput,
|
|
@@ -948,6 +951,7 @@ __all__ = [
|
|
|
948
951
|
"AddonFragmentPrices",
|
|
949
952
|
"AddonSort",
|
|
950
953
|
"AddonSortFields",
|
|
954
|
+
"AddonUnArchiveInput",
|
|
951
955
|
"AddonUpdateInput",
|
|
952
956
|
"Address",
|
|
953
957
|
"AggregatedEventsByCustomerInput",
|
|
@@ -1758,6 +1762,8 @@ __all__ = [
|
|
|
1758
1762
|
"TypographyConfigurationFragmentH2",
|
|
1759
1763
|
"TypographyConfigurationFragmentH3",
|
|
1760
1764
|
"TypographyConfigurationInput",
|
|
1765
|
+
"UnArchiveFeatureInput",
|
|
1766
|
+
"UnArchivePlanInput",
|
|
1761
1767
|
"UnarchiveCustomer",
|
|
1762
1768
|
"UnarchiveCustomerInput",
|
|
1763
1769
|
"UnarchiveCustomerUnarchiveCustomer",
|
stigg/generated/enums.py
CHANGED
|
@@ -408,6 +408,7 @@ class ErrorCode(str, Enum):
|
|
|
408
408
|
BillingPeriodMissingError = "BillingPeriodMissingError"
|
|
409
409
|
CannotAddOverrideEntitlementToPlan = "CannotAddOverrideEntitlementToPlan"
|
|
410
410
|
CannotArchiveFeatureError = "CannotArchiveFeatureError"
|
|
411
|
+
CannotChangeBillingIntegration = "CannotChangeBillingIntegration"
|
|
411
412
|
CannotDeleteCustomerError = "CannotDeleteCustomerError"
|
|
412
413
|
CannotDeleteDefaultIntegration = "CannotDeleteDefaultIntegration"
|
|
413
414
|
CannotDeleteFeatureError = "CannotDeleteFeatureError"
|
|
@@ -451,6 +452,7 @@ class ErrorCode(str, Enum):
|
|
|
451
452
|
ExperimentStatusError = "ExperimentStatusError"
|
|
452
453
|
FailedToCreateCheckoutSessionError = "FailedToCreateCheckoutSessionError"
|
|
453
454
|
FailedToImportCustomer = "FailedToImportCustomer"
|
|
455
|
+
FailedToImportSubscriptions = "FailedToImportSubscriptions"
|
|
454
456
|
FeatureNotFound = "FeatureNotFound"
|
|
455
457
|
FetchAllCountriesPricesNotAllowed = "FetchAllCountriesPricesNotAllowed"
|
|
456
458
|
FreePlanCantHaveCompatiblePackageGroupError = (
|