stigg-api-client-v2 2.315.3__py3-none-any.whl → 2.321.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 +176 -176
- stigg/generated/input_types.py +4 -2
- {stigg_api_client_v2-2.315.3.dist-info → stigg_api_client_v2-2.321.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.315.3.dist-info → stigg_api_client_v2-2.321.0.dist-info}/RECORD +7 -7
- {stigg_api_client_v2-2.315.3.dist-info → stigg_api_client_v2-2.321.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.315.3.dist-info → stigg_api_client_v2-2.321.0.dist-info}/WHEEL +0 -0
stigg/generated/enums.py
CHANGED
|
@@ -456,6 +456,7 @@ class ErrorCode(str, Enum):
|
|
|
456
456
|
FreePlanCantHaveCompatiblePackageGroupError = (
|
|
457
457
|
"FreePlanCantHaveCompatiblePackageGroupError"
|
|
458
458
|
)
|
|
459
|
+
GraphQLAliasesLimitExceeded = "GraphQLAliasesLimitExceeded"
|
|
459
460
|
HubspotIntegrationError = "HubspotIntegrationError"
|
|
460
461
|
IdentityForbidden = "IdentityForbidden"
|
|
461
462
|
ImportAlreadyInProgress = "ImportAlreadyInProgress"
|
stigg/generated/fragments.py
CHANGED
|
@@ -59,6 +59,39 @@ class AddonDependencyFragment(BaseModel):
|
|
|
59
59
|
description: Optional[str] = Field(default=None)
|
|
60
60
|
|
|
61
61
|
|
|
62
|
+
class PackageEntitlementFragment(BaseModel):
|
|
63
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
64
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
65
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
66
|
+
feature_id: str = Field(alias="featureId")
|
|
67
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
68
|
+
alias="resetPeriod", default=None
|
|
69
|
+
)
|
|
70
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
71
|
+
alias="hiddenFromWidgets", default=None
|
|
72
|
+
)
|
|
73
|
+
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
74
|
+
display_name_override: Optional[str] = Field(
|
|
75
|
+
alias="displayNameOverride", default=None
|
|
76
|
+
)
|
|
77
|
+
feature: "PackageEntitlementFragmentFeature"
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
class PackageEntitlementFragmentFeature(BaseModel):
|
|
81
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
82
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
83
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
84
|
+
feature_units_plural: Optional[str] = Field(
|
|
85
|
+
alias="featureUnitsPlural", default=None
|
|
86
|
+
)
|
|
87
|
+
display_name: str = Field(alias="displayName")
|
|
88
|
+
description: Optional[str] = Field(default=None)
|
|
89
|
+
ref_id: str = Field(alias="refId")
|
|
90
|
+
additional_meta_data: Optional[Any] = Field(
|
|
91
|
+
alias="additionalMetaData", default=None
|
|
92
|
+
)
|
|
93
|
+
|
|
94
|
+
|
|
62
95
|
class PriceTierFragment(BaseModel):
|
|
63
96
|
up_to: Optional[float] = Field(alias="upTo", default=None)
|
|
64
97
|
unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
|
|
@@ -79,33 +112,29 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
79
112
|
currency: Currency
|
|
80
113
|
|
|
81
114
|
|
|
82
|
-
class
|
|
115
|
+
class OveragePriceFragment(BaseModel):
|
|
83
116
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
84
117
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
85
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
86
118
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
87
|
-
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
88
|
-
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
89
119
|
billing_country_code: Optional[str] = Field(
|
|
90
120
|
alias="billingCountryCode", default=None
|
|
91
121
|
)
|
|
92
|
-
price: Optional["
|
|
122
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
93
123
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
94
|
-
tiers: Optional[List["
|
|
95
|
-
feature: Optional["
|
|
96
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
124
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
125
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
97
126
|
|
|
98
127
|
|
|
99
|
-
class
|
|
128
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
100
129
|
amount: float
|
|
101
130
|
currency: Currency
|
|
102
131
|
|
|
103
132
|
|
|
104
|
-
class
|
|
133
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
105
134
|
pass
|
|
106
135
|
|
|
107
136
|
|
|
108
|
-
class
|
|
137
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
109
138
|
ref_id: str = Field(alias="refId")
|
|
110
139
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
111
140
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -115,29 +144,33 @@ class PriceFragmentFeature(BaseModel):
|
|
|
115
144
|
description: Optional[str] = Field(default=None)
|
|
116
145
|
|
|
117
146
|
|
|
118
|
-
class
|
|
147
|
+
class PriceFragment(BaseModel):
|
|
119
148
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
120
149
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
150
|
+
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
121
151
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
152
|
+
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
153
|
+
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
122
154
|
billing_country_code: Optional[str] = Field(
|
|
123
155
|
alias="billingCountryCode", default=None
|
|
124
156
|
)
|
|
125
|
-
price: Optional["
|
|
157
|
+
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
126
158
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
127
|
-
tiers: Optional[List["
|
|
128
|
-
feature: Optional["
|
|
159
|
+
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
160
|
+
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
161
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
129
162
|
|
|
130
163
|
|
|
131
|
-
class
|
|
164
|
+
class PriceFragmentPrice(BaseModel):
|
|
132
165
|
amount: float
|
|
133
166
|
currency: Currency
|
|
134
167
|
|
|
135
168
|
|
|
136
|
-
class
|
|
169
|
+
class PriceFragmentTiers(PriceTierFragment):
|
|
137
170
|
pass
|
|
138
171
|
|
|
139
172
|
|
|
140
|
-
class
|
|
173
|
+
class PriceFragmentFeature(BaseModel):
|
|
141
174
|
ref_id: str = Field(alias="refId")
|
|
142
175
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
143
176
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -147,39 +180,6 @@ class OveragePriceFragmentFeature(BaseModel):
|
|
|
147
180
|
description: Optional[str] = Field(default=None)
|
|
148
181
|
|
|
149
182
|
|
|
150
|
-
class PackageEntitlementFragment(BaseModel):
|
|
151
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
152
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
153
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
154
|
-
feature_id: str = Field(alias="featureId")
|
|
155
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
156
|
-
alias="resetPeriod", default=None
|
|
157
|
-
)
|
|
158
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
159
|
-
alias="hiddenFromWidgets", default=None
|
|
160
|
-
)
|
|
161
|
-
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
162
|
-
display_name_override: Optional[str] = Field(
|
|
163
|
-
alias="displayNameOverride", default=None
|
|
164
|
-
)
|
|
165
|
-
feature: "PackageEntitlementFragmentFeature"
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
class PackageEntitlementFragmentFeature(BaseModel):
|
|
169
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
170
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
171
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
172
|
-
feature_units_plural: Optional[str] = Field(
|
|
173
|
-
alias="featureUnitsPlural", default=None
|
|
174
|
-
)
|
|
175
|
-
display_name: str = Field(alias="displayName")
|
|
176
|
-
description: Optional[str] = Field(default=None)
|
|
177
|
-
ref_id: str = Field(alias="refId")
|
|
178
|
-
additional_meta_data: Optional[Any] = Field(
|
|
179
|
-
alias="additionalMetaData", default=None
|
|
180
|
-
)
|
|
181
|
-
|
|
182
|
-
|
|
183
183
|
class AddonFragment(BaseModel):
|
|
184
184
|
id: str
|
|
185
185
|
ref_id: str = Field(alias="refId")
|
|
@@ -298,27 +298,6 @@ class EntitlementFragmentFeature(FeatureFragment):
|
|
|
298
298
|
pass
|
|
299
299
|
|
|
300
300
|
|
|
301
|
-
class SlimCustomerFragment(BaseModel):
|
|
302
|
-
id: str
|
|
303
|
-
name: Optional[str] = Field(default=None)
|
|
304
|
-
email: Optional[str] = Field(default=None)
|
|
305
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
306
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
307
|
-
ref_id: str = Field(alias="refId")
|
|
308
|
-
customer_id: str = Field(alias="customerId")
|
|
309
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
310
|
-
additional_meta_data: Optional[Any] = Field(
|
|
311
|
-
alias="additionalMetaData", default=None
|
|
312
|
-
)
|
|
313
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
314
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
315
|
-
)
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
class CustomerResourceFragment(BaseModel):
|
|
319
|
-
resource_id: str = Field(alias="resourceId")
|
|
320
|
-
|
|
321
|
-
|
|
322
301
|
class SubscriptionFutureUpdateData(BaseModel):
|
|
323
302
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
324
303
|
alias="subscriptionScheduleType"
|
|
@@ -681,6 +660,27 @@ class SubscriptionInvoiceFragment(BaseModel):
|
|
|
681
660
|
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
682
661
|
|
|
683
662
|
|
|
663
|
+
class SlimCustomerFragment(BaseModel):
|
|
664
|
+
id: str
|
|
665
|
+
name: Optional[str] = Field(default=None)
|
|
666
|
+
email: Optional[str] = Field(default=None)
|
|
667
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
668
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
669
|
+
ref_id: str = Field(alias="refId")
|
|
670
|
+
customer_id: str = Field(alias="customerId")
|
|
671
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
672
|
+
additional_meta_data: Optional[Any] = Field(
|
|
673
|
+
alias="additionalMetaData", default=None
|
|
674
|
+
)
|
|
675
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
676
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
677
|
+
)
|
|
678
|
+
|
|
679
|
+
|
|
680
|
+
class CustomerResourceFragment(BaseModel):
|
|
681
|
+
resource_id: str = Field(alias="resourceId")
|
|
682
|
+
|
|
683
|
+
|
|
684
684
|
class ProductFragment(BaseModel):
|
|
685
685
|
ref_id: str = Field(alias="refId")
|
|
686
686
|
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
@@ -987,6 +987,35 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
987
987
|
)
|
|
988
988
|
|
|
989
989
|
|
|
990
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
991
|
+
status: PromotionalEntitlementStatus
|
|
992
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
993
|
+
feature_id: str = Field(alias="featureId")
|
|
994
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
995
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
996
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
997
|
+
alias="resetPeriod", default=None
|
|
998
|
+
)
|
|
999
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1000
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1001
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1002
|
+
|
|
1003
|
+
|
|
1004
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1005
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1006
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1007
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1008
|
+
feature_units_plural: Optional[str] = Field(
|
|
1009
|
+
alias="featureUnitsPlural", default=None
|
|
1010
|
+
)
|
|
1011
|
+
display_name: str = Field(alias="displayName")
|
|
1012
|
+
description: Optional[str] = Field(default=None)
|
|
1013
|
+
ref_id: str = Field(alias="refId")
|
|
1014
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1015
|
+
alias="additionalMetaData", default=None
|
|
1016
|
+
)
|
|
1017
|
+
|
|
1018
|
+
|
|
990
1019
|
class CouponFragment(BaseModel):
|
|
991
1020
|
id: str
|
|
992
1021
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1021,35 +1050,6 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1021
1050
|
status: SyncStatus
|
|
1022
1051
|
|
|
1023
1052
|
|
|
1024
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
1025
|
-
status: PromotionalEntitlementStatus
|
|
1026
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1027
|
-
feature_id: str = Field(alias="featureId")
|
|
1028
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1029
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1030
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1031
|
-
alias="resetPeriod", default=None
|
|
1032
|
-
)
|
|
1033
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1034
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1035
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1039
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1040
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1041
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1042
|
-
feature_units_plural: Optional[str] = Field(
|
|
1043
|
-
alias="featureUnitsPlural", default=None
|
|
1044
|
-
)
|
|
1045
|
-
display_name: str = Field(alias="displayName")
|
|
1046
|
-
description: Optional[str] = Field(default=None)
|
|
1047
|
-
ref_id: str = Field(alias="refId")
|
|
1048
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1049
|
-
alias="additionalMetaData", default=None
|
|
1050
|
-
)
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
1053
|
class CustomerFragment(SlimCustomerFragment):
|
|
1054
1054
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1055
1055
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1250,31 +1250,14 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1250
1250
|
pass
|
|
1251
1251
|
|
|
1252
1252
|
|
|
1253
|
-
class
|
|
1254
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1255
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1256
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1257
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1258
|
-
default=None
|
|
1259
|
-
)
|
|
1260
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1261
|
-
default=None
|
|
1262
|
-
)
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1266
|
-
amount: float
|
|
1267
|
-
currency: Currency
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1271
|
-
id: str
|
|
1272
|
-
ref_id: str = Field(alias="refId")
|
|
1253
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1273
1254
|
display_name: str = Field(alias="displayName")
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1255
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1256
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1257
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1258
|
+
period: PromotionalEntitlementPeriod
|
|
1259
|
+
start_date: Any = Field(alias="startDate")
|
|
1260
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1278
1261
|
|
|
1279
1262
|
|
|
1280
1263
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
@@ -1446,6 +1429,33 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1446
1429
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1447
1430
|
|
|
1448
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
|
+
|
|
1449
1459
|
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1450
1460
|
addon_id: str = Field(alias="addonId")
|
|
1451
1461
|
description: Optional[str] = Field(default=None)
|
|
@@ -1549,16 +1559,6 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1549
1559
|
pass
|
|
1550
1560
|
|
|
1551
1561
|
|
|
1552
|
-
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1553
|
-
display_name: str = Field(alias="displayName")
|
|
1554
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1555
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1556
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1557
|
-
period: PromotionalEntitlementPeriod
|
|
1558
|
-
start_date: Any = Field(alias="startDate")
|
|
1559
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
1562
|
class CustomerPortalFragment(BaseModel):
|
|
1563
1563
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1564
1564
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -1786,6 +1786,39 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1786
1786
|
description: Optional[str] = Field(default=None)
|
|
1787
1787
|
|
|
1788
1788
|
|
|
1789
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1790
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1791
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1792
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1793
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1794
|
+
alias="resetPeriod", default=None
|
|
1795
|
+
)
|
|
1796
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1797
|
+
alias="hiddenFromWidgets", default=None
|
|
1798
|
+
)
|
|
1799
|
+
display_name_override: Optional[str] = Field(
|
|
1800
|
+
alias="displayNameOverride", default=None
|
|
1801
|
+
)
|
|
1802
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1803
|
+
default=None
|
|
1804
|
+
)
|
|
1805
|
+
|
|
1806
|
+
|
|
1807
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1808
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1809
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1810
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1811
|
+
feature_units_plural: Optional[str] = Field(
|
|
1812
|
+
alias="featureUnitsPlural", default=None
|
|
1813
|
+
)
|
|
1814
|
+
display_name: str = Field(alias="displayName")
|
|
1815
|
+
description: Optional[str] = Field(default=None)
|
|
1816
|
+
ref_id: str = Field(alias="refId")
|
|
1817
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1818
|
+
alias="additionalMetaData", default=None
|
|
1819
|
+
)
|
|
1820
|
+
|
|
1821
|
+
|
|
1789
1822
|
class MockPaywallPriceFragment(BaseModel):
|
|
1790
1823
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1791
1824
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1820,39 +1853,6 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1820
1853
|
display_name: str = Field(alias="displayName")
|
|
1821
1854
|
|
|
1822
1855
|
|
|
1823
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1824
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1825
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1826
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1827
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1828
|
-
alias="resetPeriod", default=None
|
|
1829
|
-
)
|
|
1830
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1831
|
-
alias="hiddenFromWidgets", default=None
|
|
1832
|
-
)
|
|
1833
|
-
display_name_override: Optional[str] = Field(
|
|
1834
|
-
alias="displayNameOverride", default=None
|
|
1835
|
-
)
|
|
1836
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1837
|
-
default=None
|
|
1838
|
-
)
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1842
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1843
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1844
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1845
|
-
feature_units_plural: Optional[str] = Field(
|
|
1846
|
-
alias="featureUnitsPlural", default=None
|
|
1847
|
-
)
|
|
1848
|
-
display_name: str = Field(alias="displayName")
|
|
1849
|
-
description: Optional[str] = Field(default=None)
|
|
1850
|
-
ref_id: str = Field(alias="refId")
|
|
1851
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1852
|
-
alias="additionalMetaData", default=None
|
|
1853
|
-
)
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
1856
|
class MockPaywallAddonFragment(BaseModel):
|
|
1857
1857
|
ref_id: str = Field(alias="refId")
|
|
1858
1858
|
display_name: str = Field(alias="displayName")
|
|
@@ -2763,20 +2763,20 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2763
2763
|
|
|
2764
2764
|
|
|
2765
2765
|
AddonDependencyFragment.model_rebuild()
|
|
2766
|
+
PackageEntitlementFragment.model_rebuild()
|
|
2766
2767
|
PriceTierFragment.model_rebuild()
|
|
2767
|
-
PriceFragment.model_rebuild()
|
|
2768
2768
|
OveragePriceFragment.model_rebuild()
|
|
2769
|
-
|
|
2769
|
+
PriceFragment.model_rebuild()
|
|
2770
2770
|
AddonFragment.model_rebuild()
|
|
2771
2771
|
FeatureFragment.model_rebuild()
|
|
2772
2772
|
EntitlementFragment.model_rebuild()
|
|
2773
|
-
SlimCustomerFragment.model_rebuild()
|
|
2774
|
-
CustomerResourceFragment.model_rebuild()
|
|
2775
2773
|
SubscriptionFutureUpdateData.model_rebuild()
|
|
2776
2774
|
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2777
2775
|
TotalPriceFragment.model_rebuild()
|
|
2778
2776
|
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2779
2777
|
SubscriptionInvoiceFragment.model_rebuild()
|
|
2778
|
+
SlimCustomerFragment.model_rebuild()
|
|
2779
|
+
CustomerResourceFragment.model_rebuild()
|
|
2780
2780
|
ProductFragment.model_rebuild()
|
|
2781
2781
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2782
2782
|
PlanFragment.model_rebuild()
|
|
@@ -2785,18 +2785,18 @@ ApplySubscriptionFragment.model_rebuild()
|
|
|
2785
2785
|
FontVariantFragment.model_rebuild()
|
|
2786
2786
|
TypographyConfigurationFragment.model_rebuild()
|
|
2787
2787
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2788
|
-
CouponFragment.model_rebuild()
|
|
2789
2788
|
PromotionalEntitlementFragment.model_rebuild()
|
|
2789
|
+
CouponFragment.model_rebuild()
|
|
2790
2790
|
CustomerFragment.model_rebuild()
|
|
2791
2791
|
CheckoutStateFragment.model_rebuild()
|
|
2792
2792
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2793
2793
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2794
2794
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2795
|
-
|
|
2795
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2796
2796
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2797
|
+
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2797
2798
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2798
2799
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2799
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2800
2800
|
CustomerPortalFragment.model_rebuild()
|
|
2801
2801
|
CustomerStatisticsFragment.model_rebuild()
|
|
2802
2802
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
|
@@ -2806,8 +2806,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
2806
2806
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
2807
2807
|
LayoutConfigurationFragment.model_rebuild()
|
|
2808
2808
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
2809
|
-
MockPaywallPriceFragment.model_rebuild()
|
|
2810
2809
|
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2810
|
+
MockPaywallPriceFragment.model_rebuild()
|
|
2811
2811
|
MockPaywallAddonFragment.model_rebuild()
|
|
2812
2812
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2813
2813
|
MockPaywallPlanFragment.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -3394,11 +3394,13 @@ class ReportUsageInput(BaseModel):
|
|
|
3394
3394
|
|
|
3395
3395
|
class ResyncIntegrationInput(BaseModel):
|
|
3396
3396
|
environment_id: str = Field(alias="environmentId")
|
|
3397
|
-
integration_id:
|
|
3397
|
+
integration_id: str = Field(alias="integrationId")
|
|
3398
3398
|
recalculate_entitlements: Optional[bool] = Field(
|
|
3399
3399
|
alias="recalculateEntitlements", default=None
|
|
3400
3400
|
)
|
|
3401
|
-
vendor_identifier: VendorIdentifier = Field(
|
|
3401
|
+
vendor_identifier: Optional[VendorIdentifier] = Field(
|
|
3402
|
+
alias="vendorIdentifier", default=None
|
|
3403
|
+
)
|
|
3402
3404
|
|
|
3403
3405
|
|
|
3404
3406
|
class RevokePromotionalEntitlementInput(BaseModel):
|
|
@@ -119,11 +119,11 @@ stigg/generated/client.py,sha256=AHebP8X0jl5noIxkZwMgE-EOE3e5lv-tGrCj2xDt58c,169
|
|
|
119
119
|
stigg/generated/create_subscription.py,sha256=vbpBJ_daXHcQDtvU3vbwSr2E7s4VGRHxqPavyTV3Mtk,457
|
|
120
120
|
stigg/generated/delegate_subscription_to_customer.py,sha256=0TgQDO0Hk-z7X7PGtqhvciqa8IjkToK9cpiX3Kqu_UY,561
|
|
121
121
|
stigg/generated/detach_customer_payment_method.py,sha256=ACXlC2xsGaUP723OrayFZQ9SbXxe8TtVUYdG1gqcYFc,523
|
|
122
|
-
stigg/generated/enums.py,sha256
|
|
122
|
+
stigg/generated/enums.py,sha256=h9LSA5nwfWf-0PfV_KXU4DVxr07T_9ZF4LcYXGRIMxY,34540
|
|
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=XVKri5oXHmVtFPSBjPmiNl0ry4uJ9PL4_1kEvDv3RAA,100632
|
|
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
|
|
@@ -144,7 +144,7 @@ stigg/generated/grant_promotional_entitlements.py,sha256=72PRYuqecL-0SkWb7deygkh
|
|
|
144
144
|
stigg/generated/import_customer.py,sha256=yEtrEB7T-Aykv3AUl-rAQz2XL6hKL0j-7JL3h-xi87o,403
|
|
145
145
|
stigg/generated/import_customer_bulk.py,sha256=miLn2ScWlPOH1IipltY5Vgd-ZQ_BkBk9t3-EsLvU5ZQ,284
|
|
146
146
|
stigg/generated/import_subscriptions_bulk.py,sha256=QgitpZkjE7eBhP1o5W0PTVAbKOvz61dNoeBAWupIcgU,297
|
|
147
|
-
stigg/generated/input_types.py,sha256=
|
|
147
|
+
stigg/generated/input_types.py,sha256=Vpk36x_g6IcZNyf_9468U50_hycdNtwDPEggOEdWu_o,191503
|
|
148
148
|
stigg/generated/migrate_subscription_to_latest.py,sha256=qQDwH7EodYAeJFb62IIl-MAEB5MbthgCJ0v1RMxpdYk,516
|
|
149
149
|
stigg/generated/preview_next_invoice.py,sha256=MiQ4Gv7Ve1Hv60xhaQi7uj82aq0xLP2UB-gjvcQdOL8,478
|
|
150
150
|
stigg/generated/preview_subscription.py,sha256=Qo2vlFs7sFzqaE8J_e-EHTRfLvG46lko-dcJMxDSCR0,475
|
|
@@ -160,7 +160,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
|
|
|
160
160
|
stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
|
|
161
161
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
162
162
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
163
|
-
stigg_api_client_v2-2.
|
|
164
|
-
stigg_api_client_v2-2.
|
|
165
|
-
stigg_api_client_v2-2.
|
|
166
|
-
stigg_api_client_v2-2.
|
|
163
|
+
stigg_api_client_v2-2.321.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.321.0.dist-info/METADATA,sha256=JugVDQo77XjACIfUz8KjSOpAJg_pkPScjDBSNt_a5vE,2258
|
|
165
|
+
stigg_api_client_v2-2.321.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.321.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|