stigg-api-client-v2 3.23.0__py3-none-any.whl → 3.23.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/enums.py +1 -0
- stigg/generated/fragments.py +238 -238
- {stigg_api_client_v2-3.23.0.dist-info → stigg_api_client_v2-3.23.1.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-3.23.0.dist-info → stigg_api_client_v2-3.23.1.dist-info}/RECORD +6 -6
- {stigg_api_client_v2-3.23.0.dist-info → stigg_api_client_v2-3.23.1.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-3.23.0.dist-info → stigg_api_client_v2-3.23.1.dist-info}/WHEEL +0 -0
stigg/generated/enums.py
CHANGED
stigg/generated/fragments.py
CHANGED
|
@@ -80,6 +80,50 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
80
80
|
currency: Currency
|
|
81
81
|
|
|
82
82
|
|
|
83
|
+
class PriceFragment(BaseModel):
|
|
84
|
+
billing_model: BillingModel = Field(alias="billingModel")
|
|
85
|
+
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
86
|
+
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
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)
|
|
90
|
+
billing_country_code: Optional[str] = Field(
|
|
91
|
+
alias="billingCountryCode", default=None
|
|
92
|
+
)
|
|
93
|
+
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
94
|
+
credit_rate: Optional["PriceFragmentCreditRate"] = Field(
|
|
95
|
+
alias="creditRate", default=None
|
|
96
|
+
)
|
|
97
|
+
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
98
|
+
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
99
|
+
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
100
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
class PriceFragmentPrice(BaseModel):
|
|
104
|
+
amount: float
|
|
105
|
+
currency: Currency
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
class PriceFragmentCreditRate(BaseModel):
|
|
109
|
+
amount: float
|
|
110
|
+
custom_currency_id: Any = Field(alias="customCurrencyId")
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
class PriceFragmentTiers(PriceTierFragment):
|
|
114
|
+
pass
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
class PriceFragmentFeature(BaseModel):
|
|
118
|
+
ref_id: str = Field(alias="refId")
|
|
119
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
120
|
+
feature_units_plural: Optional[str] = Field(
|
|
121
|
+
alias="featureUnitsPlural", default=None
|
|
122
|
+
)
|
|
123
|
+
display_name: str = Field(alias="displayName")
|
|
124
|
+
description: Optional[str] = Field(default=None)
|
|
125
|
+
|
|
126
|
+
|
|
83
127
|
class OveragePriceFragment(BaseModel):
|
|
84
128
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
85
129
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -146,50 +190,6 @@ class PackageEntitlementFragmentFeature(BaseModel):
|
|
|
146
190
|
)
|
|
147
191
|
|
|
148
192
|
|
|
149
|
-
class PriceFragment(BaseModel):
|
|
150
|
-
billing_model: BillingModel = Field(alias="billingModel")
|
|
151
|
-
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
152
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
153
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
154
|
-
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
155
|
-
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
156
|
-
billing_country_code: Optional[str] = Field(
|
|
157
|
-
alias="billingCountryCode", default=None
|
|
158
|
-
)
|
|
159
|
-
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
160
|
-
credit_rate: Optional["PriceFragmentCreditRate"] = Field(
|
|
161
|
-
alias="creditRate", default=None
|
|
162
|
-
)
|
|
163
|
-
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
164
|
-
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
165
|
-
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
166
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
class PriceFragmentPrice(BaseModel):
|
|
170
|
-
amount: float
|
|
171
|
-
currency: Currency
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
class PriceFragmentCreditRate(BaseModel):
|
|
175
|
-
amount: float
|
|
176
|
-
custom_currency_id: Any = Field(alias="customCurrencyId")
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
class PriceFragmentTiers(PriceTierFragment):
|
|
180
|
-
pass
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
class PriceFragmentFeature(BaseModel):
|
|
184
|
-
ref_id: str = Field(alias="refId")
|
|
185
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
186
|
-
feature_units_plural: Optional[str] = Field(
|
|
187
|
-
alias="featureUnitsPlural", default=None
|
|
188
|
-
)
|
|
189
|
-
display_name: str = Field(alias="displayName")
|
|
190
|
-
description: Optional[str] = Field(default=None)
|
|
191
|
-
|
|
192
|
-
|
|
193
193
|
class AddonFragment(BaseModel):
|
|
194
194
|
id: Any
|
|
195
195
|
ref_id: str = Field(alias="refId")
|
|
@@ -228,6 +228,10 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
228
228
|
pass
|
|
229
229
|
|
|
230
230
|
|
|
231
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
232
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
233
|
+
|
|
234
|
+
|
|
231
235
|
class SubscriptionInvoiceFragment(BaseModel):
|
|
232
236
|
billing_id: str = Field(alias="billingId")
|
|
233
237
|
status: SubscriptionInvoiceStatus
|
|
@@ -255,23 +259,128 @@ class SubscriptionInvoiceFragment(BaseModel):
|
|
|
255
259
|
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
256
260
|
|
|
257
261
|
|
|
258
|
-
class
|
|
259
|
-
|
|
262
|
+
class CustomerResourceFragment(BaseModel):
|
|
263
|
+
resource_id: str = Field(alias="resourceId")
|
|
260
264
|
|
|
261
265
|
|
|
262
|
-
class
|
|
263
|
-
|
|
264
|
-
|
|
266
|
+
class ProductFragment(BaseModel):
|
|
267
|
+
ref_id: str = Field(alias="refId")
|
|
268
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
269
|
+
description: Optional[str] = Field(default=None)
|
|
270
|
+
additional_meta_data: Optional[Any] = Field(
|
|
271
|
+
alias="additionalMetaData", default=None
|
|
272
|
+
)
|
|
273
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
265
274
|
|
|
266
275
|
|
|
267
|
-
class
|
|
268
|
-
|
|
269
|
-
|
|
276
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
277
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
278
|
+
alias="downgradePlan", default=None
|
|
279
|
+
)
|
|
270
280
|
|
|
271
281
|
|
|
272
|
-
class
|
|
273
|
-
|
|
274
|
-
|
|
282
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
283
|
+
ref_id: str = Field(alias="refId")
|
|
284
|
+
display_name: str = Field(alias="displayName")
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
288
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
289
|
+
display_name: str = Field(alias="displayName")
|
|
290
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
291
|
+
default=None
|
|
292
|
+
)
|
|
293
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
297
|
+
pass
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
301
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
302
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
class PlanFragment(BaseModel):
|
|
306
|
+
id: Any
|
|
307
|
+
ref_id: str = Field(alias="refId")
|
|
308
|
+
display_name: str = Field(alias="displayName")
|
|
309
|
+
description: Optional[str] = Field(default=None)
|
|
310
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
311
|
+
version_number: int = Field(alias="versionNumber")
|
|
312
|
+
additional_meta_data: Optional[Any] = Field(
|
|
313
|
+
alias="additionalMetaData", default=None
|
|
314
|
+
)
|
|
315
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
316
|
+
alias="hiddenFromWidgets", default=None
|
|
317
|
+
)
|
|
318
|
+
product: "PlanFragmentProduct"
|
|
319
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
320
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
321
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
322
|
+
alias="inheritedEntitlements", default=None
|
|
323
|
+
)
|
|
324
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
325
|
+
alias="compatibleAddons", default=None
|
|
326
|
+
)
|
|
327
|
+
compatible_package_groups: Optional[
|
|
328
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
329
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
330
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
331
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
332
|
+
alias="overagePrices", default=None
|
|
333
|
+
)
|
|
334
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
335
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
336
|
+
alias="defaultTrialConfig", default=None
|
|
337
|
+
)
|
|
338
|
+
|
|
339
|
+
|
|
340
|
+
class PlanFragmentProduct(ProductFragment):
|
|
341
|
+
pass
|
|
342
|
+
|
|
343
|
+
|
|
344
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
345
|
+
ref_id: str = Field(alias="refId")
|
|
346
|
+
display_name: str = Field(alias="displayName")
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
350
|
+
pass
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
354
|
+
pass
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
358
|
+
pass
|
|
359
|
+
|
|
360
|
+
|
|
361
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
362
|
+
pass
|
|
363
|
+
|
|
364
|
+
|
|
365
|
+
class PlanFragmentPrices(PriceFragment):
|
|
366
|
+
pass
|
|
367
|
+
|
|
368
|
+
|
|
369
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
370
|
+
pass
|
|
371
|
+
|
|
372
|
+
|
|
373
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
374
|
+
duration: float
|
|
375
|
+
units: TrialPeriodUnits
|
|
376
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
377
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
378
|
+
alias="trialEndBehavior", default=None
|
|
379
|
+
)
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
383
|
+
limit: float
|
|
275
384
|
|
|
276
385
|
|
|
277
386
|
class SlimCustomerFragment(BaseModel):
|
|
@@ -453,130 +562,6 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
453
562
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
454
563
|
|
|
455
564
|
|
|
456
|
-
class CustomerResourceFragment(BaseModel):
|
|
457
|
-
resource_id: str = Field(alias="resourceId")
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
class ProductFragment(BaseModel):
|
|
461
|
-
ref_id: str = Field(alias="refId")
|
|
462
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
463
|
-
description: Optional[str] = Field(default=None)
|
|
464
|
-
additional_meta_data: Optional[Any] = Field(
|
|
465
|
-
alias="additionalMetaData", default=None
|
|
466
|
-
)
|
|
467
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
471
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
472
|
-
alias="downgradePlan", default=None
|
|
473
|
-
)
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
477
|
-
ref_id: str = Field(alias="refId")
|
|
478
|
-
display_name: str = Field(alias="displayName")
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
482
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
483
|
-
display_name: str = Field(alias="displayName")
|
|
484
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
485
|
-
default=None
|
|
486
|
-
)
|
|
487
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
491
|
-
pass
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
495
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
496
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
class PlanFragment(BaseModel):
|
|
500
|
-
id: Any
|
|
501
|
-
ref_id: str = Field(alias="refId")
|
|
502
|
-
display_name: str = Field(alias="displayName")
|
|
503
|
-
description: Optional[str] = Field(default=None)
|
|
504
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
505
|
-
version_number: int = Field(alias="versionNumber")
|
|
506
|
-
additional_meta_data: Optional[Any] = Field(
|
|
507
|
-
alias="additionalMetaData", default=None
|
|
508
|
-
)
|
|
509
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
510
|
-
alias="hiddenFromWidgets", default=None
|
|
511
|
-
)
|
|
512
|
-
product: "PlanFragmentProduct"
|
|
513
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
514
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
515
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
516
|
-
alias="inheritedEntitlements", default=None
|
|
517
|
-
)
|
|
518
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
519
|
-
alias="compatibleAddons", default=None
|
|
520
|
-
)
|
|
521
|
-
compatible_package_groups: Optional[
|
|
522
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
523
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
524
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
525
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
526
|
-
alias="overagePrices", default=None
|
|
527
|
-
)
|
|
528
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
529
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
530
|
-
alias="defaultTrialConfig", default=None
|
|
531
|
-
)
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
class PlanFragmentProduct(ProductFragment):
|
|
535
|
-
pass
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
539
|
-
ref_id: str = Field(alias="refId")
|
|
540
|
-
display_name: str = Field(alias="displayName")
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
544
|
-
pass
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
548
|
-
pass
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
552
|
-
pass
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
556
|
-
pass
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
class PlanFragmentPrices(PriceFragment):
|
|
560
|
-
pass
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
564
|
-
pass
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
568
|
-
duration: float
|
|
569
|
-
units: TrialPeriodUnits
|
|
570
|
-
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
571
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
572
|
-
alias="trialEndBehavior", default=None
|
|
573
|
-
)
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
577
|
-
limit: float
|
|
578
|
-
|
|
579
|
-
|
|
580
565
|
class SubscriptionFutureUpdateData(BaseModel):
|
|
581
566
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
582
567
|
alias="subscriptionScheduleType"
|
|
@@ -731,6 +716,21 @@ class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(Bas
|
|
|
731
716
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
732
717
|
|
|
733
718
|
|
|
719
|
+
class TotalPriceFragment(BaseModel):
|
|
720
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
721
|
+
total: "TotalPriceFragmentTotal"
|
|
722
|
+
|
|
723
|
+
|
|
724
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
725
|
+
amount: float
|
|
726
|
+
currency: Currency
|
|
727
|
+
|
|
728
|
+
|
|
729
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
730
|
+
amount: float
|
|
731
|
+
currency: Currency
|
|
732
|
+
|
|
733
|
+
|
|
734
734
|
class SubscriptionFragment(BaseModel):
|
|
735
735
|
id: Any
|
|
736
736
|
subscription_id: str = Field(alias="subscriptionId")
|
|
@@ -1271,16 +1271,6 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1271
1271
|
pass
|
|
1272
1272
|
|
|
1273
1273
|
|
|
1274
|
-
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1275
|
-
display_name: str = Field(alias="displayName")
|
|
1276
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1277
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1278
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1279
|
-
period: PromotionalEntitlementPeriod
|
|
1280
|
-
start_date: Any = Field(alias="startDate")
|
|
1281
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
1274
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1285
1275
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1286
1276
|
alias="subscriptionScheduleType"
|
|
@@ -1450,13 +1440,6 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1450
1440
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1451
1441
|
|
|
1452
1442
|
|
|
1453
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1454
|
-
addon_id: str = Field(alias="addonId")
|
|
1455
|
-
description: Optional[str] = Field(default=None)
|
|
1456
|
-
display_name: str = Field(alias="displayName")
|
|
1457
|
-
quantity: int
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
1443
|
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1461
1444
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1462
1445
|
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
@@ -1492,6 +1475,13 @@ class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
|
1492
1475
|
)
|
|
1493
1476
|
|
|
1494
1477
|
|
|
1478
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1479
|
+
addon_id: str = Field(alias="addonId")
|
|
1480
|
+
description: Optional[str] = Field(default=None)
|
|
1481
|
+
display_name: str = Field(alias="displayName")
|
|
1482
|
+
quantity: int
|
|
1483
|
+
|
|
1484
|
+
|
|
1495
1485
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1496
1486
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1497
1487
|
plan_id: str = Field(alias="planId")
|
|
@@ -1596,6 +1586,16 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1596
1586
|
pass
|
|
1597
1587
|
|
|
1598
1588
|
|
|
1589
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1590
|
+
display_name: str = Field(alias="displayName")
|
|
1591
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1592
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1593
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1594
|
+
period: PromotionalEntitlementPeriod
|
|
1595
|
+
start_date: Any = Field(alias="startDate")
|
|
1596
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1597
|
+
|
|
1598
|
+
|
|
1599
1599
|
class CustomerPortalFragment(BaseModel):
|
|
1600
1600
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1601
1601
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -1823,6 +1823,40 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1823
1823
|
description: Optional[str] = Field(default=None)
|
|
1824
1824
|
|
|
1825
1825
|
|
|
1826
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1827
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1828
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1829
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1830
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1831
|
+
alias="resetPeriod", default=None
|
|
1832
|
+
)
|
|
1833
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1834
|
+
alias="hiddenFromWidgets", default=None
|
|
1835
|
+
)
|
|
1836
|
+
display_name_override: Optional[str] = Field(
|
|
1837
|
+
alias="displayNameOverride", default=None
|
|
1838
|
+
)
|
|
1839
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
1840
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1841
|
+
default=None
|
|
1842
|
+
)
|
|
1843
|
+
|
|
1844
|
+
|
|
1845
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1846
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1847
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1848
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1849
|
+
feature_units_plural: Optional[str] = Field(
|
|
1850
|
+
alias="featureUnitsPlural", default=None
|
|
1851
|
+
)
|
|
1852
|
+
display_name: str = Field(alias="displayName")
|
|
1853
|
+
description: Optional[str] = Field(default=None)
|
|
1854
|
+
ref_id: str = Field(alias="refId")
|
|
1855
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1856
|
+
alias="additionalMetaData", default=None
|
|
1857
|
+
)
|
|
1858
|
+
|
|
1859
|
+
|
|
1826
1860
|
class MockPaywallPriceFragment(BaseModel):
|
|
1827
1861
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1828
1862
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1865,40 +1899,6 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1865
1899
|
display_name: str = Field(alias="displayName")
|
|
1866
1900
|
|
|
1867
1901
|
|
|
1868
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1869
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1870
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1871
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1872
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1873
|
-
alias="resetPeriod", default=None
|
|
1874
|
-
)
|
|
1875
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1876
|
-
alias="hiddenFromWidgets", default=None
|
|
1877
|
-
)
|
|
1878
|
-
display_name_override: Optional[str] = Field(
|
|
1879
|
-
alias="displayNameOverride", default=None
|
|
1880
|
-
)
|
|
1881
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
1882
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1883
|
-
default=None
|
|
1884
|
-
)
|
|
1885
|
-
|
|
1886
|
-
|
|
1887
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1888
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1889
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1890
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1891
|
-
feature_units_plural: Optional[str] = Field(
|
|
1892
|
-
alias="featureUnitsPlural", default=None
|
|
1893
|
-
)
|
|
1894
|
-
display_name: str = Field(alias="displayName")
|
|
1895
|
-
description: Optional[str] = Field(default=None)
|
|
1896
|
-
ref_id: str = Field(alias="refId")
|
|
1897
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1898
|
-
alias="additionalMetaData", default=None
|
|
1899
|
-
)
|
|
1900
|
-
|
|
1901
|
-
|
|
1902
1902
|
class MockPaywallAddonFragment(BaseModel):
|
|
1903
1903
|
ref_id: str = Field(alias="refId")
|
|
1904
1904
|
display_name: str = Field(alias="displayName")
|
|
@@ -2873,20 +2873,20 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2873
2873
|
|
|
2874
2874
|
AddonDependencyFragment.model_rebuild()
|
|
2875
2875
|
PriceTierFragment.model_rebuild()
|
|
2876
|
+
PriceFragment.model_rebuild()
|
|
2876
2877
|
OveragePriceFragment.model_rebuild()
|
|
2877
2878
|
PackageEntitlementFragment.model_rebuild()
|
|
2878
|
-
PriceFragment.model_rebuild()
|
|
2879
2879
|
AddonFragment.model_rebuild()
|
|
2880
|
-
SubscriptionInvoiceFragment.model_rebuild()
|
|
2881
2880
|
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2882
|
-
|
|
2883
|
-
SlimCustomerFragment.model_rebuild()
|
|
2884
|
-
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2881
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2885
2882
|
CustomerResourceFragment.model_rebuild()
|
|
2886
2883
|
ProductFragment.model_rebuild()
|
|
2887
2884
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2888
2885
|
PlanFragment.model_rebuild()
|
|
2886
|
+
SlimCustomerFragment.model_rebuild()
|
|
2887
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2889
2888
|
SubscriptionFutureUpdateData.model_rebuild()
|
|
2889
|
+
TotalPriceFragment.model_rebuild()
|
|
2890
2890
|
SubscriptionFragment.model_rebuild()
|
|
2891
2891
|
FeatureFragment.model_rebuild()
|
|
2892
2892
|
EntitlementFragment.model_rebuild()
|
|
@@ -2901,11 +2901,11 @@ CheckoutStateFragment.model_rebuild()
|
|
|
2901
2901
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2902
2902
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2903
2903
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2904
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2905
2904
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2906
|
-
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2907
2905
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2906
|
+
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2908
2907
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2908
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2909
2909
|
CustomerPortalFragment.model_rebuild()
|
|
2910
2910
|
CustomerStatisticsFragment.model_rebuild()
|
|
2911
2911
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
|
@@ -2915,8 +2915,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
2915
2915
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
2916
2916
|
LayoutConfigurationFragment.model_rebuild()
|
|
2917
2917
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
2918
|
-
MockPaywallPriceFragment.model_rebuild()
|
|
2919
2918
|
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2919
|
+
MockPaywallPriceFragment.model_rebuild()
|
|
2920
2920
|
MockPaywallAddonFragment.model_rebuild()
|
|
2921
2921
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2922
2922
|
MockPaywallPlanFragment.model_rebuild()
|
|
@@ -119,11 +119,11 @@ stigg/generated/client.py,sha256=WIS31TSPUg8gKGvs5aSEBG_RSv8f8yCD80oUqCLUCvI,174
|
|
|
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=asjaGM369pxIj2wWuFtgq6mA-p_9U-otD9cP2baB-mQ,37744
|
|
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=O2ffHRtXMVElaED9oYkXLAMkrBZZdLVPzdJ5RmX8RXk,104912
|
|
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
|
|
@@ -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-3.23.
|
|
165
|
-
stigg_api_client_v2-3.23.
|
|
166
|
-
stigg_api_client_v2-3.23.
|
|
167
|
-
stigg_api_client_v2-3.23.
|
|
164
|
+
stigg_api_client_v2-3.23.1.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
165
|
+
stigg_api_client_v2-3.23.1.dist-info/METADATA,sha256=uhWduWKdTsP6M9Ek92jPuXqprQq2AXMpLqRWwboODOE,2257
|
|
166
|
+
stigg_api_client_v2-3.23.1.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
167
|
+
stigg_api_client_v2-3.23.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|