stigg-api-client-v2 2.430.1__py3-none-any.whl → 2.437.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 +344 -344
- {stigg_api_client_v2-2.430.1.dist-info → stigg_api_client_v2-2.437.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.430.1.dist-info → stigg_api_client_v2-2.437.0.dist-info}/RECORD +6 -6
- {stigg_api_client_v2-2.430.1.dist-info → stigg_api_client_v2-2.437.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.430.1.dist-info → stigg_api_client_v2-2.437.0.dist-info}/WHEEL +0 -0
stigg/generated/enums.py
CHANGED
stigg/generated/fragments.py
CHANGED
|
@@ -80,29 +80,33 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
80
80
|
currency: Currency
|
|
81
81
|
|
|
82
82
|
|
|
83
|
-
class
|
|
83
|
+
class PriceFragment(BaseModel):
|
|
84
84
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
85
85
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
86
|
+
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
86
87
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
88
|
+
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
89
|
+
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
87
90
|
billing_country_code: Optional[str] = Field(
|
|
88
91
|
alias="billingCountryCode", default=None
|
|
89
92
|
)
|
|
90
|
-
price: Optional["
|
|
93
|
+
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
91
94
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
92
|
-
tiers: Optional[List["
|
|
93
|
-
feature: Optional["
|
|
95
|
+
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
96
|
+
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
97
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
94
98
|
|
|
95
99
|
|
|
96
|
-
class
|
|
100
|
+
class PriceFragmentPrice(BaseModel):
|
|
97
101
|
amount: float
|
|
98
102
|
currency: Currency
|
|
99
103
|
|
|
100
104
|
|
|
101
|
-
class
|
|
105
|
+
class PriceFragmentTiers(PriceTierFragment):
|
|
102
106
|
pass
|
|
103
107
|
|
|
104
108
|
|
|
105
|
-
class
|
|
109
|
+
class PriceFragmentFeature(BaseModel):
|
|
106
110
|
ref_id: str = Field(alias="refId")
|
|
107
111
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
108
112
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -145,33 +149,29 @@ class PackageEntitlementFragmentFeature(BaseModel):
|
|
|
145
149
|
)
|
|
146
150
|
|
|
147
151
|
|
|
148
|
-
class
|
|
152
|
+
class OveragePriceFragment(BaseModel):
|
|
149
153
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
150
154
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
151
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
152
155
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
153
|
-
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
154
|
-
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
155
156
|
billing_country_code: Optional[str] = Field(
|
|
156
157
|
alias="billingCountryCode", default=None
|
|
157
158
|
)
|
|
158
|
-
price: Optional["
|
|
159
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
159
160
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
160
|
-
tiers: Optional[List["
|
|
161
|
-
feature: Optional["
|
|
162
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
161
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
162
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
163
163
|
|
|
164
164
|
|
|
165
|
-
class
|
|
165
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
166
166
|
amount: float
|
|
167
167
|
currency: Currency
|
|
168
168
|
|
|
169
169
|
|
|
170
|
-
class
|
|
170
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
171
171
|
pass
|
|
172
172
|
|
|
173
173
|
|
|
174
|
-
class
|
|
174
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
175
175
|
ref_id: str = Field(alias="refId")
|
|
176
176
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
177
177
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -299,208 +299,151 @@ class EntitlementFragmentFeature(FeatureFragment):
|
|
|
299
299
|
pass
|
|
300
300
|
|
|
301
301
|
|
|
302
|
-
class
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
status: SubscriptionInvoiceStatus
|
|
309
|
-
created_at: Any = Field(alias="createdAt")
|
|
310
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
311
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
312
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
313
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
314
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
315
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
316
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
317
|
-
alias="billingReason", default=None
|
|
318
|
-
)
|
|
319
|
-
currency: Optional[str] = Field(default=None)
|
|
320
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
321
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
322
|
-
alias="subTotalExcludingTax", default=None
|
|
323
|
-
)
|
|
324
|
-
total: Optional[float] = Field(default=None)
|
|
325
|
-
total_excluding_tax: Optional[float] = Field(
|
|
326
|
-
alias="totalExcludingTax", default=None
|
|
302
|
+
class ProductFragment(BaseModel):
|
|
303
|
+
ref_id: str = Field(alias="refId")
|
|
304
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
305
|
+
description: Optional[str] = Field(default=None)
|
|
306
|
+
additional_meta_data: Optional[Any] = Field(
|
|
307
|
+
alias="additionalMetaData", default=None
|
|
327
308
|
)
|
|
328
|
-
|
|
329
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
330
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
309
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
331
310
|
|
|
332
311
|
|
|
333
|
-
class
|
|
334
|
-
|
|
335
|
-
|
|
312
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
313
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
314
|
+
alias="downgradePlan", default=None
|
|
315
|
+
)
|
|
336
316
|
|
|
337
317
|
|
|
338
|
-
class
|
|
339
|
-
|
|
340
|
-
|
|
318
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
319
|
+
ref_id: str = Field(alias="refId")
|
|
320
|
+
display_name: str = Field(alias="displayName")
|
|
341
321
|
|
|
342
322
|
|
|
343
|
-
class
|
|
344
|
-
|
|
345
|
-
|
|
323
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
324
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
325
|
+
display_name: str = Field(alias="displayName")
|
|
326
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
327
|
+
default=None
|
|
328
|
+
)
|
|
329
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
346
330
|
|
|
347
331
|
|
|
348
|
-
class
|
|
349
|
-
|
|
332
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
333
|
+
pass
|
|
350
334
|
|
|
351
335
|
|
|
352
|
-
class
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
)
|
|
356
|
-
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
357
|
-
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
358
|
-
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
359
|
-
alias="targetPackage", default=None
|
|
360
|
-
)
|
|
361
|
-
schedule_variables: Optional[
|
|
362
|
-
Annotated[
|
|
363
|
-
Union[
|
|
364
|
-
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
365
|
-
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
366
|
-
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
367
|
-
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
368
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
369
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
370
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
371
|
-
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
372
|
-
],
|
|
373
|
-
Field(discriminator="typename__"),
|
|
374
|
-
]
|
|
375
|
-
] = Field(alias="scheduleVariables", default=None)
|
|
336
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
337
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
338
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
376
339
|
|
|
377
340
|
|
|
378
|
-
class
|
|
341
|
+
class PlanFragment(BaseModel):
|
|
379
342
|
id: str
|
|
380
343
|
ref_id: str = Field(alias="refId")
|
|
381
344
|
display_name: str = Field(alias="displayName")
|
|
345
|
+
description: Optional[str] = Field(default=None)
|
|
346
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
347
|
+
version_number: int = Field(alias="versionNumber")
|
|
348
|
+
additional_meta_data: Optional[Any] = Field(
|
|
349
|
+
alias="additionalMetaData", default=None
|
|
350
|
+
)
|
|
351
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
352
|
+
alias="hiddenFromWidgets", default=None
|
|
353
|
+
)
|
|
354
|
+
product: "PlanFragmentProduct"
|
|
355
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
356
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
357
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
358
|
+
alias="inheritedEntitlements", default=None
|
|
359
|
+
)
|
|
360
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
361
|
+
alias="compatibleAddons", default=None
|
|
362
|
+
)
|
|
363
|
+
compatible_package_groups: Optional[
|
|
364
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
365
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
366
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
367
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
368
|
+
alias="overagePrices", default=None
|
|
369
|
+
)
|
|
370
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
371
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
372
|
+
alias="defaultTrialConfig", default=None
|
|
373
|
+
)
|
|
382
374
|
|
|
383
375
|
|
|
384
|
-
class
|
|
385
|
-
|
|
386
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
387
|
-
new_quantity: float = Field(alias="newQuantity")
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
391
|
-
BaseModel
|
|
392
|
-
):
|
|
393
|
-
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
394
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
395
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
399
|
-
BaseModel
|
|
400
|
-
):
|
|
401
|
-
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
402
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
406
|
-
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
376
|
+
class PlanFragmentProduct(ProductFragment):
|
|
377
|
+
pass
|
|
407
378
|
|
|
408
379
|
|
|
409
|
-
class
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
413
|
-
billable_features: Optional[
|
|
414
|
-
List[
|
|
415
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
416
|
-
]
|
|
417
|
-
] = Field(alias="billableFeatures", default=None)
|
|
418
|
-
addons: Optional[
|
|
419
|
-
List[
|
|
420
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
421
|
-
]
|
|
422
|
-
] = Field(default=None)
|
|
423
|
-
price_overrides: Optional[
|
|
424
|
-
List[
|
|
425
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
426
|
-
]
|
|
427
|
-
] = Field(alias="priceOverrides", default=None)
|
|
380
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
381
|
+
ref_id: str = Field(alias="refId")
|
|
382
|
+
display_name: str = Field(alias="displayName")
|
|
428
383
|
|
|
429
384
|
|
|
430
|
-
class
|
|
431
|
-
|
|
432
|
-
):
|
|
433
|
-
feature_id: str = Field(alias="featureId")
|
|
434
|
-
quantity: float
|
|
385
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
386
|
+
pass
|
|
435
387
|
|
|
436
388
|
|
|
437
|
-
class
|
|
438
|
-
|
|
439
|
-
):
|
|
440
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
441
|
-
quantity: float
|
|
389
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
390
|
+
pass
|
|
442
391
|
|
|
443
392
|
|
|
444
|
-
class
|
|
445
|
-
|
|
446
|
-
):
|
|
447
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
448
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
449
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
393
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
394
|
+
pass
|
|
450
395
|
|
|
451
396
|
|
|
452
|
-
class
|
|
453
|
-
|
|
454
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
455
|
-
change_type: PlanChangeType = Field(alias="changeType")
|
|
456
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
457
|
-
billable_features: Optional[
|
|
458
|
-
List[
|
|
459
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
460
|
-
]
|
|
461
|
-
] = Field(alias="billableFeatures", default=None)
|
|
462
|
-
addons: Optional[
|
|
463
|
-
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
464
|
-
] = Field(default=None)
|
|
465
|
-
price_overrides: Optional[
|
|
466
|
-
List[
|
|
467
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
468
|
-
]
|
|
469
|
-
] = Field(alias="priceOverrides", default=None)
|
|
397
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
398
|
+
pass
|
|
470
399
|
|
|
471
400
|
|
|
472
|
-
class
|
|
473
|
-
|
|
474
|
-
):
|
|
475
|
-
feature_id: str = Field(alias="featureId")
|
|
476
|
-
quantity: float
|
|
401
|
+
class PlanFragmentPrices(PriceFragment):
|
|
402
|
+
pass
|
|
477
403
|
|
|
478
404
|
|
|
479
|
-
class
|
|
480
|
-
|
|
481
|
-
quantity: float
|
|
405
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
406
|
+
pass
|
|
482
407
|
|
|
483
408
|
|
|
484
|
-
class
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
409
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
410
|
+
duration: float
|
|
411
|
+
units: TrialPeriodUnits
|
|
412
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
413
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
414
|
+
alias="trialEndBehavior", default=None
|
|
415
|
+
)
|
|
490
416
|
|
|
491
417
|
|
|
492
|
-
class
|
|
493
|
-
|
|
494
|
-
):
|
|
495
|
-
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
496
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
497
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
418
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
419
|
+
limit: float
|
|
498
420
|
|
|
499
421
|
|
|
500
|
-
class
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
422
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
423
|
+
billing_id: str = Field(alias="billingId")
|
|
424
|
+
status: SubscriptionInvoiceStatus
|
|
425
|
+
created_at: Any = Field(alias="createdAt")
|
|
426
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
427
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
428
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
429
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
430
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
431
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
432
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
433
|
+
alias="billingReason", default=None
|
|
434
|
+
)
|
|
435
|
+
currency: Optional[str] = Field(default=None)
|
|
436
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
437
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
438
|
+
alias="subTotalExcludingTax", default=None
|
|
439
|
+
)
|
|
440
|
+
total: Optional[float] = Field(default=None)
|
|
441
|
+
total_excluding_tax: Optional[float] = Field(
|
|
442
|
+
alias="totalExcludingTax", default=None
|
|
443
|
+
)
|
|
444
|
+
tax: Optional[float] = Field(default=None)
|
|
445
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
446
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
504
447
|
|
|
505
448
|
|
|
506
449
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
@@ -665,124 +608,181 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
665
608
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
666
609
|
|
|
667
610
|
|
|
668
|
-
class
|
|
669
|
-
|
|
670
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
671
|
-
description: Optional[str] = Field(default=None)
|
|
672
|
-
additional_meta_data: Optional[Any] = Field(
|
|
673
|
-
alias="additionalMetaData", default=None
|
|
674
|
-
)
|
|
675
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
611
|
+
class CustomerResourceFragment(BaseModel):
|
|
612
|
+
resource_id: str = Field(alias="resourceId")
|
|
676
613
|
|
|
677
614
|
|
|
678
|
-
class
|
|
679
|
-
|
|
680
|
-
alias="downgradePlan", default=None
|
|
681
|
-
)
|
|
615
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
616
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
682
617
|
|
|
683
618
|
|
|
684
|
-
class
|
|
685
|
-
|
|
686
|
-
|
|
619
|
+
class TotalPriceFragment(BaseModel):
|
|
620
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
621
|
+
total: "TotalPriceFragmentTotal"
|
|
687
622
|
|
|
688
623
|
|
|
689
|
-
class
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
693
|
-
default=None
|
|
694
|
-
)
|
|
695
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
624
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
625
|
+
amount: float
|
|
626
|
+
currency: Currency
|
|
696
627
|
|
|
697
628
|
|
|
698
|
-
class
|
|
699
|
-
|
|
629
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
630
|
+
amount: float
|
|
631
|
+
currency: Currency
|
|
700
632
|
|
|
701
633
|
|
|
702
|
-
class
|
|
703
|
-
|
|
704
|
-
|
|
634
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
635
|
+
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
636
|
+
alias="subscriptionScheduleType"
|
|
637
|
+
)
|
|
638
|
+
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
639
|
+
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
640
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
641
|
+
alias="targetPackage", default=None
|
|
642
|
+
)
|
|
643
|
+
schedule_variables: Optional[
|
|
644
|
+
Annotated[
|
|
645
|
+
Union[
|
|
646
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
647
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
648
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
649
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
650
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
651
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
652
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
653
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
654
|
+
],
|
|
655
|
+
Field(discriminator="typename__"),
|
|
656
|
+
]
|
|
657
|
+
] = Field(alias="scheduleVariables", default=None)
|
|
705
658
|
|
|
706
659
|
|
|
707
|
-
class
|
|
660
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
708
661
|
id: str
|
|
709
662
|
ref_id: str = Field(alias="refId")
|
|
710
663
|
display_name: str = Field(alias="displayName")
|
|
711
|
-
description: Optional[str] = Field(default=None)
|
|
712
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
713
|
-
version_number: int = Field(alias="versionNumber")
|
|
714
|
-
additional_meta_data: Optional[Any] = Field(
|
|
715
|
-
alias="additionalMetaData", default=None
|
|
716
|
-
)
|
|
717
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
718
|
-
alias="hiddenFromWidgets", default=None
|
|
719
|
-
)
|
|
720
|
-
product: "PlanFragmentProduct"
|
|
721
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
722
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
723
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
724
|
-
alias="inheritedEntitlements", default=None
|
|
725
|
-
)
|
|
726
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
727
|
-
alias="compatibleAddons", default=None
|
|
728
|
-
)
|
|
729
|
-
compatible_package_groups: Optional[
|
|
730
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
731
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
732
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
733
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
734
|
-
alias="overagePrices", default=None
|
|
735
|
-
)
|
|
736
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
737
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
738
|
-
alias="defaultTrialConfig", default=None
|
|
739
|
-
)
|
|
740
664
|
|
|
741
665
|
|
|
742
|
-
class
|
|
743
|
-
|
|
666
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
667
|
+
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
668
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
669
|
+
new_quantity: float = Field(alias="newQuantity")
|
|
670
|
+
|
|
671
|
+
|
|
672
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
673
|
+
BaseModel
|
|
674
|
+
):
|
|
675
|
+
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
676
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
677
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
678
|
+
|
|
679
|
+
|
|
680
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
681
|
+
BaseModel
|
|
682
|
+
):
|
|
683
|
+
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
684
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
685
|
+
|
|
686
|
+
|
|
687
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
688
|
+
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
689
|
+
|
|
690
|
+
|
|
691
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
692
|
+
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
693
|
+
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
694
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
695
|
+
billable_features: Optional[
|
|
696
|
+
List[
|
|
697
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
698
|
+
]
|
|
699
|
+
] = Field(alias="billableFeatures", default=None)
|
|
700
|
+
addons: Optional[
|
|
701
|
+
List[
|
|
702
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
703
|
+
]
|
|
704
|
+
] = Field(default=None)
|
|
705
|
+
price_overrides: Optional[
|
|
706
|
+
List[
|
|
707
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
708
|
+
]
|
|
709
|
+
] = Field(alias="priceOverrides", default=None)
|
|
744
710
|
|
|
745
711
|
|
|
746
|
-
class
|
|
747
|
-
|
|
748
|
-
|
|
712
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
713
|
+
BaseModel
|
|
714
|
+
):
|
|
715
|
+
feature_id: str = Field(alias="featureId")
|
|
716
|
+
quantity: float
|
|
749
717
|
|
|
750
718
|
|
|
751
|
-
class
|
|
752
|
-
|
|
719
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
720
|
+
BaseModel
|
|
721
|
+
):
|
|
722
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
723
|
+
quantity: float
|
|
753
724
|
|
|
754
725
|
|
|
755
|
-
class
|
|
756
|
-
|
|
726
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
727
|
+
BaseModel
|
|
728
|
+
):
|
|
729
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
730
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
731
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
757
732
|
|
|
758
733
|
|
|
759
|
-
class
|
|
760
|
-
|
|
734
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
735
|
+
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
736
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
737
|
+
change_type: PlanChangeType = Field(alias="changeType")
|
|
738
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
739
|
+
billable_features: Optional[
|
|
740
|
+
List[
|
|
741
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
742
|
+
]
|
|
743
|
+
] = Field(alias="billableFeatures", default=None)
|
|
744
|
+
addons: Optional[
|
|
745
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
746
|
+
] = Field(default=None)
|
|
747
|
+
price_overrides: Optional[
|
|
748
|
+
List[
|
|
749
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
750
|
+
]
|
|
751
|
+
] = Field(alias="priceOverrides", default=None)
|
|
761
752
|
|
|
762
753
|
|
|
763
|
-
class
|
|
764
|
-
|
|
754
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
755
|
+
BaseModel
|
|
756
|
+
):
|
|
757
|
+
feature_id: str = Field(alias="featureId")
|
|
758
|
+
quantity: float
|
|
765
759
|
|
|
766
760
|
|
|
767
|
-
class
|
|
768
|
-
|
|
761
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
762
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
763
|
+
quantity: float
|
|
769
764
|
|
|
770
765
|
|
|
771
|
-
class
|
|
772
|
-
|
|
766
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
767
|
+
BaseModel
|
|
768
|
+
):
|
|
769
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
770
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
771
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
773
772
|
|
|
774
773
|
|
|
775
|
-
class
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
)
|
|
774
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
775
|
+
BaseModel
|
|
776
|
+
):
|
|
777
|
+
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
778
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
779
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
782
780
|
|
|
783
781
|
|
|
784
|
-
class
|
|
785
|
-
|
|
782
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
783
|
+
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
784
|
+
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
785
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
786
786
|
|
|
787
787
|
|
|
788
788
|
class SlimCustomerFragment(BaseModel):
|
|
@@ -988,6 +988,35 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
988
988
|
)
|
|
989
989
|
|
|
990
990
|
|
|
991
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
992
|
+
status: PromotionalEntitlementStatus
|
|
993
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
994
|
+
feature_id: str = Field(alias="featureId")
|
|
995
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
996
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
997
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
998
|
+
alias="resetPeriod", default=None
|
|
999
|
+
)
|
|
1000
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1001
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1002
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1003
|
+
|
|
1004
|
+
|
|
1005
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1006
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1007
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1008
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1009
|
+
feature_units_plural: Optional[str] = Field(
|
|
1010
|
+
alias="featureUnitsPlural", default=None
|
|
1011
|
+
)
|
|
1012
|
+
display_name: str = Field(alias="displayName")
|
|
1013
|
+
description: Optional[str] = Field(default=None)
|
|
1014
|
+
ref_id: str = Field(alias="refId")
|
|
1015
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1016
|
+
alias="additionalMetaData", default=None
|
|
1017
|
+
)
|
|
1018
|
+
|
|
1019
|
+
|
|
991
1020
|
class CouponFragment(BaseModel):
|
|
992
1021
|
id: str
|
|
993
1022
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1022,35 +1051,6 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1022
1051
|
status: SyncStatus
|
|
1023
1052
|
|
|
1024
1053
|
|
|
1025
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
1026
|
-
status: PromotionalEntitlementStatus
|
|
1027
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1028
|
-
feature_id: str = Field(alias="featureId")
|
|
1029
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1030
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1031
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1032
|
-
alias="resetPeriod", default=None
|
|
1033
|
-
)
|
|
1034
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1035
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1036
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1040
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1041
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1042
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1043
|
-
feature_units_plural: Optional[str] = Field(
|
|
1044
|
-
alias="featureUnitsPlural", default=None
|
|
1045
|
-
)
|
|
1046
|
-
display_name: str = Field(alias="displayName")
|
|
1047
|
-
description: Optional[str] = Field(default=None)
|
|
1048
|
-
ref_id: str = Field(alias="refId")
|
|
1049
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1050
|
-
alias="additionalMetaData", default=None
|
|
1051
|
-
)
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
1054
|
class CustomerFragment(SlimCustomerFragment):
|
|
1055
1055
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1056
1056
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1257,11 +1257,41 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1257
1257
|
pass
|
|
1258
1258
|
|
|
1259
1259
|
|
|
1260
|
-
class
|
|
1261
|
-
addon_id: str = Field(alias="addonId")
|
|
1262
|
-
description: Optional[str] = Field(default=None)
|
|
1260
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1263
1261
|
display_name: str = Field(alias="displayName")
|
|
1264
|
-
|
|
1262
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1263
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1264
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1265
|
+
period: PromotionalEntitlementPeriod
|
|
1266
|
+
start_date: Any = Field(alias="startDate")
|
|
1267
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
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
|
+
)
|
|
1265
1295
|
|
|
1266
1296
|
|
|
1267
1297
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
@@ -1433,31 +1463,11 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1433
1463
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1434
1464
|
|
|
1435
1465
|
|
|
1436
|
-
class
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1440
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1441
|
-
default=None
|
|
1442
|
-
)
|
|
1443
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1444
|
-
default=None
|
|
1445
|
-
)
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1449
|
-
amount: float
|
|
1450
|
-
currency: Currency
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1454
|
-
id: str
|
|
1455
|
-
ref_id: str = Field(alias="refId")
|
|
1466
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1467
|
+
addon_id: str = Field(alias="addonId")
|
|
1468
|
+
description: Optional[str] = Field(default=None)
|
|
1456
1469
|
display_name: str = Field(alias="displayName")
|
|
1457
|
-
|
|
1458
|
-
feature_units_plural: Optional[str] = Field(
|
|
1459
|
-
alias="featureUnitsPlural", default=None
|
|
1460
|
-
)
|
|
1470
|
+
quantity: int
|
|
1461
1471
|
|
|
1462
1472
|
|
|
1463
1473
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
@@ -1556,16 +1566,6 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1556
1566
|
pass
|
|
1557
1567
|
|
|
1558
1568
|
|
|
1559
|
-
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1560
|
-
display_name: str = Field(alias="displayName")
|
|
1561
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1562
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1563
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1564
|
-
period: PromotionalEntitlementPeriod
|
|
1565
|
-
start_date: Any = Field(alias="startDate")
|
|
1566
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
1569
|
class CustomerPortalFragment(BaseModel):
|
|
1570
1570
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1571
1571
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -2771,39 +2771,39 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2771
2771
|
|
|
2772
2772
|
AddonDependencyFragment.model_rebuild()
|
|
2773
2773
|
PriceTierFragment.model_rebuild()
|
|
2774
|
-
OveragePriceFragment.model_rebuild()
|
|
2775
|
-
PackageEntitlementFragment.model_rebuild()
|
|
2776
2774
|
PriceFragment.model_rebuild()
|
|
2775
|
+
PackageEntitlementFragment.model_rebuild()
|
|
2776
|
+
OveragePriceFragment.model_rebuild()
|
|
2777
2777
|
AddonFragment.model_rebuild()
|
|
2778
2778
|
FeatureFragment.model_rebuild()
|
|
2779
2779
|
EntitlementFragment.model_rebuild()
|
|
2780
|
-
CustomerResourceFragment.model_rebuild()
|
|
2781
|
-
SubscriptionInvoiceFragment.model_rebuild()
|
|
2782
|
-
TotalPriceFragment.model_rebuild()
|
|
2783
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2784
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2785
|
-
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2786
2780
|
ProductFragment.model_rebuild()
|
|
2787
2781
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2788
2782
|
PlanFragment.model_rebuild()
|
|
2783
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2784
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2785
|
+
CustomerResourceFragment.model_rebuild()
|
|
2786
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2787
|
+
TotalPriceFragment.model_rebuild()
|
|
2788
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2789
2789
|
SlimCustomerFragment.model_rebuild()
|
|
2790
2790
|
SubscriptionFragment.model_rebuild()
|
|
2791
2791
|
ApplySubscriptionFragment.model_rebuild()
|
|
2792
2792
|
FontVariantFragment.model_rebuild()
|
|
2793
2793
|
TypographyConfigurationFragment.model_rebuild()
|
|
2794
2794
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2795
|
-
CouponFragment.model_rebuild()
|
|
2796
2795
|
PromotionalEntitlementFragment.model_rebuild()
|
|
2796
|
+
CouponFragment.model_rebuild()
|
|
2797
2797
|
CustomerFragment.model_rebuild()
|
|
2798
2798
|
CheckoutStateFragment.model_rebuild()
|
|
2799
2799
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2800
2800
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2801
2801
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2802
|
-
|
|
2803
|
-
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2802
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2804
2803
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2804
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2805
|
+
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2805
2806
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2806
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2807
2807
|
CustomerPortalFragment.model_rebuild()
|
|
2808
2808
|
CustomerStatisticsFragment.model_rebuild()
|
|
2809
2809
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
|
@@ -119,11 +119,11 @@ stigg/generated/client.py,sha256=NgGx0jZs30ZsxuITO15EVz6K4LjJE5XocrwRuGcjm8w,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=9ioQN2tFCIyy3cENl_nhueILHgK6xJ4_XHFFmGztc0A,35296
|
|
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=Z56OotrPkfTsNK8NqFGLpft1PhDw64bYwv9eCArhoFI,100917
|
|
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.437.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.437.0.dist-info/METADATA,sha256=Bi3WE_-vAVqaBo_Tj2tvD2HLIG-ucdT6YjGMIfjmyLM,2258
|
|
165
|
+
stigg_api_client_v2-2.437.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.437.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|