stigg-api-client-v2 2.303.1__py3-none-any.whl → 2.303.2__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 +339 -339
- {stigg_api_client_v2-2.303.1.dist-info → stigg_api_client_v2-2.303.2.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.303.1.dist-info → stigg_api_client_v2-2.303.2.dist-info}/RECORD +5 -5
- {stigg_api_client_v2-2.303.1.dist-info → stigg_api_client_v2-2.303.2.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.303.1.dist-info → stigg_api_client_v2-2.303.2.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -79,33 +79,29 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
79
79
|
currency: Currency
|
|
80
80
|
|
|
81
81
|
|
|
82
|
-
class
|
|
82
|
+
class OveragePriceFragment(BaseModel):
|
|
83
83
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
84
84
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
85
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
86
85
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
87
|
-
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
88
|
-
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
89
86
|
billing_country_code: Optional[str] = Field(
|
|
90
87
|
alias="billingCountryCode", default=None
|
|
91
88
|
)
|
|
92
|
-
price: Optional["
|
|
89
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
93
90
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
94
|
-
tiers: Optional[List["
|
|
95
|
-
feature: Optional["
|
|
96
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
91
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
92
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
97
93
|
|
|
98
94
|
|
|
99
|
-
class
|
|
95
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
100
96
|
amount: float
|
|
101
97
|
currency: Currency
|
|
102
98
|
|
|
103
99
|
|
|
104
|
-
class
|
|
100
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
105
101
|
pass
|
|
106
102
|
|
|
107
103
|
|
|
108
|
-
class
|
|
104
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
109
105
|
ref_id: str = Field(alias="refId")
|
|
110
106
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
111
107
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -115,29 +111,33 @@ class PriceFragmentFeature(BaseModel):
|
|
|
115
111
|
description: Optional[str] = Field(default=None)
|
|
116
112
|
|
|
117
113
|
|
|
118
|
-
class
|
|
114
|
+
class PriceFragment(BaseModel):
|
|
119
115
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
120
116
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
117
|
+
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
121
118
|
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)
|
|
122
121
|
billing_country_code: Optional[str] = Field(
|
|
123
122
|
alias="billingCountryCode", default=None
|
|
124
123
|
)
|
|
125
|
-
price: Optional["
|
|
124
|
+
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
126
125
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
127
|
-
tiers: Optional[List["
|
|
128
|
-
feature: Optional["
|
|
126
|
+
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
127
|
+
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
128
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
129
129
|
|
|
130
130
|
|
|
131
|
-
class
|
|
131
|
+
class PriceFragmentPrice(BaseModel):
|
|
132
132
|
amount: float
|
|
133
133
|
currency: Currency
|
|
134
134
|
|
|
135
135
|
|
|
136
|
-
class
|
|
136
|
+
class PriceFragmentTiers(PriceTierFragment):
|
|
137
137
|
pass
|
|
138
138
|
|
|
139
139
|
|
|
140
|
-
class
|
|
140
|
+
class PriceFragmentFeature(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(
|
|
@@ -298,141 +298,6 @@ class EntitlementFragmentFeature(FeatureFragment):
|
|
|
298
298
|
pass
|
|
299
299
|
|
|
300
300
|
|
|
301
|
-
class TotalPriceFragment(BaseModel):
|
|
302
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
303
|
-
total: "TotalPriceFragmentTotal"
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
307
|
-
amount: float
|
|
308
|
-
currency: Currency
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
312
|
-
amount: float
|
|
313
|
-
currency: Currency
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
317
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
318
|
-
display_name: str = Field(alias="displayName")
|
|
319
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
320
|
-
default=None
|
|
321
|
-
)
|
|
322
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
326
|
-
pass
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
330
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
331
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
class ProductFragment(BaseModel):
|
|
335
|
-
ref_id: str = Field(alias="refId")
|
|
336
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
337
|
-
description: Optional[str] = Field(default=None)
|
|
338
|
-
additional_meta_data: Optional[Any] = Field(
|
|
339
|
-
alias="additionalMetaData", default=None
|
|
340
|
-
)
|
|
341
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
345
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
346
|
-
alias="downgradePlan", default=None
|
|
347
|
-
)
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
351
|
-
ref_id: str = Field(alias="refId")
|
|
352
|
-
display_name: str = Field(alias="displayName")
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
class PlanFragment(BaseModel):
|
|
356
|
-
id: str
|
|
357
|
-
ref_id: str = Field(alias="refId")
|
|
358
|
-
display_name: str = Field(alias="displayName")
|
|
359
|
-
description: Optional[str] = Field(default=None)
|
|
360
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
361
|
-
version_number: int = Field(alias="versionNumber")
|
|
362
|
-
additional_meta_data: Optional[Any] = Field(
|
|
363
|
-
alias="additionalMetaData", default=None
|
|
364
|
-
)
|
|
365
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
366
|
-
alias="hiddenFromWidgets", default=None
|
|
367
|
-
)
|
|
368
|
-
product: "PlanFragmentProduct"
|
|
369
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
370
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
371
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
372
|
-
alias="inheritedEntitlements", default=None
|
|
373
|
-
)
|
|
374
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
375
|
-
alias="compatibleAddons", default=None
|
|
376
|
-
)
|
|
377
|
-
compatible_package_groups: Optional[
|
|
378
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
379
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
380
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
381
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
382
|
-
alias="overagePrices", default=None
|
|
383
|
-
)
|
|
384
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
385
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
386
|
-
alias="defaultTrialConfig", default=None
|
|
387
|
-
)
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
class PlanFragmentProduct(ProductFragment):
|
|
391
|
-
pass
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
395
|
-
ref_id: str = Field(alias="refId")
|
|
396
|
-
display_name: str = Field(alias="displayName")
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
400
|
-
pass
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
404
|
-
pass
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
408
|
-
pass
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
412
|
-
pass
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
class PlanFragmentPrices(PriceFragment):
|
|
416
|
-
pass
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
420
|
-
pass
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
424
|
-
duration: float
|
|
425
|
-
units: TrialPeriodUnits
|
|
426
|
-
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
427
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
428
|
-
alias="trialEndBehavior", default=None
|
|
429
|
-
)
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
433
|
-
limit: float
|
|
434
|
-
|
|
435
|
-
|
|
436
301
|
class SubscriptionInvoiceFragment(BaseModel):
|
|
437
302
|
billing_id: str = Field(alias="billingId")
|
|
438
303
|
status: SubscriptionInvoiceStatus
|
|
@@ -459,62 +324,60 @@ class SubscriptionInvoiceFragment(BaseModel):
|
|
|
459
324
|
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
460
325
|
|
|
461
326
|
|
|
462
|
-
class
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
email: Optional[str] = Field(default=None)
|
|
466
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
467
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
468
|
-
ref_id: str = Field(alias="refId")
|
|
469
|
-
customer_id: str = Field(alias="customerId")
|
|
470
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
471
|
-
additional_meta_data: Optional[Any] = Field(
|
|
472
|
-
alias="additionalMetaData", default=None
|
|
473
|
-
)
|
|
474
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
475
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
476
|
-
)
|
|
327
|
+
class TotalPriceFragment(BaseModel):
|
|
328
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
329
|
+
total: "TotalPriceFragmentTotal"
|
|
477
330
|
|
|
478
331
|
|
|
479
|
-
class
|
|
332
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
333
|
+
amount: float
|
|
334
|
+
currency: Currency
|
|
335
|
+
|
|
336
|
+
|
|
337
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
338
|
+
amount: float
|
|
339
|
+
currency: Currency
|
|
340
|
+
|
|
341
|
+
|
|
342
|
+
class SubscriptionScheduledUpdateData(BaseModel):
|
|
480
343
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
481
344
|
alias="subscriptionScheduleType"
|
|
482
345
|
)
|
|
483
346
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
484
347
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
485
|
-
target_package: Optional["
|
|
348
|
+
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
486
349
|
alias="targetPackage", default=None
|
|
487
350
|
)
|
|
488
351
|
schedule_variables: Optional[
|
|
489
352
|
Annotated[
|
|
490
353
|
Union[
|
|
491
|
-
"
|
|
492
|
-
"
|
|
493
|
-
"
|
|
494
|
-
"
|
|
495
|
-
"
|
|
496
|
-
"
|
|
497
|
-
"
|
|
498
|
-
"
|
|
354
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
355
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
356
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
357
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
358
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
359
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
360
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
361
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
499
362
|
],
|
|
500
363
|
Field(discriminator="typename__"),
|
|
501
364
|
]
|
|
502
365
|
] = Field(alias="scheduleVariables", default=None)
|
|
503
366
|
|
|
504
367
|
|
|
505
|
-
class
|
|
368
|
+
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
506
369
|
id: str
|
|
507
370
|
ref_id: str = Field(alias="refId")
|
|
508
371
|
display_name: str = Field(alias="displayName")
|
|
509
372
|
|
|
510
373
|
|
|
511
|
-
class
|
|
374
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
512
375
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
513
376
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
514
377
|
new_quantity: float = Field(alias="newQuantity")
|
|
515
378
|
|
|
516
379
|
|
|
517
|
-
class
|
|
380
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
518
381
|
BaseModel
|
|
519
382
|
):
|
|
520
383
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -522,53 +385,55 @@ class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVaria
|
|
|
522
385
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
523
386
|
|
|
524
387
|
|
|
525
|
-
class
|
|
388
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
526
389
|
BaseModel
|
|
527
390
|
):
|
|
528
391
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
529
392
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
530
393
|
|
|
531
394
|
|
|
532
|
-
class
|
|
395
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
533
396
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
534
397
|
|
|
535
398
|
|
|
536
|
-
class
|
|
399
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
400
|
+
BaseModel
|
|
401
|
+
):
|
|
537
402
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
538
403
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
539
404
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
540
405
|
billable_features: Optional[
|
|
541
406
|
List[
|
|
542
|
-
"
|
|
407
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
543
408
|
]
|
|
544
409
|
] = Field(alias="billableFeatures", default=None)
|
|
545
410
|
addons: Optional[
|
|
546
411
|
List[
|
|
547
|
-
"
|
|
412
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
548
413
|
]
|
|
549
414
|
] = Field(default=None)
|
|
550
415
|
price_overrides: Optional[
|
|
551
416
|
List[
|
|
552
|
-
"
|
|
417
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
553
418
|
]
|
|
554
419
|
] = Field(alias="priceOverrides", default=None)
|
|
555
420
|
|
|
556
421
|
|
|
557
|
-
class
|
|
422
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
558
423
|
BaseModel
|
|
559
424
|
):
|
|
560
425
|
feature_id: str = Field(alias="featureId")
|
|
561
426
|
quantity: float
|
|
562
427
|
|
|
563
428
|
|
|
564
|
-
class
|
|
429
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
565
430
|
BaseModel
|
|
566
431
|
):
|
|
567
432
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
568
433
|
quantity: float
|
|
569
434
|
|
|
570
435
|
|
|
571
|
-
class
|
|
436
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
572
437
|
BaseModel
|
|
573
438
|
):
|
|
574
439
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -576,39 +441,43 @@ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPrice
|
|
|
576
441
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
577
442
|
|
|
578
443
|
|
|
579
|
-
class
|
|
444
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
580
445
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
581
446
|
plan_ref_id: str = Field(alias="planRefId")
|
|
582
447
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
583
448
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
584
449
|
billable_features: Optional[
|
|
585
450
|
List[
|
|
586
|
-
"
|
|
451
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
587
452
|
]
|
|
588
453
|
] = Field(alias="billableFeatures", default=None)
|
|
589
454
|
addons: Optional[
|
|
590
|
-
List[
|
|
455
|
+
List[
|
|
456
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
457
|
+
]
|
|
591
458
|
] = Field(default=None)
|
|
592
459
|
price_overrides: Optional[
|
|
593
460
|
List[
|
|
594
|
-
"
|
|
461
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
595
462
|
]
|
|
596
463
|
] = Field(alias="priceOverrides", default=None)
|
|
597
464
|
|
|
598
465
|
|
|
599
|
-
class
|
|
466
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
600
467
|
BaseModel
|
|
601
468
|
):
|
|
602
469
|
feature_id: str = Field(alias="featureId")
|
|
603
470
|
quantity: float
|
|
604
471
|
|
|
605
472
|
|
|
606
|
-
class
|
|
473
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
474
|
+
BaseModel
|
|
475
|
+
):
|
|
607
476
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
608
477
|
quantity: float
|
|
609
478
|
|
|
610
479
|
|
|
611
|
-
class
|
|
480
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
612
481
|
BaseModel
|
|
613
482
|
):
|
|
614
483
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -616,7 +485,7 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverr
|
|
|
616
485
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
617
486
|
|
|
618
487
|
|
|
619
|
-
class
|
|
488
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
620
489
|
BaseModel
|
|
621
490
|
):
|
|
622
491
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -624,59 +493,194 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariab
|
|
|
624
493
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
625
494
|
|
|
626
495
|
|
|
627
|
-
class
|
|
496
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
497
|
+
BaseModel
|
|
498
|
+
):
|
|
628
499
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
629
500
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
630
501
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
631
502
|
|
|
632
503
|
|
|
633
|
-
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
634
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
635
|
-
|
|
636
|
-
|
|
637
504
|
class CustomerResourceFragment(BaseModel):
|
|
638
505
|
resource_id: str = Field(alias="resourceId")
|
|
639
506
|
|
|
640
507
|
|
|
641
|
-
class
|
|
508
|
+
class SlimCustomerFragment(BaseModel):
|
|
509
|
+
id: str
|
|
510
|
+
name: Optional[str] = Field(default=None)
|
|
511
|
+
email: Optional[str] = Field(default=None)
|
|
512
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
513
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
514
|
+
ref_id: str = Field(alias="refId")
|
|
515
|
+
customer_id: str = Field(alias="customerId")
|
|
516
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
517
|
+
additional_meta_data: Optional[Any] = Field(
|
|
518
|
+
alias="additionalMetaData", default=None
|
|
519
|
+
)
|
|
520
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
521
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
522
|
+
)
|
|
523
|
+
|
|
524
|
+
|
|
525
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
526
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
527
|
+
display_name: str = Field(alias="displayName")
|
|
528
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
529
|
+
default=None
|
|
530
|
+
)
|
|
531
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
532
|
+
|
|
533
|
+
|
|
534
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
535
|
+
pass
|
|
536
|
+
|
|
537
|
+
|
|
538
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
539
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
540
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
541
|
+
|
|
542
|
+
|
|
543
|
+
class ProductFragment(BaseModel):
|
|
544
|
+
ref_id: str = Field(alias="refId")
|
|
545
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
546
|
+
description: Optional[str] = Field(default=None)
|
|
547
|
+
additional_meta_data: Optional[Any] = Field(
|
|
548
|
+
alias="additionalMetaData", default=None
|
|
549
|
+
)
|
|
550
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
551
|
+
|
|
552
|
+
|
|
553
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
554
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
555
|
+
alias="downgradePlan", default=None
|
|
556
|
+
)
|
|
557
|
+
|
|
558
|
+
|
|
559
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
560
|
+
ref_id: str = Field(alias="refId")
|
|
561
|
+
display_name: str = Field(alias="displayName")
|
|
562
|
+
|
|
563
|
+
|
|
564
|
+
class PlanFragment(BaseModel):
|
|
565
|
+
id: str
|
|
566
|
+
ref_id: str = Field(alias="refId")
|
|
567
|
+
display_name: str = Field(alias="displayName")
|
|
568
|
+
description: Optional[str] = Field(default=None)
|
|
569
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
570
|
+
version_number: int = Field(alias="versionNumber")
|
|
571
|
+
additional_meta_data: Optional[Any] = Field(
|
|
572
|
+
alias="additionalMetaData", default=None
|
|
573
|
+
)
|
|
574
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
575
|
+
alias="hiddenFromWidgets", default=None
|
|
576
|
+
)
|
|
577
|
+
product: "PlanFragmentProduct"
|
|
578
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
579
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
580
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
581
|
+
alias="inheritedEntitlements", default=None
|
|
582
|
+
)
|
|
583
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
584
|
+
alias="compatibleAddons", default=None
|
|
585
|
+
)
|
|
586
|
+
compatible_package_groups: Optional[
|
|
587
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
588
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
589
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
590
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
591
|
+
alias="overagePrices", default=None
|
|
592
|
+
)
|
|
593
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
594
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
595
|
+
alias="defaultTrialConfig", default=None
|
|
596
|
+
)
|
|
597
|
+
|
|
598
|
+
|
|
599
|
+
class PlanFragmentProduct(ProductFragment):
|
|
600
|
+
pass
|
|
601
|
+
|
|
602
|
+
|
|
603
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
604
|
+
ref_id: str = Field(alias="refId")
|
|
605
|
+
display_name: str = Field(alias="displayName")
|
|
606
|
+
|
|
607
|
+
|
|
608
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
609
|
+
pass
|
|
610
|
+
|
|
611
|
+
|
|
612
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
613
|
+
pass
|
|
614
|
+
|
|
615
|
+
|
|
616
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
617
|
+
pass
|
|
618
|
+
|
|
619
|
+
|
|
620
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
621
|
+
pass
|
|
622
|
+
|
|
623
|
+
|
|
624
|
+
class PlanFragmentPrices(PriceFragment):
|
|
625
|
+
pass
|
|
626
|
+
|
|
627
|
+
|
|
628
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
629
|
+
pass
|
|
630
|
+
|
|
631
|
+
|
|
632
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
633
|
+
duration: float
|
|
634
|
+
units: TrialPeriodUnits
|
|
635
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
636
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
637
|
+
alias="trialEndBehavior", default=None
|
|
638
|
+
)
|
|
639
|
+
|
|
640
|
+
|
|
641
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
642
|
+
limit: float
|
|
643
|
+
|
|
644
|
+
|
|
645
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
642
646
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
643
647
|
alias="subscriptionScheduleType"
|
|
644
648
|
)
|
|
645
649
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
646
650
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
647
|
-
target_package: Optional["
|
|
651
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
648
652
|
alias="targetPackage", default=None
|
|
649
653
|
)
|
|
650
654
|
schedule_variables: Optional[
|
|
651
655
|
Annotated[
|
|
652
656
|
Union[
|
|
653
|
-
"
|
|
654
|
-
"
|
|
655
|
-
"
|
|
656
|
-
"
|
|
657
|
-
"
|
|
658
|
-
"
|
|
659
|
-
"
|
|
660
|
-
"
|
|
657
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
658
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
659
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
660
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
661
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
662
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
663
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
664
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
661
665
|
],
|
|
662
666
|
Field(discriminator="typename__"),
|
|
663
667
|
]
|
|
664
668
|
] = Field(alias="scheduleVariables", default=None)
|
|
665
669
|
|
|
666
670
|
|
|
667
|
-
class
|
|
671
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
668
672
|
id: str
|
|
669
673
|
ref_id: str = Field(alias="refId")
|
|
670
674
|
display_name: str = Field(alias="displayName")
|
|
671
675
|
|
|
672
676
|
|
|
673
|
-
class
|
|
677
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
674
678
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
675
679
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
676
680
|
new_quantity: float = Field(alias="newQuantity")
|
|
677
681
|
|
|
678
682
|
|
|
679
|
-
class
|
|
683
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
680
684
|
BaseModel
|
|
681
685
|
):
|
|
682
686
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -684,55 +688,53 @@ class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVa
|
|
|
684
688
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
685
689
|
|
|
686
690
|
|
|
687
|
-
class
|
|
691
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
688
692
|
BaseModel
|
|
689
693
|
):
|
|
690
694
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
691
695
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
692
696
|
|
|
693
697
|
|
|
694
|
-
class
|
|
698
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
695
699
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
696
700
|
|
|
697
701
|
|
|
698
|
-
class
|
|
699
|
-
BaseModel
|
|
700
|
-
):
|
|
702
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
701
703
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
702
704
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
703
705
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
704
706
|
billable_features: Optional[
|
|
705
707
|
List[
|
|
706
|
-
"
|
|
708
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
707
709
|
]
|
|
708
710
|
] = Field(alias="billableFeatures", default=None)
|
|
709
711
|
addons: Optional[
|
|
710
712
|
List[
|
|
711
|
-
"
|
|
713
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
712
714
|
]
|
|
713
715
|
] = Field(default=None)
|
|
714
716
|
price_overrides: Optional[
|
|
715
717
|
List[
|
|
716
|
-
"
|
|
718
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
717
719
|
]
|
|
718
720
|
] = Field(alias="priceOverrides", default=None)
|
|
719
721
|
|
|
720
722
|
|
|
721
|
-
class
|
|
723
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
722
724
|
BaseModel
|
|
723
725
|
):
|
|
724
726
|
feature_id: str = Field(alias="featureId")
|
|
725
727
|
quantity: float
|
|
726
728
|
|
|
727
729
|
|
|
728
|
-
class
|
|
730
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
729
731
|
BaseModel
|
|
730
732
|
):
|
|
731
733
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
732
734
|
quantity: float
|
|
733
735
|
|
|
734
736
|
|
|
735
|
-
class
|
|
737
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
736
738
|
BaseModel
|
|
737
739
|
):
|
|
738
740
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -740,43 +742,39 @@ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPr
|
|
|
740
742
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
741
743
|
|
|
742
744
|
|
|
743
|
-
class
|
|
745
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
744
746
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
745
747
|
plan_ref_id: str = Field(alias="planRefId")
|
|
746
748
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
747
749
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
748
750
|
billable_features: Optional[
|
|
749
751
|
List[
|
|
750
|
-
"
|
|
752
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
751
753
|
]
|
|
752
754
|
] = Field(alias="billableFeatures", default=None)
|
|
753
755
|
addons: Optional[
|
|
754
|
-
List[
|
|
755
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
756
|
-
]
|
|
756
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
757
757
|
] = Field(default=None)
|
|
758
758
|
price_overrides: Optional[
|
|
759
759
|
List[
|
|
760
|
-
"
|
|
760
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
761
761
|
]
|
|
762
762
|
] = Field(alias="priceOverrides", default=None)
|
|
763
763
|
|
|
764
764
|
|
|
765
|
-
class
|
|
765
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
766
766
|
BaseModel
|
|
767
767
|
):
|
|
768
768
|
feature_id: str = Field(alias="featureId")
|
|
769
769
|
quantity: float
|
|
770
770
|
|
|
771
771
|
|
|
772
|
-
class
|
|
773
|
-
BaseModel
|
|
774
|
-
):
|
|
772
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
775
773
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
776
774
|
quantity: float
|
|
777
775
|
|
|
778
776
|
|
|
779
|
-
class
|
|
777
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
780
778
|
BaseModel
|
|
781
779
|
):
|
|
782
780
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -784,7 +782,7 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOv
|
|
|
784
782
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
785
783
|
|
|
786
784
|
|
|
787
|
-
class
|
|
785
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
788
786
|
BaseModel
|
|
789
787
|
):
|
|
790
788
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -792,14 +790,16 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVar
|
|
|
792
790
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
793
791
|
|
|
794
792
|
|
|
795
|
-
class
|
|
796
|
-
BaseModel
|
|
797
|
-
):
|
|
793
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
798
794
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
799
795
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
800
796
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
801
797
|
|
|
802
798
|
|
|
799
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
800
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
801
|
+
|
|
802
|
+
|
|
803
803
|
class SubscriptionFragment(BaseModel):
|
|
804
804
|
id: str
|
|
805
805
|
subscription_id: str = Field(alias="subscriptionId")
|
|
@@ -986,6 +986,35 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
986
986
|
)
|
|
987
987
|
|
|
988
988
|
|
|
989
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
990
|
+
status: PromotionalEntitlementStatus
|
|
991
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
992
|
+
feature_id: str = Field(alias="featureId")
|
|
993
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
994
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
995
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
996
|
+
alias="resetPeriod", default=None
|
|
997
|
+
)
|
|
998
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
999
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1000
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1001
|
+
|
|
1002
|
+
|
|
1003
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1004
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1005
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1006
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1007
|
+
feature_units_plural: Optional[str] = Field(
|
|
1008
|
+
alias="featureUnitsPlural", default=None
|
|
1009
|
+
)
|
|
1010
|
+
display_name: str = Field(alias="displayName")
|
|
1011
|
+
description: Optional[str] = Field(default=None)
|
|
1012
|
+
ref_id: str = Field(alias="refId")
|
|
1013
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1014
|
+
alias="additionalMetaData", default=None
|
|
1015
|
+
)
|
|
1016
|
+
|
|
1017
|
+
|
|
989
1018
|
class CouponFragment(BaseModel):
|
|
990
1019
|
id: str
|
|
991
1020
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1020,35 +1049,6 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1020
1049
|
status: SyncStatus
|
|
1021
1050
|
|
|
1022
1051
|
|
|
1023
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
1024
|
-
status: PromotionalEntitlementStatus
|
|
1025
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1026
|
-
feature_id: str = Field(alias="featureId")
|
|
1027
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1028
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1029
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1030
|
-
alias="resetPeriod", default=None
|
|
1031
|
-
)
|
|
1032
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1033
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1034
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1038
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1039
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1040
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1041
|
-
feature_units_plural: Optional[str] = Field(
|
|
1042
|
-
alias="featureUnitsPlural", default=None
|
|
1043
|
-
)
|
|
1044
|
-
display_name: str = Field(alias="displayName")
|
|
1045
|
-
description: Optional[str] = Field(default=None)
|
|
1046
|
-
ref_id: str = Field(alias="refId")
|
|
1047
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1048
|
-
alias="additionalMetaData", default=None
|
|
1049
|
-
)
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
1052
|
class CustomerFragment(SlimCustomerFragment):
|
|
1053
1053
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1054
1054
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1259,33 +1259,6 @@ class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
|
1259
1259
|
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1260
1260
|
|
|
1261
1261
|
|
|
1262
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1263
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1264
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1265
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1266
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1267
|
-
default=None
|
|
1268
|
-
)
|
|
1269
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1270
|
-
default=None
|
|
1271
|
-
)
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1275
|
-
amount: float
|
|
1276
|
-
currency: Currency
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1280
|
-
id: str
|
|
1281
|
-
ref_id: str = Field(alias="refId")
|
|
1282
|
-
display_name: str = Field(alias="displayName")
|
|
1283
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1284
|
-
feature_units_plural: Optional[str] = Field(
|
|
1285
|
-
alias="featureUnitsPlural", default=None
|
|
1286
|
-
)
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
1262
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1290
1263
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1291
1264
|
alias="subscriptionScheduleType"
|
|
@@ -1455,6 +1428,33 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1455
1428
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1456
1429
|
|
|
1457
1430
|
|
|
1431
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1432
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1433
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1434
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1435
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1436
|
+
default=None
|
|
1437
|
+
)
|
|
1438
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1439
|
+
default=None
|
|
1440
|
+
)
|
|
1441
|
+
|
|
1442
|
+
|
|
1443
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1444
|
+
amount: float
|
|
1445
|
+
currency: Currency
|
|
1446
|
+
|
|
1447
|
+
|
|
1448
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1449
|
+
id: str
|
|
1450
|
+
ref_id: str = Field(alias="refId")
|
|
1451
|
+
display_name: str = Field(alias="displayName")
|
|
1452
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1453
|
+
feature_units_plural: Optional[str] = Field(
|
|
1454
|
+
alias="featureUnitsPlural", default=None
|
|
1455
|
+
)
|
|
1456
|
+
|
|
1457
|
+
|
|
1458
1458
|
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1459
1459
|
addon_id: str = Field(alias="addonId")
|
|
1460
1460
|
description: Optional[str] = Field(default=None)
|
|
@@ -1785,6 +1785,39 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1785
1785
|
description: Optional[str] = Field(default=None)
|
|
1786
1786
|
|
|
1787
1787
|
|
|
1788
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1789
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1790
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1791
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1792
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1793
|
+
alias="resetPeriod", default=None
|
|
1794
|
+
)
|
|
1795
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1796
|
+
alias="hiddenFromWidgets", default=None
|
|
1797
|
+
)
|
|
1798
|
+
display_name_override: Optional[str] = Field(
|
|
1799
|
+
alias="displayNameOverride", default=None
|
|
1800
|
+
)
|
|
1801
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1802
|
+
default=None
|
|
1803
|
+
)
|
|
1804
|
+
|
|
1805
|
+
|
|
1806
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1807
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1808
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1809
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1810
|
+
feature_units_plural: Optional[str] = Field(
|
|
1811
|
+
alias="featureUnitsPlural", default=None
|
|
1812
|
+
)
|
|
1813
|
+
display_name: str = Field(alias="displayName")
|
|
1814
|
+
description: Optional[str] = Field(default=None)
|
|
1815
|
+
ref_id: str = Field(alias="refId")
|
|
1816
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1817
|
+
alias="additionalMetaData", default=None
|
|
1818
|
+
)
|
|
1819
|
+
|
|
1820
|
+
|
|
1788
1821
|
class MockPaywallPriceFragment(BaseModel):
|
|
1789
1822
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1790
1823
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1819,39 +1852,6 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1819
1852
|
display_name: str = Field(alias="displayName")
|
|
1820
1853
|
|
|
1821
1854
|
|
|
1822
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1823
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1824
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1825
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1826
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1827
|
-
alias="resetPeriod", default=None
|
|
1828
|
-
)
|
|
1829
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1830
|
-
alias="hiddenFromWidgets", default=None
|
|
1831
|
-
)
|
|
1832
|
-
display_name_override: Optional[str] = Field(
|
|
1833
|
-
alias="displayNameOverride", default=None
|
|
1834
|
-
)
|
|
1835
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1836
|
-
default=None
|
|
1837
|
-
)
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1841
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1842
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1843
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1844
|
-
feature_units_plural: Optional[str] = Field(
|
|
1845
|
-
alias="featureUnitsPlural", default=None
|
|
1846
|
-
)
|
|
1847
|
-
display_name: str = Field(alias="displayName")
|
|
1848
|
-
description: Optional[str] = Field(default=None)
|
|
1849
|
-
ref_id: str = Field(alias="refId")
|
|
1850
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1851
|
-
alias="additionalMetaData", default=None
|
|
1852
|
-
)
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
1855
|
class MockPaywallAddonFragment(BaseModel):
|
|
1856
1856
|
ref_id: str = Field(alias="refId")
|
|
1857
1857
|
display_name: str = Field(alias="displayName")
|
|
@@ -2763,37 +2763,37 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2763
2763
|
|
|
2764
2764
|
AddonDependencyFragment.model_rebuild()
|
|
2765
2765
|
PriceTierFragment.model_rebuild()
|
|
2766
|
-
PriceFragment.model_rebuild()
|
|
2767
2766
|
OveragePriceFragment.model_rebuild()
|
|
2767
|
+
PriceFragment.model_rebuild()
|
|
2768
2768
|
PackageEntitlementFragment.model_rebuild()
|
|
2769
2769
|
AddonFragment.model_rebuild()
|
|
2770
2770
|
FeatureFragment.model_rebuild()
|
|
2771
2771
|
EntitlementFragment.model_rebuild()
|
|
2772
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2772
2773
|
TotalPriceFragment.model_rebuild()
|
|
2774
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2775
|
+
CustomerResourceFragment.model_rebuild()
|
|
2776
|
+
SlimCustomerFragment.model_rebuild()
|
|
2773
2777
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2774
2778
|
ProductFragment.model_rebuild()
|
|
2775
2779
|
PlanFragment.model_rebuild()
|
|
2776
|
-
SubscriptionInvoiceFragment.model_rebuild()
|
|
2777
|
-
SlimCustomerFragment.model_rebuild()
|
|
2778
2780
|
SubscriptionFutureUpdateData.model_rebuild()
|
|
2779
2781
|
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2780
|
-
CustomerResourceFragment.model_rebuild()
|
|
2781
|
-
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2782
2782
|
SubscriptionFragment.model_rebuild()
|
|
2783
2783
|
ApplySubscriptionFragment.model_rebuild()
|
|
2784
2784
|
FontVariantFragment.model_rebuild()
|
|
2785
2785
|
TypographyConfigurationFragment.model_rebuild()
|
|
2786
2786
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2787
|
-
CouponFragment.model_rebuild()
|
|
2788
2787
|
PromotionalEntitlementFragment.model_rebuild()
|
|
2788
|
+
CouponFragment.model_rebuild()
|
|
2789
2789
|
CustomerFragment.model_rebuild()
|
|
2790
2790
|
CheckoutStateFragment.model_rebuild()
|
|
2791
2791
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2792
2792
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2793
2793
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2794
2794
|
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2795
|
-
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2796
2795
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2796
|
+
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2797
2797
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2798
2798
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2799
2799
|
CustomerPortalFragment.model_rebuild()
|
|
@@ -2805,8 +2805,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
2805
2805
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
2806
2806
|
LayoutConfigurationFragment.model_rebuild()
|
|
2807
2807
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
2808
|
-
MockPaywallPriceFragment.model_rebuild()
|
|
2809
2808
|
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2809
|
+
MockPaywallPriceFragment.model_rebuild()
|
|
2810
2810
|
MockPaywallAddonFragment.model_rebuild()
|
|
2811
2811
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2812
2812
|
MockPaywallPlanFragment.model_rebuild()
|
|
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=pc9LCxX-JHp05iOwlZI6QCpzXH5kinzBRAvgTHMBXyE,3433
|
|
|
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=Sj-lpjgzoVRXfZ-bH6nyQeGVbi8UhEaAtaBtXaSAhH8,100553
|
|
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.303.
|
|
164
|
-
stigg_api_client_v2-2.303.
|
|
165
|
-
stigg_api_client_v2-2.303.
|
|
166
|
-
stigg_api_client_v2-2.303.
|
|
163
|
+
stigg_api_client_v2-2.303.2.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.303.2.dist-info/METADATA,sha256=RgqKhbp48x2uEtQemRLTgrVwvOvhU9ltRy0EgI2949Q,2258
|
|
165
|
+
stigg_api_client_v2-2.303.2.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.303.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|