stigg-api-client-v2 2.329.0__py3-none-any.whl → 2.331.1__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/fragments.py +184 -184
- {stigg_api_client_v2-2.329.0.dist-info → stigg_api_client_v2-2.331.1.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.329.0.dist-info → stigg_api_client_v2-2.331.1.dist-info}/RECORD +5 -5
- {stigg_api_client_v2-2.329.0.dist-info → stigg_api_client_v2-2.331.1.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.329.0.dist-info → stigg_api_client_v2-2.331.1.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -79,29 +79,33 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
79
79
|
currency: Currency
|
|
80
80
|
|
|
81
81
|
|
|
82
|
-
class
|
|
82
|
+
class PriceFragment(BaseModel):
|
|
83
83
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
84
84
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
85
|
+
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
85
86
|
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)
|
|
86
89
|
billing_country_code: Optional[str] = Field(
|
|
87
90
|
alias="billingCountryCode", default=None
|
|
88
91
|
)
|
|
89
|
-
price: Optional["
|
|
92
|
+
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
90
93
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
91
|
-
tiers: Optional[List["
|
|
92
|
-
feature: Optional["
|
|
94
|
+
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
95
|
+
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
96
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
93
97
|
|
|
94
98
|
|
|
95
|
-
class
|
|
99
|
+
class PriceFragmentPrice(BaseModel):
|
|
96
100
|
amount: float
|
|
97
101
|
currency: Currency
|
|
98
102
|
|
|
99
103
|
|
|
100
|
-
class
|
|
104
|
+
class PriceFragmentTiers(PriceTierFragment):
|
|
101
105
|
pass
|
|
102
106
|
|
|
103
107
|
|
|
104
|
-
class
|
|
108
|
+
class PriceFragmentFeature(BaseModel):
|
|
105
109
|
ref_id: str = Field(alias="refId")
|
|
106
110
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
107
111
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -111,33 +115,29 @@ class OveragePriceFragmentFeature(BaseModel):
|
|
|
111
115
|
description: Optional[str] = Field(default=None)
|
|
112
116
|
|
|
113
117
|
|
|
114
|
-
class
|
|
118
|
+
class OveragePriceFragment(BaseModel):
|
|
115
119
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
116
120
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
117
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
118
121
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
119
|
-
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
120
|
-
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
121
122
|
billing_country_code: Optional[str] = Field(
|
|
122
123
|
alias="billingCountryCode", default=None
|
|
123
124
|
)
|
|
124
|
-
price: Optional["
|
|
125
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
125
126
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
126
|
-
tiers: Optional[List["
|
|
127
|
-
feature: Optional["
|
|
128
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
127
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
128
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
129
129
|
|
|
130
130
|
|
|
131
|
-
class
|
|
131
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
132
132
|
amount: float
|
|
133
133
|
currency: Currency
|
|
134
134
|
|
|
135
135
|
|
|
136
|
-
class
|
|
136
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
137
137
|
pass
|
|
138
138
|
|
|
139
139
|
|
|
140
|
-
class
|
|
140
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
141
141
|
ref_id: str = Field(alias="refId")
|
|
142
142
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
143
143
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -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,31 @@ class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
|
385
335
|
limit: float
|
|
386
336
|
|
|
387
337
|
|
|
338
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
339
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
340
|
+
|
|
341
|
+
|
|
342
|
+
class SlimCustomerFragment(BaseModel):
|
|
343
|
+
id: str
|
|
344
|
+
name: Optional[str] = Field(default=None)
|
|
345
|
+
email: Optional[str] = Field(default=None)
|
|
346
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
347
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
348
|
+
ref_id: str = Field(alias="refId")
|
|
349
|
+
customer_id: str = Field(alias="customerId")
|
|
350
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
351
|
+
additional_meta_data: Optional[Any] = Field(
|
|
352
|
+
alias="additionalMetaData", default=None
|
|
353
|
+
)
|
|
354
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
355
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
356
|
+
)
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
class CustomerResourceFragment(BaseModel):
|
|
360
|
+
resource_id: str = Field(alias="resourceId")
|
|
361
|
+
|
|
362
|
+
|
|
388
363
|
class SubscriptionFutureUpdateData(BaseModel):
|
|
389
364
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
390
365
|
alias="subscriptionScheduleType"
|
|
@@ -539,23 +514,6 @@ class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(Bas
|
|
|
539
514
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
540
515
|
|
|
541
516
|
|
|
542
|
-
class SlimCustomerFragment(BaseModel):
|
|
543
|
-
id: str
|
|
544
|
-
name: Optional[str] = Field(default=None)
|
|
545
|
-
email: Optional[str] = Field(default=None)
|
|
546
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
547
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
548
|
-
ref_id: str = Field(alias="refId")
|
|
549
|
-
customer_id: str = Field(alias="customerId")
|
|
550
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
551
|
-
additional_meta_data: Optional[Any] = Field(
|
|
552
|
-
alias="additionalMetaData", default=None
|
|
553
|
-
)
|
|
554
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
555
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
556
|
-
)
|
|
557
|
-
|
|
558
|
-
|
|
559
517
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
560
518
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
561
519
|
alias="subscriptionScheduleType"
|
|
@@ -718,6 +676,48 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
718
676
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
719
677
|
|
|
720
678
|
|
|
679
|
+
class TotalPriceFragment(BaseModel):
|
|
680
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
681
|
+
total: "TotalPriceFragmentTotal"
|
|
682
|
+
|
|
683
|
+
|
|
684
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
685
|
+
amount: float
|
|
686
|
+
currency: Currency
|
|
687
|
+
|
|
688
|
+
|
|
689
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
690
|
+
amount: float
|
|
691
|
+
currency: Currency
|
|
692
|
+
|
|
693
|
+
|
|
694
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
695
|
+
billing_id: str = Field(alias="billingId")
|
|
696
|
+
status: SubscriptionInvoiceStatus
|
|
697
|
+
created_at: Any = Field(alias="createdAt")
|
|
698
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
699
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
700
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
701
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
702
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
703
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
704
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
705
|
+
alias="billingReason", default=None
|
|
706
|
+
)
|
|
707
|
+
currency: Optional[str] = Field(default=None)
|
|
708
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
709
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
710
|
+
alias="subTotalExcludingTax", default=None
|
|
711
|
+
)
|
|
712
|
+
total: Optional[float] = Field(default=None)
|
|
713
|
+
total_excluding_tax: Optional[float] = Field(
|
|
714
|
+
alias="totalExcludingTax", default=None
|
|
715
|
+
)
|
|
716
|
+
tax: Optional[float] = Field(default=None)
|
|
717
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
718
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
719
|
+
|
|
720
|
+
|
|
721
721
|
class SubscriptionFragment(BaseModel):
|
|
722
722
|
id: str
|
|
723
723
|
subscription_id: str = Field(alias="subscriptionId")
|
|
@@ -1250,6 +1250,50 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1250
1250
|
pass
|
|
1251
1251
|
|
|
1252
1252
|
|
|
1253
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1254
|
+
display_name: str = Field(alias="displayName")
|
|
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)
|
|
1261
|
+
|
|
1262
|
+
|
|
1263
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1264
|
+
addon_id: str = Field(alias="addonId")
|
|
1265
|
+
description: Optional[str] = Field(default=None)
|
|
1266
|
+
display_name: str = Field(alias="displayName")
|
|
1267
|
+
quantity: int
|
|
1268
|
+
|
|
1269
|
+
|
|
1270
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1271
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1272
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1273
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1274
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1275
|
+
default=None
|
|
1276
|
+
)
|
|
1277
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1278
|
+
default=None
|
|
1279
|
+
)
|
|
1280
|
+
|
|
1281
|
+
|
|
1282
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1283
|
+
amount: float
|
|
1284
|
+
currency: Currency
|
|
1285
|
+
|
|
1286
|
+
|
|
1287
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1288
|
+
id: str
|
|
1289
|
+
ref_id: str = Field(alias="refId")
|
|
1290
|
+
display_name: str = Field(alias="displayName")
|
|
1291
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1292
|
+
feature_units_plural: Optional[str] = Field(
|
|
1293
|
+
alias="featureUnitsPlural", default=None
|
|
1294
|
+
)
|
|
1295
|
+
|
|
1296
|
+
|
|
1253
1297
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1254
1298
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1255
1299
|
alias="subscriptionScheduleType"
|
|
@@ -1419,40 +1463,6 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1419
1463
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1420
1464
|
|
|
1421
1465
|
|
|
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
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1430
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1431
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1432
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1433
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1434
|
-
default=None
|
|
1435
|
-
)
|
|
1436
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1437
|
-
default=None
|
|
1438
|
-
)
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1442
|
-
amount: float
|
|
1443
|
-
currency: Currency
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1447
|
-
id: str
|
|
1448
|
-
ref_id: str = Field(alias="refId")
|
|
1449
|
-
display_name: str = Field(alias="displayName")
|
|
1450
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1451
|
-
feature_units_plural: Optional[str] = Field(
|
|
1452
|
-
alias="featureUnitsPlural", default=None
|
|
1453
|
-
)
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
1466
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1457
1467
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1458
1468
|
plan_id: str = Field(alias="planId")
|
|
@@ -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")
|
|
@@ -2764,20 +2764,20 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2764
2764
|
|
|
2765
2765
|
AddonDependencyFragment.model_rebuild()
|
|
2766
2766
|
PriceTierFragment.model_rebuild()
|
|
2767
|
-
OveragePriceFragment.model_rebuild()
|
|
2768
2767
|
PriceFragment.model_rebuild()
|
|
2768
|
+
OveragePriceFragment.model_rebuild()
|
|
2769
2769
|
PackageEntitlementFragment.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()
|
|
2778
|
-
|
|
2774
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2779
2775
|
SlimCustomerFragment.model_rebuild()
|
|
2776
|
+
CustomerResourceFragment.model_rebuild()
|
|
2777
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2780
2778
|
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2779
|
+
TotalPriceFragment.model_rebuild()
|
|
2780
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2781
2781
|
SubscriptionFragment.model_rebuild()
|
|
2782
2782
|
FeatureFragment.model_rebuild()
|
|
2783
2783
|
EntitlementFragment.model_rebuild()
|
|
@@ -2792,11 +2792,11 @@ 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
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2797
2797
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2798
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.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()
|
|
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=XiTyxApFyNYiRaaHYXIGvi3KCHczQhHCPwNKpJKdh2U,3487
|
|
|
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=jOoWDcsq6tSruXvGThP7f6Wa_OBVqdfcqTfq8BFF-zA,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
|
|
@@ -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.1.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.331.1.dist-info/METADATA,sha256=twerXpgylMf-rvpo22s5rKsYMGnMuuSSvd2uTsCvBXc,2258
|
|
165
|
+
stigg_api_client_v2-2.331.1.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.331.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|