stigg-api-client-v2 2.329.0__py3-none-any.whl → 2.331.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 +173 -173
- stigg/generated/input_types.py +1 -0
- {stigg_api_client_v2-2.329.0.dist-info → stigg_api_client_v2-2.331.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.329.0.dist-info → stigg_api_client_v2-2.331.0.dist-info}/RECORD +7 -7
- {stigg_api_client_v2-2.329.0.dist-info → stigg_api_client_v2-2.331.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.329.0.dist-info → stigg_api_client_v2-2.331.0.dist-info}/WHEEL +0 -0
stigg/generated/enums.py
CHANGED
|
@@ -453,6 +453,7 @@ class ErrorCode(str, Enum):
|
|
|
453
453
|
FailedToCreateCheckoutSessionError = "FailedToCreateCheckoutSessionError"
|
|
454
454
|
FailedToImportCustomer = "FailedToImportCustomer"
|
|
455
455
|
FailedToImportSubscriptions = "FailedToImportSubscriptions"
|
|
456
|
+
FailedToResolveBillingIntegration = "FailedToResolveBillingIntegration"
|
|
456
457
|
FeatureNotFound = "FeatureNotFound"
|
|
457
458
|
FetchAllCountriesPricesNotAllowed = "FetchAllCountriesPricesNotAllowed"
|
|
458
459
|
FreePlanCantHaveCompatiblePackageGroupError = (
|
stigg/generated/fragments.py
CHANGED
|
@@ -111,6 +111,39 @@ class OveragePriceFragmentFeature(BaseModel):
|
|
|
111
111
|
description: Optional[str] = Field(default=None)
|
|
112
112
|
|
|
113
113
|
|
|
114
|
+
class PackageEntitlementFragment(BaseModel):
|
|
115
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
116
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
117
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
118
|
+
feature_id: str = Field(alias="featureId")
|
|
119
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
120
|
+
alias="resetPeriod", default=None
|
|
121
|
+
)
|
|
122
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
123
|
+
alias="hiddenFromWidgets", default=None
|
|
124
|
+
)
|
|
125
|
+
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
126
|
+
display_name_override: Optional[str] = Field(
|
|
127
|
+
alias="displayNameOverride", default=None
|
|
128
|
+
)
|
|
129
|
+
feature: "PackageEntitlementFragmentFeature"
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
class PackageEntitlementFragmentFeature(BaseModel):
|
|
133
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
134
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
135
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
136
|
+
feature_units_plural: Optional[str] = Field(
|
|
137
|
+
alias="featureUnitsPlural", default=None
|
|
138
|
+
)
|
|
139
|
+
display_name: str = Field(alias="displayName")
|
|
140
|
+
description: Optional[str] = Field(default=None)
|
|
141
|
+
ref_id: str = Field(alias="refId")
|
|
142
|
+
additional_meta_data: Optional[Any] = Field(
|
|
143
|
+
alias="additionalMetaData", default=None
|
|
144
|
+
)
|
|
145
|
+
|
|
146
|
+
|
|
114
147
|
class PriceFragment(BaseModel):
|
|
115
148
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
116
149
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -147,39 +180,6 @@ class PriceFragmentFeature(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")
|
|
@@ -215,54 +215,22 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
215
215
|
pass
|
|
216
216
|
|
|
217
217
|
|
|
218
|
-
class
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
228
|
-
amount: float
|
|
229
|
-
currency: Currency
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
233
|
-
amount: float
|
|
234
|
-
currency: Currency
|
|
218
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
219
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
220
|
+
display_name: str = Field(alias="displayName")
|
|
221
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
222
|
+
default=None
|
|
223
|
+
)
|
|
224
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
235
225
|
|
|
236
226
|
|
|
237
|
-
class
|
|
238
|
-
|
|
239
|
-
status: SubscriptionInvoiceStatus
|
|
240
|
-
created_at: Any = Field(alias="createdAt")
|
|
241
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
242
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
243
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
244
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
245
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
246
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
247
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
248
|
-
alias="billingReason", default=None
|
|
249
|
-
)
|
|
250
|
-
currency: Optional[str] = Field(default=None)
|
|
251
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
252
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
253
|
-
alias="subTotalExcludingTax", default=None
|
|
254
|
-
)
|
|
255
|
-
total: Optional[float] = Field(default=None)
|
|
256
|
-
total_excluding_tax: Optional[float] = Field(
|
|
257
|
-
alias="totalExcludingTax", default=None
|
|
258
|
-
)
|
|
259
|
-
tax: Optional[float] = Field(default=None)
|
|
260
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
261
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
227
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
228
|
+
pass
|
|
262
229
|
|
|
263
230
|
|
|
264
|
-
class
|
|
265
|
-
|
|
231
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
232
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
233
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
266
234
|
|
|
267
235
|
|
|
268
236
|
class ProductFragment(BaseModel):
|
|
@@ -286,24 +254,6 @@ class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
|
286
254
|
display_name: str = Field(alias="displayName")
|
|
287
255
|
|
|
288
256
|
|
|
289
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
290
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
291
|
-
display_name: str = Field(alias="displayName")
|
|
292
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
293
|
-
default=None
|
|
294
|
-
)
|
|
295
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
299
|
-
pass
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
303
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
304
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
305
|
-
|
|
306
|
-
|
|
307
257
|
class PlanFragment(BaseModel):
|
|
308
258
|
id: str
|
|
309
259
|
ref_id: str = Field(alias="refId")
|
|
@@ -385,6 +335,33 @@ class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
|
385
335
|
limit: float
|
|
386
336
|
|
|
387
337
|
|
|
338
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
339
|
+
billing_id: str = Field(alias="billingId")
|
|
340
|
+
status: SubscriptionInvoiceStatus
|
|
341
|
+
created_at: Any = Field(alias="createdAt")
|
|
342
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
343
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
344
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
345
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
346
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
347
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
348
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
349
|
+
alias="billingReason", default=None
|
|
350
|
+
)
|
|
351
|
+
currency: Optional[str] = Field(default=None)
|
|
352
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
353
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
354
|
+
alias="subTotalExcludingTax", default=None
|
|
355
|
+
)
|
|
356
|
+
total: Optional[float] = Field(default=None)
|
|
357
|
+
total_excluding_tax: Optional[float] = Field(
|
|
358
|
+
alias="totalExcludingTax", default=None
|
|
359
|
+
)
|
|
360
|
+
tax: Optional[float] = Field(default=None)
|
|
361
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
362
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
363
|
+
|
|
364
|
+
|
|
388
365
|
class SubscriptionFutureUpdateData(BaseModel):
|
|
389
366
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
390
367
|
alias="subscriptionScheduleType"
|
|
@@ -556,6 +533,25 @@ class SlimCustomerFragment(BaseModel):
|
|
|
556
533
|
)
|
|
557
534
|
|
|
558
535
|
|
|
536
|
+
class TotalPriceFragment(BaseModel):
|
|
537
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
538
|
+
total: "TotalPriceFragmentTotal"
|
|
539
|
+
|
|
540
|
+
|
|
541
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
542
|
+
amount: float
|
|
543
|
+
currency: Currency
|
|
544
|
+
|
|
545
|
+
|
|
546
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
547
|
+
amount: float
|
|
548
|
+
currency: Currency
|
|
549
|
+
|
|
550
|
+
|
|
551
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
552
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
553
|
+
|
|
554
|
+
|
|
559
555
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
560
556
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
561
557
|
alias="subscriptionScheduleType"
|
|
@@ -718,6 +714,10 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
718
714
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
719
715
|
|
|
720
716
|
|
|
717
|
+
class CustomerResourceFragment(BaseModel):
|
|
718
|
+
resource_id: str = Field(alias="resourceId")
|
|
719
|
+
|
|
720
|
+
|
|
721
721
|
class SubscriptionFragment(BaseModel):
|
|
722
722
|
id: str
|
|
723
723
|
subscription_id: str = Field(alias="subscriptionId")
|
|
@@ -987,35 +987,6 @@ 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
|
-
|
|
1019
990
|
class CouponFragment(BaseModel):
|
|
1020
991
|
id: str
|
|
1021
992
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1050,6 +1021,35 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1050
1021
|
status: SyncStatus
|
|
1051
1022
|
|
|
1052
1023
|
|
|
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,6 +1250,13 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1250
1250
|
pass
|
|
1251
1251
|
|
|
1252
1252
|
|
|
1253
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1254
|
+
addon_id: str = Field(alias="addonId")
|
|
1255
|
+
description: Optional[str] = Field(default=None)
|
|
1256
|
+
display_name: str = Field(alias="displayName")
|
|
1257
|
+
quantity: int
|
|
1258
|
+
|
|
1259
|
+
|
|
1253
1260
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1254
1261
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1255
1262
|
alias="subscriptionScheduleType"
|
|
@@ -1419,13 +1426,6 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1419
1426
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1420
1427
|
|
|
1421
1428
|
|
|
1422
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1423
|
-
addon_id: str = Field(alias="addonId")
|
|
1424
|
-
description: Optional[str] = Field(default=None)
|
|
1425
|
-
display_name: str = Field(alias="displayName")
|
|
1426
|
-
quantity: int
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
1429
|
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1430
1430
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1431
1431
|
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
@@ -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")
|
|
@@ -2765,19 +2765,19 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2765
2765
|
AddonDependencyFragment.model_rebuild()
|
|
2766
2766
|
PriceTierFragment.model_rebuild()
|
|
2767
2767
|
OveragePriceFragment.model_rebuild()
|
|
2768
|
-
PriceFragment.model_rebuild()
|
|
2769
2768
|
PackageEntitlementFragment.model_rebuild()
|
|
2769
|
+
PriceFragment.model_rebuild()
|
|
2770
2770
|
AddonFragment.model_rebuild()
|
|
2771
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2772
|
-
TotalPriceFragment.model_rebuild()
|
|
2773
|
-
SubscriptionInvoiceFragment.model_rebuild()
|
|
2774
|
-
CustomerResourceFragment.model_rebuild()
|
|
2775
|
-
ProductFragment.model_rebuild()
|
|
2776
2771
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2772
|
+
ProductFragment.model_rebuild()
|
|
2777
2773
|
PlanFragment.model_rebuild()
|
|
2774
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2778
2775
|
SubscriptionFutureUpdateData.model_rebuild()
|
|
2779
2776
|
SlimCustomerFragment.model_rebuild()
|
|
2777
|
+
TotalPriceFragment.model_rebuild()
|
|
2778
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2780
2779
|
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2780
|
+
CustomerResourceFragment.model_rebuild()
|
|
2781
2781
|
SubscriptionFragment.model_rebuild()
|
|
2782
2782
|
FeatureFragment.model_rebuild()
|
|
2783
2783
|
EntitlementFragment.model_rebuild()
|
|
@@ -2785,15 +2785,15 @@ ApplySubscriptionFragment.model_rebuild()
|
|
|
2785
2785
|
FontVariantFragment.model_rebuild()
|
|
2786
2786
|
TypographyConfigurationFragment.model_rebuild()
|
|
2787
2787
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2788
|
-
PromotionalEntitlementFragment.model_rebuild()
|
|
2789
2788
|
CouponFragment.model_rebuild()
|
|
2789
|
+
PromotionalEntitlementFragment.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
|
-
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2796
2795
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2796
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2797
2797
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2798
2798
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2799
2799
|
CustomerPortalPromotionalEntitlementFragment.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
|
@@ -3660,6 +3660,7 @@ class SubscriptionBillingInfo(BaseModel):
|
|
|
3660
3660
|
alias="chargeOnBehalfOfAccount", default=None
|
|
3661
3661
|
)
|
|
3662
3662
|
coupon_id: Optional[str] = Field(alias="couponId", default=None)
|
|
3663
|
+
integration_id: Optional[str] = Field(alias="integrationId", default=None)
|
|
3663
3664
|
invoice_days_until_due: Optional[float] = Field(
|
|
3664
3665
|
alias="invoiceDaysUntilDue", default=None
|
|
3665
3666
|
)
|
|
@@ -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=GSE5V0OioageZfpl_XDszdROY03BerofExrP5kWa9Rg,34946
|
|
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=YPSznOSO2LXT_DESMPbfS3jIlDN9K-ML1x2k3-CWExw,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=_wts0gXKpc1TEesBuODk_IWg0N3ceBUr4_LX5jwFzwI,192292
|
|
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.331.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.331.0.dist-info/METADATA,sha256=2taQvy1wY93aYH8BHvAuE3PyrqS7DWQmohAfQya_oig,2258
|
|
165
|
+
stigg_api_client_v2-2.331.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.331.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|