stigg-api-client-v2 2.482.0__py3-none-any.whl → 2.486.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/__init__.py +4 -0
- stigg/generated/enums.py +3 -0
- stigg/generated/fragments.py +235 -235
- stigg/generated/input_types.py +14 -0
- {stigg_api_client_v2-2.482.0.dist-info → stigg_api_client_v2-2.486.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.482.0.dist-info → stigg_api_client_v2-2.486.0.dist-info}/RECORD +8 -8
- {stigg_api_client_v2-2.482.0.dist-info → stigg_api_client_v2-2.486.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.482.0.dist-info → stigg_api_client_v2-2.486.0.dist-info}/WHEEL +0 -0
stigg/generated/__init__.py
CHANGED
|
@@ -817,6 +817,7 @@ from .input_types import (
|
|
|
817
817
|
RemoveCouponFromCustomerInput,
|
|
818
818
|
RemoveExperimentFromCustomerInput,
|
|
819
819
|
RemoveExperimentFromCustomerSubscriptionInput,
|
|
820
|
+
RemoveFeatureGroupFromPackageInput,
|
|
820
821
|
ReportUsageBaseInput,
|
|
821
822
|
ReportUsageBulkInput,
|
|
822
823
|
ReportUsageInput,
|
|
@@ -892,6 +893,7 @@ from .input_types import (
|
|
|
892
893
|
UnArchiveFeatureInput,
|
|
893
894
|
UnArchivePlanInput,
|
|
894
895
|
UnitTransformationInput,
|
|
896
|
+
UnlinkFeatureGroupInput,
|
|
895
897
|
UpdateAccountInput,
|
|
896
898
|
UpdateCouponInput,
|
|
897
899
|
UpdateCustomerInput,
|
|
@@ -1576,6 +1578,7 @@ __all__ = [
|
|
|
1576
1578
|
"RemoveCouponFromCustomerInput",
|
|
1577
1579
|
"RemoveExperimentFromCustomerInput",
|
|
1578
1580
|
"RemoveExperimentFromCustomerSubscriptionInput",
|
|
1581
|
+
"RemoveFeatureGroupFromPackageInput",
|
|
1579
1582
|
"ReportEntitlementCheckRequested",
|
|
1580
1583
|
"ReportEvent",
|
|
1581
1584
|
"ReportUsage",
|
|
@@ -1839,6 +1842,7 @@ __all__ = [
|
|
|
1839
1842
|
"UnarchiveEnvironmentInput",
|
|
1840
1843
|
"UnitTransformationInput",
|
|
1841
1844
|
"UnitTransformationRound",
|
|
1845
|
+
"UnlinkFeatureGroupInput",
|
|
1842
1846
|
"UpdateAccountInput",
|
|
1843
1847
|
"UpdateCouponInput",
|
|
1844
1848
|
"UpdateCustomer",
|
stigg/generated/enums.py
CHANGED
|
@@ -418,6 +418,7 @@ class ErrorCode(str, Enum):
|
|
|
418
418
|
BillingIntegrationAlreadyExistsError = "BillingIntegrationAlreadyExistsError"
|
|
419
419
|
BillingIntegrationMissing = "BillingIntegrationMissing"
|
|
420
420
|
BillingPeriodMissingError = "BillingPeriodMissingError"
|
|
421
|
+
CanNotUpdateEntitlementsFeatureGroup = "CanNotUpdateEntitlementsFeatureGroup"
|
|
421
422
|
CannotAddOverrideEntitlementToPlan = "CannotAddOverrideEntitlementToPlan"
|
|
422
423
|
CannotArchiveFeatureError = "CannotArchiveFeatureError"
|
|
423
424
|
CannotArchiveFeatureGroupError = "CannotArchiveFeatureGroupError"
|
|
@@ -469,7 +470,9 @@ class ErrorCode(str, Enum):
|
|
|
469
470
|
FailedToImportSubscriptions = "FailedToImportSubscriptions"
|
|
470
471
|
FailedToResolveBillingIntegration = "FailedToResolveBillingIntegration"
|
|
471
472
|
FeatureConfigurationExceededLimitError = "FeatureConfigurationExceededLimitError"
|
|
473
|
+
FeatureGroupMissingFeaturesError = "FeatureGroupMissingFeaturesError"
|
|
472
474
|
FeatureGroupNotFoundError = "FeatureGroupNotFoundError"
|
|
475
|
+
FeatureNotBelongToFeatureGroupError = "FeatureNotBelongToFeatureGroupError"
|
|
473
476
|
FeatureNotFound = "FeatureNotFound"
|
|
474
477
|
FetchAllCountriesPricesNotAllowed = "FetchAllCountriesPricesNotAllowed"
|
|
475
478
|
FreePlanCantHaveCompatiblePackageGroupError = (
|
stigg/generated/fragments.py
CHANGED
|
@@ -80,29 +80,33 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
80
80
|
currency: Currency
|
|
81
81
|
|
|
82
82
|
|
|
83
|
-
class
|
|
83
|
+
class PriceFragment(BaseModel):
|
|
84
84
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
85
85
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
86
|
+
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
86
87
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
88
|
+
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
89
|
+
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
87
90
|
billing_country_code: Optional[str] = Field(
|
|
88
91
|
alias="billingCountryCode", default=None
|
|
89
92
|
)
|
|
90
|
-
price: Optional["
|
|
93
|
+
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
91
94
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
92
|
-
tiers: Optional[List["
|
|
93
|
-
feature: Optional["
|
|
95
|
+
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
96
|
+
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
97
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
94
98
|
|
|
95
99
|
|
|
96
|
-
class
|
|
100
|
+
class PriceFragmentPrice(BaseModel):
|
|
97
101
|
amount: float
|
|
98
102
|
currency: Currency
|
|
99
103
|
|
|
100
104
|
|
|
101
|
-
class
|
|
105
|
+
class PriceFragmentTiers(PriceTierFragment):
|
|
102
106
|
pass
|
|
103
107
|
|
|
104
108
|
|
|
105
|
-
class
|
|
109
|
+
class PriceFragmentFeature(BaseModel):
|
|
106
110
|
ref_id: str = Field(alias="refId")
|
|
107
111
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
108
112
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -145,33 +149,29 @@ class PackageEntitlementFragmentFeature(BaseModel):
|
|
|
145
149
|
)
|
|
146
150
|
|
|
147
151
|
|
|
148
|
-
class
|
|
152
|
+
class OveragePriceFragment(BaseModel):
|
|
149
153
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
150
154
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
151
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
152
155
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
153
|
-
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
154
|
-
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
155
156
|
billing_country_code: Optional[str] = Field(
|
|
156
157
|
alias="billingCountryCode", default=None
|
|
157
158
|
)
|
|
158
|
-
price: Optional["
|
|
159
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
159
160
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
160
|
-
tiers: Optional[List["
|
|
161
|
-
feature: Optional["
|
|
162
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
161
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
162
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
163
163
|
|
|
164
164
|
|
|
165
|
-
class
|
|
165
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
166
166
|
amount: float
|
|
167
167
|
currency: Currency
|
|
168
168
|
|
|
169
169
|
|
|
170
|
-
class
|
|
170
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
171
171
|
pass
|
|
172
172
|
|
|
173
173
|
|
|
174
|
-
class
|
|
174
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
175
175
|
ref_id: str = Field(alias="refId")
|
|
176
176
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
177
177
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -219,6 +219,112 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
219
219
|
pass
|
|
220
220
|
|
|
221
221
|
|
|
222
|
+
class FeatureFragment(BaseModel):
|
|
223
|
+
typename__: str = Field(alias="__typename")
|
|
224
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
225
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
226
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
227
|
+
feature_units_plural: Optional[str] = Field(
|
|
228
|
+
alias="featureUnitsPlural", default=None
|
|
229
|
+
)
|
|
230
|
+
description: Optional[str] = Field(default=None)
|
|
231
|
+
display_name: str = Field(alias="displayName")
|
|
232
|
+
ref_id: str = Field(alias="refId")
|
|
233
|
+
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
234
|
+
alias="unitTransformation", default=None
|
|
235
|
+
)
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
class FeatureFragmentUnitTransformation(BaseModel):
|
|
239
|
+
divide: float
|
|
240
|
+
round: UnitTransformationRound
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
class EntitlementFragment(BaseModel):
|
|
244
|
+
typename__: str = Field(alias="__typename")
|
|
245
|
+
is_granted: bool = Field(alias="isGranted")
|
|
246
|
+
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
247
|
+
alias="accessDeniedReason", default=None
|
|
248
|
+
)
|
|
249
|
+
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
250
|
+
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
251
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
252
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
253
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
254
|
+
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
255
|
+
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
256
|
+
requested_values: Optional[List[str]] = Field(alias="requestedValues", default=None)
|
|
257
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
258
|
+
entitlement_updated_at: Optional[Any] = Field(
|
|
259
|
+
alias="entitlementUpdatedAt", default=None
|
|
260
|
+
)
|
|
261
|
+
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
262
|
+
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
263
|
+
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
264
|
+
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
265
|
+
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
266
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
267
|
+
alias="resetPeriod", default=None
|
|
268
|
+
)
|
|
269
|
+
reset_period_configuration: Optional[
|
|
270
|
+
Annotated[
|
|
271
|
+
Union[
|
|
272
|
+
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
273
|
+
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
274
|
+
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
275
|
+
],
|
|
276
|
+
Field(discriminator="typename__"),
|
|
277
|
+
]
|
|
278
|
+
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
279
|
+
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
283
|
+
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
284
|
+
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
285
|
+
alias="monthlyAccordingTo", default=None
|
|
286
|
+
)
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
290
|
+
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
291
|
+
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
292
|
+
alias="weeklyAccordingTo", default=None
|
|
293
|
+
)
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
297
|
+
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
298
|
+
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
299
|
+
alias="yearlyAccordingTo", default=None
|
|
300
|
+
)
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
class EntitlementFragmentFeature(FeatureFragment):
|
|
304
|
+
pass
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
308
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
class SlimCustomerFragment(BaseModel):
|
|
312
|
+
id: Any
|
|
313
|
+
name: Optional[str] = Field(default=None)
|
|
314
|
+
email: Optional[str] = Field(default=None)
|
|
315
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
316
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
317
|
+
ref_id: str = Field(alias="refId")
|
|
318
|
+
customer_id: str = Field(alias="customerId")
|
|
319
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
320
|
+
additional_meta_data: Optional[Any] = Field(
|
|
321
|
+
alias="additionalMetaData", default=None
|
|
322
|
+
)
|
|
323
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
324
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
325
|
+
)
|
|
326
|
+
|
|
327
|
+
|
|
222
328
|
class SubscriptionFutureUpdateData(BaseModel):
|
|
223
329
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
224
330
|
alias="subscriptionScheduleType"
|
|
@@ -388,6 +494,10 @@ class TotalPriceFragmentTotal(BaseModel):
|
|
|
388
494
|
currency: Currency
|
|
389
495
|
|
|
390
496
|
|
|
497
|
+
class CustomerResourceFragment(BaseModel):
|
|
498
|
+
resource_id: str = Field(alias="resourceId")
|
|
499
|
+
|
|
500
|
+
|
|
391
501
|
class SubscriptionInvoiceFragment(BaseModel):
|
|
392
502
|
billing_id: str = Field(alias="billingId")
|
|
393
503
|
status: SubscriptionInvoiceStatus
|
|
@@ -415,27 +525,6 @@ class SubscriptionInvoiceFragment(BaseModel):
|
|
|
415
525
|
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
416
526
|
|
|
417
527
|
|
|
418
|
-
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
419
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
class SlimCustomerFragment(BaseModel):
|
|
423
|
-
id: Any
|
|
424
|
-
name: Optional[str] = Field(default=None)
|
|
425
|
-
email: Optional[str] = Field(default=None)
|
|
426
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
427
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
428
|
-
ref_id: str = Field(alias="refId")
|
|
429
|
-
customer_id: str = Field(alias="customerId")
|
|
430
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
431
|
-
additional_meta_data: Optional[Any] = Field(
|
|
432
|
-
alias="additionalMetaData", default=None
|
|
433
|
-
)
|
|
434
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
435
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
436
|
-
)
|
|
437
|
-
|
|
438
|
-
|
|
439
528
|
class ProductFragment(BaseModel):
|
|
440
529
|
ref_id: str = Field(alias="refId")
|
|
441
530
|
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
@@ -718,10 +807,6 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
718
807
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
719
808
|
|
|
720
809
|
|
|
721
|
-
class CustomerResourceFragment(BaseModel):
|
|
722
|
-
resource_id: str = Field(alias="resourceId")
|
|
723
|
-
|
|
724
|
-
|
|
725
810
|
class SubscriptionFragment(BaseModel):
|
|
726
811
|
id: Any
|
|
727
812
|
subscription_id: str = Field(alias="subscriptionId")
|
|
@@ -831,91 +916,6 @@ class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragm
|
|
|
831
916
|
pass
|
|
832
917
|
|
|
833
918
|
|
|
834
|
-
class FeatureFragment(BaseModel):
|
|
835
|
-
typename__: str = Field(alias="__typename")
|
|
836
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
837
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
838
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
839
|
-
feature_units_plural: Optional[str] = Field(
|
|
840
|
-
alias="featureUnitsPlural", default=None
|
|
841
|
-
)
|
|
842
|
-
description: Optional[str] = Field(default=None)
|
|
843
|
-
display_name: str = Field(alias="displayName")
|
|
844
|
-
ref_id: str = Field(alias="refId")
|
|
845
|
-
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
846
|
-
alias="unitTransformation", default=None
|
|
847
|
-
)
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
class FeatureFragmentUnitTransformation(BaseModel):
|
|
851
|
-
divide: float
|
|
852
|
-
round: UnitTransformationRound
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
class EntitlementFragment(BaseModel):
|
|
856
|
-
typename__: str = Field(alias="__typename")
|
|
857
|
-
is_granted: bool = Field(alias="isGranted")
|
|
858
|
-
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
859
|
-
alias="accessDeniedReason", default=None
|
|
860
|
-
)
|
|
861
|
-
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
862
|
-
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
863
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
864
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
865
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
866
|
-
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
867
|
-
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
868
|
-
requested_values: Optional[List[str]] = Field(alias="requestedValues", default=None)
|
|
869
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
870
|
-
entitlement_updated_at: Optional[Any] = Field(
|
|
871
|
-
alias="entitlementUpdatedAt", default=None
|
|
872
|
-
)
|
|
873
|
-
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
874
|
-
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
875
|
-
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
876
|
-
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
877
|
-
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
878
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
879
|
-
alias="resetPeriod", default=None
|
|
880
|
-
)
|
|
881
|
-
reset_period_configuration: Optional[
|
|
882
|
-
Annotated[
|
|
883
|
-
Union[
|
|
884
|
-
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
885
|
-
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
886
|
-
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
887
|
-
],
|
|
888
|
-
Field(discriminator="typename__"),
|
|
889
|
-
]
|
|
890
|
-
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
891
|
-
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
895
|
-
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
896
|
-
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
897
|
-
alias="monthlyAccordingTo", default=None
|
|
898
|
-
)
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
902
|
-
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
903
|
-
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
904
|
-
alias="weeklyAccordingTo", default=None
|
|
905
|
-
)
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
909
|
-
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
910
|
-
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
911
|
-
alias="yearlyAccordingTo", default=None
|
|
912
|
-
)
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
class EntitlementFragmentFeature(FeatureFragment):
|
|
916
|
-
pass
|
|
917
|
-
|
|
918
|
-
|
|
919
919
|
class ApplySubscriptionFragment(BaseModel):
|
|
920
920
|
subscription: Optional["ApplySubscriptionFragmentSubscription"] = Field(
|
|
921
921
|
default=None
|
|
@@ -993,35 +993,6 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
993
993
|
)
|
|
994
994
|
|
|
995
995
|
|
|
996
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
997
|
-
status: PromotionalEntitlementStatus
|
|
998
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
999
|
-
feature_id: Any = Field(alias="featureId")
|
|
1000
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1001
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1002
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1003
|
-
alias="resetPeriod", default=None
|
|
1004
|
-
)
|
|
1005
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1006
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1007
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1011
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1012
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1013
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1014
|
-
feature_units_plural: Optional[str] = Field(
|
|
1015
|
-
alias="featureUnitsPlural", default=None
|
|
1016
|
-
)
|
|
1017
|
-
display_name: str = Field(alias="displayName")
|
|
1018
|
-
description: Optional[str] = Field(default=None)
|
|
1019
|
-
ref_id: str = Field(alias="refId")
|
|
1020
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1021
|
-
alias="additionalMetaData", default=None
|
|
1022
|
-
)
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
996
|
class CouponFragment(BaseModel):
|
|
1026
997
|
id: Any
|
|
1027
998
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1056,6 +1027,35 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1056
1027
|
status: SyncStatus
|
|
1057
1028
|
|
|
1058
1029
|
|
|
1030
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
1031
|
+
status: PromotionalEntitlementStatus
|
|
1032
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1033
|
+
feature_id: Any = Field(alias="featureId")
|
|
1034
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1035
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1036
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1037
|
+
alias="resetPeriod", default=None
|
|
1038
|
+
)
|
|
1039
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1040
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1041
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1042
|
+
|
|
1043
|
+
|
|
1044
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1045
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1046
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1047
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1048
|
+
feature_units_plural: Optional[str] = Field(
|
|
1049
|
+
alias="featureUnitsPlural", default=None
|
|
1050
|
+
)
|
|
1051
|
+
display_name: str = Field(alias="displayName")
|
|
1052
|
+
description: Optional[str] = Field(default=None)
|
|
1053
|
+
ref_id: str = Field(alias="refId")
|
|
1054
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1055
|
+
alias="additionalMetaData", default=None
|
|
1056
|
+
)
|
|
1057
|
+
|
|
1058
|
+
|
|
1059
1059
|
class CustomerFragment(SlimCustomerFragment):
|
|
1060
1060
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1061
1061
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1272,6 +1272,40 @@ class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
|
1272
1272
|
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1273
1273
|
|
|
1274
1274
|
|
|
1275
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1276
|
+
addon_id: str = Field(alias="addonId")
|
|
1277
|
+
description: Optional[str] = Field(default=None)
|
|
1278
|
+
display_name: str = Field(alias="displayName")
|
|
1279
|
+
quantity: int
|
|
1280
|
+
|
|
1281
|
+
|
|
1282
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1283
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1284
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1285
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1286
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1287
|
+
default=None
|
|
1288
|
+
)
|
|
1289
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1290
|
+
default=None
|
|
1291
|
+
)
|
|
1292
|
+
|
|
1293
|
+
|
|
1294
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1295
|
+
amount: float
|
|
1296
|
+
currency: Currency
|
|
1297
|
+
|
|
1298
|
+
|
|
1299
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1300
|
+
id: Any
|
|
1301
|
+
ref_id: str = Field(alias="refId")
|
|
1302
|
+
display_name: str = Field(alias="displayName")
|
|
1303
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1304
|
+
feature_units_plural: Optional[str] = Field(
|
|
1305
|
+
alias="featureUnitsPlural", default=None
|
|
1306
|
+
)
|
|
1307
|
+
|
|
1308
|
+
|
|
1275
1309
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1276
1310
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1277
1311
|
alias="subscriptionScheduleType"
|
|
@@ -1441,40 +1475,6 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1441
1475
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1442
1476
|
|
|
1443
1477
|
|
|
1444
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1445
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1446
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1447
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1448
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1449
|
-
default=None
|
|
1450
|
-
)
|
|
1451
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1452
|
-
default=None
|
|
1453
|
-
)
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1457
|
-
amount: float
|
|
1458
|
-
currency: Currency
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1462
|
-
id: Any
|
|
1463
|
-
ref_id: str = Field(alias="refId")
|
|
1464
|
-
display_name: str = Field(alias="displayName")
|
|
1465
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1466
|
-
feature_units_plural: Optional[str] = Field(
|
|
1467
|
-
alias="featureUnitsPlural", default=None
|
|
1468
|
-
)
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1472
|
-
addon_id: str = Field(alias="addonId")
|
|
1473
|
-
description: Optional[str] = Field(default=None)
|
|
1474
|
-
display_name: str = Field(alias="displayName")
|
|
1475
|
-
quantity: int
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
1478
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1479
1479
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1480
1480
|
plan_id: str = Field(alias="planId")
|
|
@@ -1798,6 +1798,39 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1798
1798
|
description: Optional[str] = Field(default=None)
|
|
1799
1799
|
|
|
1800
1800
|
|
|
1801
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1802
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1803
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1804
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1805
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1806
|
+
alias="resetPeriod", default=None
|
|
1807
|
+
)
|
|
1808
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1809
|
+
alias="hiddenFromWidgets", default=None
|
|
1810
|
+
)
|
|
1811
|
+
display_name_override: Optional[str] = Field(
|
|
1812
|
+
alias="displayNameOverride", default=None
|
|
1813
|
+
)
|
|
1814
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1815
|
+
default=None
|
|
1816
|
+
)
|
|
1817
|
+
|
|
1818
|
+
|
|
1819
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1820
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1821
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1822
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1823
|
+
feature_units_plural: Optional[str] = Field(
|
|
1824
|
+
alias="featureUnitsPlural", default=None
|
|
1825
|
+
)
|
|
1826
|
+
display_name: str = Field(alias="displayName")
|
|
1827
|
+
description: Optional[str] = Field(default=None)
|
|
1828
|
+
ref_id: str = Field(alias="refId")
|
|
1829
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1830
|
+
alias="additionalMetaData", default=None
|
|
1831
|
+
)
|
|
1832
|
+
|
|
1833
|
+
|
|
1801
1834
|
class MockPaywallPriceFragment(BaseModel):
|
|
1802
1835
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1803
1836
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1832,39 +1865,6 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1832
1865
|
display_name: str = Field(alias="displayName")
|
|
1833
1866
|
|
|
1834
1867
|
|
|
1835
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1836
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1837
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1838
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1839
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1840
|
-
alias="resetPeriod", default=None
|
|
1841
|
-
)
|
|
1842
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1843
|
-
alias="hiddenFromWidgets", default=None
|
|
1844
|
-
)
|
|
1845
|
-
display_name_override: Optional[str] = Field(
|
|
1846
|
-
alias="displayNameOverride", default=None
|
|
1847
|
-
)
|
|
1848
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1849
|
-
default=None
|
|
1850
|
-
)
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1854
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1855
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1856
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1857
|
-
feature_units_plural: Optional[str] = Field(
|
|
1858
|
-
alias="featureUnitsPlural", default=None
|
|
1859
|
-
)
|
|
1860
|
-
display_name: str = Field(alias="displayName")
|
|
1861
|
-
description: Optional[str] = Field(default=None)
|
|
1862
|
-
ref_id: str = Field(alias="refId")
|
|
1863
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1864
|
-
alias="additionalMetaData", default=None
|
|
1865
|
-
)
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
1868
|
class MockPaywallAddonFragment(BaseModel):
|
|
1869
1869
|
ref_id: str = Field(alias="refId")
|
|
1870
1870
|
display_name: str = Field(alias="displayName")
|
|
@@ -2839,38 +2839,38 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2839
2839
|
|
|
2840
2840
|
AddonDependencyFragment.model_rebuild()
|
|
2841
2841
|
PriceTierFragment.model_rebuild()
|
|
2842
|
-
OveragePriceFragment.model_rebuild()
|
|
2843
|
-
PackageEntitlementFragment.model_rebuild()
|
|
2844
2842
|
PriceFragment.model_rebuild()
|
|
2843
|
+
PackageEntitlementFragment.model_rebuild()
|
|
2844
|
+
OveragePriceFragment.model_rebuild()
|
|
2845
2845
|
AddonFragment.model_rebuild()
|
|
2846
|
+
FeatureFragment.model_rebuild()
|
|
2847
|
+
EntitlementFragment.model_rebuild()
|
|
2848
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2849
|
+
SlimCustomerFragment.model_rebuild()
|
|
2846
2850
|
SubscriptionFutureUpdateData.model_rebuild()
|
|
2847
2851
|
TotalPriceFragment.model_rebuild()
|
|
2852
|
+
CustomerResourceFragment.model_rebuild()
|
|
2848
2853
|
SubscriptionInvoiceFragment.model_rebuild()
|
|
2849
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2850
|
-
SlimCustomerFragment.model_rebuild()
|
|
2851
2854
|
ProductFragment.model_rebuild()
|
|
2852
2855
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2853
2856
|
PlanFragment.model_rebuild()
|
|
2854
2857
|
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2855
|
-
CustomerResourceFragment.model_rebuild()
|
|
2856
2858
|
SubscriptionFragment.model_rebuild()
|
|
2857
|
-
FeatureFragment.model_rebuild()
|
|
2858
|
-
EntitlementFragment.model_rebuild()
|
|
2859
2859
|
ApplySubscriptionFragment.model_rebuild()
|
|
2860
2860
|
FontVariantFragment.model_rebuild()
|
|
2861
2861
|
TypographyConfigurationFragment.model_rebuild()
|
|
2862
2862
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2863
|
-
PromotionalEntitlementFragment.model_rebuild()
|
|
2864
2863
|
CouponFragment.model_rebuild()
|
|
2864
|
+
PromotionalEntitlementFragment.model_rebuild()
|
|
2865
2865
|
CustomerFragment.model_rebuild()
|
|
2866
2866
|
CheckoutStateFragment.model_rebuild()
|
|
2867
2867
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2868
2868
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2869
2869
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2870
2870
|
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2871
|
-
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2872
|
-
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2873
2871
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2872
|
+
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2873
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2874
2874
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2875
2875
|
CustomerPortalFragment.model_rebuild()
|
|
2876
2876
|
CustomerStatisticsFragment.model_rebuild()
|
|
@@ -2881,8 +2881,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
2881
2881
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
2882
2882
|
LayoutConfigurationFragment.model_rebuild()
|
|
2883
2883
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
2884
|
-
MockPaywallPriceFragment.model_rebuild()
|
|
2885
2884
|
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2885
|
+
MockPaywallPriceFragment.model_rebuild()
|
|
2886
2886
|
MockPaywallAddonFragment.model_rebuild()
|
|
2887
2887
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2888
2888
|
MockPaywallPlanFragment.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -2372,6 +2372,7 @@ class OverageEntitlementCreateInput(BaseModel):
|
|
|
2372
2372
|
alias="displayNameOverride", default=None
|
|
2373
2373
|
)
|
|
2374
2374
|
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
2375
|
+
feature_group_id: Optional[Any] = Field(alias="featureGroupId", default=None)
|
|
2375
2376
|
feature_id: Any = Field(alias="featureId")
|
|
2376
2377
|
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
2377
2378
|
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
@@ -2532,6 +2533,7 @@ class PackageEntitlementInput(BaseModel):
|
|
|
2532
2533
|
)
|
|
2533
2534
|
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
2534
2535
|
environment_id: Any = Field(alias="environmentId")
|
|
2536
|
+
feature_group_id: Optional[Any] = Field(alias="featureGroupId", default=None)
|
|
2535
2537
|
feature_id: Any = Field(alias="featureId")
|
|
2536
2538
|
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
2537
2539
|
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
@@ -3494,6 +3496,12 @@ class RemoveExperimentFromCustomerSubscriptionInput(BaseModel):
|
|
|
3494
3496
|
relation_id: Any = Field(alias="relationId")
|
|
3495
3497
|
|
|
3496
3498
|
|
|
3499
|
+
class RemoveFeatureGroupFromPackageInput(BaseModel):
|
|
3500
|
+
environment_id: Optional[Any] = Field(alias="environmentId", default=None)
|
|
3501
|
+
feature_group_id: Any = Field(alias="featureGroupId")
|
|
3502
|
+
package_id: Any = Field(alias="packageId")
|
|
3503
|
+
|
|
3504
|
+
|
|
3497
3505
|
class ReportUsageBaseInput(BaseModel):
|
|
3498
3506
|
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
3499
3507
|
customer_id: str = Field(alias="customerId")
|
|
@@ -4451,6 +4459,12 @@ class UnitTransformationInput(BaseModel):
|
|
|
4451
4459
|
round: Optional[UnitTransformationRound] = UnitTransformationRound.UP
|
|
4452
4460
|
|
|
4453
4461
|
|
|
4462
|
+
class UnlinkFeatureGroupInput(BaseModel):
|
|
4463
|
+
environment_id: Optional[Any] = Field(alias="environmentId", default=None)
|
|
4464
|
+
feature_group_id: Any = Field(alias="featureGroupId")
|
|
4465
|
+
package_id: Any = Field(alias="packageId")
|
|
4466
|
+
|
|
4467
|
+
|
|
4454
4468
|
class UpdateAccountInput(BaseModel):
|
|
4455
4469
|
access_method: Optional[AccountAccessMethod] = Field(
|
|
4456
4470
|
alias="accessMethod", default=None
|
|
@@ -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=
|
|
109
|
+
stigg/generated/__init__.py,sha256=8fT6fyA-MhIGPz6SLGukCkVZlCOedfvWLqu1FiEKewg,71665
|
|
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
|
|
@@ -119,11 +119,11 @@ stigg/generated/client.py,sha256=FIRvvpLkBu44ce1V4CJtQ1XFIsWX_tqk2Qh46MPpWIM,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=UPo_2u9GdUtupXMrqY5cBtlP-lgUyKOU5GF1_jPr7g4,36682
|
|
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=3157ATsQ_1kiEPHV-vmNNRWOCflwZbjGiDFkrdUYWQg,103692
|
|
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=
|
|
148
|
+
stigg/generated/input_types.py,sha256=fJq5IRSfMgfbqxDVWZ01YpTJODfcq9x2vbNErY00ArM,201286
|
|
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.
|
|
165
|
-
stigg_api_client_v2-2.
|
|
166
|
-
stigg_api_client_v2-2.
|
|
167
|
-
stigg_api_client_v2-2.
|
|
164
|
+
stigg_api_client_v2-2.486.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
165
|
+
stigg_api_client_v2-2.486.0.dist-info/METADATA,sha256=5Otz2BnvJe_-4_iTuZMHdQJhT0aIFi0vvNqM0G4N0v8,2258
|
|
166
|
+
stigg_api_client_v2-2.486.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
167
|
+
stigg_api_client_v2-2.486.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|