stigg-api-client-v2 2.303.2__py3-none-any.whl → 2.304.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- stigg/generated/fragments.py +357 -357
- stigg/generated/input_types.py +1 -0
- {stigg_api_client_v2-2.303.2.dist-info → stigg_api_client_v2-2.304.1.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.303.2.dist-info → stigg_api_client_v2-2.304.1.dist-info}/RECORD +6 -6
- {stigg_api_client_v2-2.303.2.dist-info → stigg_api_client_v2-2.304.1.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.303.2.dist-info → stigg_api_client_v2-2.304.1.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -79,38 +79,6 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
79
79
|
currency: Currency
|
|
80
80
|
|
|
81
81
|
|
|
82
|
-
class OveragePriceFragment(BaseModel):
|
|
83
|
-
billing_model: BillingModel = Field(alias="billingModel")
|
|
84
|
-
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
85
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
86
|
-
billing_country_code: Optional[str] = Field(
|
|
87
|
-
alias="billingCountryCode", default=None
|
|
88
|
-
)
|
|
89
|
-
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
90
|
-
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
91
|
-
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
92
|
-
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
class OveragePriceFragmentPrice(BaseModel):
|
|
96
|
-
amount: float
|
|
97
|
-
currency: Currency
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
101
|
-
pass
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
class OveragePriceFragmentFeature(BaseModel):
|
|
105
|
-
ref_id: str = Field(alias="refId")
|
|
106
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
107
|
-
feature_units_plural: Optional[str] = Field(
|
|
108
|
-
alias="featureUnitsPlural", default=None
|
|
109
|
-
)
|
|
110
|
-
display_name: str = Field(alias="displayName")
|
|
111
|
-
description: Optional[str] = Field(default=None)
|
|
112
|
-
|
|
113
|
-
|
|
114
82
|
class PriceFragment(BaseModel):
|
|
115
83
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
116
84
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -180,6 +148,38 @@ class PackageEntitlementFragmentFeature(BaseModel):
|
|
|
180
148
|
)
|
|
181
149
|
|
|
182
150
|
|
|
151
|
+
class OveragePriceFragment(BaseModel):
|
|
152
|
+
billing_model: BillingModel = Field(alias="billingModel")
|
|
153
|
+
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
154
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
155
|
+
billing_country_code: Optional[str] = Field(
|
|
156
|
+
alias="billingCountryCode", default=None
|
|
157
|
+
)
|
|
158
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
159
|
+
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
160
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
161
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
165
|
+
amount: float
|
|
166
|
+
currency: Currency
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
170
|
+
pass
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
174
|
+
ref_id: str = Field(alias="refId")
|
|
175
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
176
|
+
feature_units_plural: Optional[str] = Field(
|
|
177
|
+
alias="featureUnitsPlural", default=None
|
|
178
|
+
)
|
|
179
|
+
display_name: str = Field(alias="displayName")
|
|
180
|
+
description: Optional[str] = Field(default=None)
|
|
181
|
+
|
|
182
|
+
|
|
183
183
|
class AddonFragment(BaseModel):
|
|
184
184
|
id: str
|
|
185
185
|
ref_id: str = Field(alias="refId")
|
|
@@ -298,45 +298,183 @@ class EntitlementFragmentFeature(FeatureFragment):
|
|
|
298
298
|
pass
|
|
299
299
|
|
|
300
300
|
|
|
301
|
-
class
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
301
|
+
class CustomerResourceFragment(BaseModel):
|
|
302
|
+
resource_id: str = Field(alias="resourceId")
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
class SlimCustomerFragment(BaseModel):
|
|
306
|
+
id: str
|
|
307
|
+
name: Optional[str] = Field(default=None)
|
|
308
|
+
email: Optional[str] = Field(default=None)
|
|
309
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
305
310
|
updated_at: Any = Field(alias="updatedAt")
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
312
|
-
alias="billingReason", default=None
|
|
311
|
+
ref_id: str = Field(alias="refId")
|
|
312
|
+
customer_id: str = Field(alias="customerId")
|
|
313
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
314
|
+
additional_meta_data: Optional[Any] = Field(
|
|
315
|
+
alias="additionalMetaData", default=None
|
|
313
316
|
)
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
317
|
-
alias="subTotalExcludingTax", default=None
|
|
317
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
318
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
318
319
|
)
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
323
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
327
|
+
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
328
|
+
alias="subscriptionScheduleType"
|
|
322
329
|
)
|
|
323
|
-
|
|
324
|
-
|
|
330
|
+
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
331
|
+
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
332
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
333
|
+
alias="targetPackage", default=None
|
|
334
|
+
)
|
|
335
|
+
schedule_variables: Optional[
|
|
336
|
+
Annotated[
|
|
337
|
+
Union[
|
|
338
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
339
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
340
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
341
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
342
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
343
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
344
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
345
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
346
|
+
],
|
|
347
|
+
Field(discriminator="typename__"),
|
|
348
|
+
]
|
|
349
|
+
] = Field(alias="scheduleVariables", default=None)
|
|
325
350
|
|
|
326
351
|
|
|
327
|
-
class
|
|
328
|
-
|
|
329
|
-
|
|
352
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
353
|
+
id: str
|
|
354
|
+
ref_id: str = Field(alias="refId")
|
|
355
|
+
display_name: str = Field(alias="displayName")
|
|
330
356
|
|
|
331
357
|
|
|
332
|
-
class
|
|
333
|
-
|
|
334
|
-
|
|
358
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
359
|
+
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
360
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
361
|
+
new_quantity: float = Field(alias="newQuantity")
|
|
335
362
|
|
|
336
363
|
|
|
337
|
-
class
|
|
338
|
-
|
|
339
|
-
|
|
364
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
365
|
+
BaseModel
|
|
366
|
+
):
|
|
367
|
+
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
368
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
369
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
373
|
+
BaseModel
|
|
374
|
+
):
|
|
375
|
+
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
376
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
377
|
+
|
|
378
|
+
|
|
379
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
380
|
+
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
381
|
+
|
|
382
|
+
|
|
383
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
384
|
+
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
385
|
+
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
386
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
387
|
+
billable_features: Optional[
|
|
388
|
+
List[
|
|
389
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
390
|
+
]
|
|
391
|
+
] = Field(alias="billableFeatures", default=None)
|
|
392
|
+
addons: Optional[
|
|
393
|
+
List[
|
|
394
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
395
|
+
]
|
|
396
|
+
] = Field(default=None)
|
|
397
|
+
price_overrides: Optional[
|
|
398
|
+
List[
|
|
399
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
400
|
+
]
|
|
401
|
+
] = Field(alias="priceOverrides", default=None)
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
405
|
+
BaseModel
|
|
406
|
+
):
|
|
407
|
+
feature_id: str = Field(alias="featureId")
|
|
408
|
+
quantity: float
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
412
|
+
BaseModel
|
|
413
|
+
):
|
|
414
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
415
|
+
quantity: float
|
|
416
|
+
|
|
417
|
+
|
|
418
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
419
|
+
BaseModel
|
|
420
|
+
):
|
|
421
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
422
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
423
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
424
|
+
|
|
425
|
+
|
|
426
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
427
|
+
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
428
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
429
|
+
change_type: PlanChangeType = Field(alias="changeType")
|
|
430
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
431
|
+
billable_features: Optional[
|
|
432
|
+
List[
|
|
433
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
434
|
+
]
|
|
435
|
+
] = Field(alias="billableFeatures", default=None)
|
|
436
|
+
addons: Optional[
|
|
437
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
438
|
+
] = Field(default=None)
|
|
439
|
+
price_overrides: Optional[
|
|
440
|
+
List[
|
|
441
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
442
|
+
]
|
|
443
|
+
] = Field(alias="priceOverrides", default=None)
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
447
|
+
BaseModel
|
|
448
|
+
):
|
|
449
|
+
feature_id: str = Field(alias="featureId")
|
|
450
|
+
quantity: float
|
|
451
|
+
|
|
452
|
+
|
|
453
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
454
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
455
|
+
quantity: float
|
|
456
|
+
|
|
457
|
+
|
|
458
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
459
|
+
BaseModel
|
|
460
|
+
):
|
|
461
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
462
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
463
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
464
|
+
|
|
465
|
+
|
|
466
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
467
|
+
BaseModel
|
|
468
|
+
):
|
|
469
|
+
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
470
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
471
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
472
|
+
|
|
473
|
+
|
|
474
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
475
|
+
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
476
|
+
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
477
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
340
478
|
|
|
341
479
|
|
|
342
480
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
@@ -501,25 +639,45 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
501
639
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
502
640
|
|
|
503
641
|
|
|
504
|
-
class
|
|
505
|
-
|
|
642
|
+
class TotalPriceFragment(BaseModel):
|
|
643
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
644
|
+
total: "TotalPriceFragmentTotal"
|
|
506
645
|
|
|
507
646
|
|
|
508
|
-
class
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
647
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
648
|
+
amount: float
|
|
649
|
+
currency: Currency
|
|
650
|
+
|
|
651
|
+
|
|
652
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
653
|
+
amount: float
|
|
654
|
+
currency: Currency
|
|
655
|
+
|
|
656
|
+
|
|
657
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
658
|
+
billing_id: str = Field(alias="billingId")
|
|
659
|
+
status: SubscriptionInvoiceStatus
|
|
660
|
+
created_at: Any = Field(alias="createdAt")
|
|
513
661
|
updated_at: Any = Field(alias="updatedAt")
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
662
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
663
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
664
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
665
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
666
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
667
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
668
|
+
alias="billingReason", default=None
|
|
519
669
|
)
|
|
520
|
-
|
|
521
|
-
|
|
670
|
+
currency: Optional[str] = Field(default=None)
|
|
671
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
672
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
673
|
+
alias="subTotalExcludingTax", default=None
|
|
522
674
|
)
|
|
675
|
+
total: Optional[float] = Field(default=None)
|
|
676
|
+
total_excluding_tax: Optional[float] = Field(
|
|
677
|
+
alias="totalExcludingTax", default=None
|
|
678
|
+
)
|
|
679
|
+
tax: Optional[float] = Field(default=None)
|
|
680
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
523
681
|
|
|
524
682
|
|
|
525
683
|
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
@@ -610,194 +768,36 @@ class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
|
610
768
|
|
|
611
769
|
|
|
612
770
|
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):
|
|
646
|
-
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
647
|
-
alias="subscriptionScheduleType"
|
|
648
|
-
)
|
|
649
|
-
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
650
|
-
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
651
|
-
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
652
|
-
alias="targetPackage", default=None
|
|
653
|
-
)
|
|
654
|
-
schedule_variables: Optional[
|
|
655
|
-
Annotated[
|
|
656
|
-
Union[
|
|
657
|
-
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
658
|
-
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
659
|
-
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
660
|
-
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
661
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
662
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
663
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
664
|
-
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
665
|
-
],
|
|
666
|
-
Field(discriminator="typename__"),
|
|
667
|
-
]
|
|
668
|
-
] = Field(alias="scheduleVariables", default=None)
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
672
|
-
id: str
|
|
673
|
-
ref_id: str = Field(alias="refId")
|
|
674
|
-
display_name: str = Field(alias="displayName")
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
678
|
-
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
679
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
680
|
-
new_quantity: float = Field(alias="newQuantity")
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
684
|
-
BaseModel
|
|
685
|
-
):
|
|
686
|
-
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
687
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
688
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
692
|
-
BaseModel
|
|
693
|
-
):
|
|
694
|
-
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
695
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
699
|
-
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
703
|
-
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
704
|
-
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
705
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
706
|
-
billable_features: Optional[
|
|
707
|
-
List[
|
|
708
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
709
|
-
]
|
|
710
|
-
] = Field(alias="billableFeatures", default=None)
|
|
711
|
-
addons: Optional[
|
|
712
|
-
List[
|
|
713
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
714
|
-
]
|
|
715
|
-
] = Field(default=None)
|
|
716
|
-
price_overrides: Optional[
|
|
717
|
-
List[
|
|
718
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
719
|
-
]
|
|
720
|
-
] = Field(alias="priceOverrides", default=None)
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
724
|
-
BaseModel
|
|
725
|
-
):
|
|
726
|
-
feature_id: str = Field(alias="featureId")
|
|
727
|
-
quantity: float
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
731
|
-
BaseModel
|
|
732
|
-
):
|
|
733
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
734
|
-
quantity: float
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
738
|
-
BaseModel
|
|
739
|
-
):
|
|
740
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
741
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
742
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
746
|
-
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
747
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
748
|
-
change_type: PlanChangeType = Field(alias="changeType")
|
|
749
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
750
|
-
billable_features: Optional[
|
|
751
|
-
List[
|
|
752
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
753
|
-
]
|
|
754
|
-
] = Field(alias="billableFeatures", default=None)
|
|
755
|
-
addons: Optional[
|
|
756
|
-
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
757
|
-
] = Field(default=None)
|
|
758
|
-
price_overrides: Optional[
|
|
759
|
-
List[
|
|
760
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
761
|
-
]
|
|
762
|
-
] = Field(alias="priceOverrides", default=None)
|
|
771
|
+
pass
|
|
763
772
|
|
|
764
773
|
|
|
765
|
-
class
|
|
766
|
-
|
|
767
|
-
):
|
|
768
|
-
feature_id: str = Field(alias="featureId")
|
|
769
|
-
quantity: float
|
|
774
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
775
|
+
pass
|
|
770
776
|
|
|
771
777
|
|
|
772
|
-
class
|
|
773
|
-
|
|
774
|
-
quantity: float
|
|
778
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
779
|
+
pass
|
|
775
780
|
|
|
776
781
|
|
|
777
|
-
class
|
|
778
|
-
|
|
779
|
-
):
|
|
780
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
781
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
782
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
782
|
+
class PlanFragmentPrices(PriceFragment):
|
|
783
|
+
pass
|
|
783
784
|
|
|
784
785
|
|
|
785
|
-
class
|
|
786
|
-
|
|
787
|
-
):
|
|
788
|
-
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
789
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
790
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
786
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
787
|
+
pass
|
|
791
788
|
|
|
792
789
|
|
|
793
|
-
class
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
790
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
791
|
+
duration: float
|
|
792
|
+
units: TrialPeriodUnits
|
|
793
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
794
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
795
|
+
alias="trialEndBehavior", default=None
|
|
796
|
+
)
|
|
797
797
|
|
|
798
798
|
|
|
799
|
-
class
|
|
800
|
-
|
|
799
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
800
|
+
limit: float
|
|
801
801
|
|
|
802
802
|
|
|
803
803
|
class SubscriptionFragment(BaseModel):
|
|
@@ -986,35 +986,6 @@ 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
|
-
|
|
1018
989
|
class CouponFragment(BaseModel):
|
|
1019
990
|
id: str
|
|
1020
991
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1049,6 +1020,35 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1049
1020
|
status: SyncStatus
|
|
1050
1021
|
|
|
1051
1022
|
|
|
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")
|
|
@@ -1249,14 +1249,31 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1249
1249
|
pass
|
|
1250
1250
|
|
|
1251
1251
|
|
|
1252
|
-
class
|
|
1252
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1253
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1254
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1255
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1256
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1257
|
+
default=None
|
|
1258
|
+
)
|
|
1259
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1260
|
+
default=None
|
|
1261
|
+
)
|
|
1262
|
+
|
|
1263
|
+
|
|
1264
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1265
|
+
amount: float
|
|
1266
|
+
currency: Currency
|
|
1267
|
+
|
|
1268
|
+
|
|
1269
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1270
|
+
id: str
|
|
1271
|
+
ref_id: str = Field(alias="refId")
|
|
1253
1272
|
display_name: str = Field(alias="displayName")
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
start_date: Any = Field(alias="startDate")
|
|
1259
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1273
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1274
|
+
feature_units_plural: Optional[str] = Field(
|
|
1275
|
+
alias="featureUnitsPlural", default=None
|
|
1276
|
+
)
|
|
1260
1277
|
|
|
1261
1278
|
|
|
1262
1279
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
@@ -1428,33 +1445,6 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1428
1445
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1429
1446
|
|
|
1430
1447
|
|
|
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
1448
|
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1459
1449
|
addon_id: str = Field(alias="addonId")
|
|
1460
1450
|
description: Optional[str] = Field(default=None)
|
|
@@ -1558,6 +1548,16 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1558
1548
|
pass
|
|
1559
1549
|
|
|
1560
1550
|
|
|
1551
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1552
|
+
display_name: str = Field(alias="displayName")
|
|
1553
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1554
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1555
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1556
|
+
period: PromotionalEntitlementPeriod
|
|
1557
|
+
start_date: Any = Field(alias="startDate")
|
|
1558
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1559
|
+
|
|
1560
|
+
|
|
1561
1561
|
class CustomerPortalFragment(BaseModel):
|
|
1562
1562
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1563
1563
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -1785,39 +1785,6 @@ 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
|
-
|
|
1821
1788
|
class MockPaywallPriceFragment(BaseModel):
|
|
1822
1789
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1823
1790
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1852,6 +1819,39 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1852
1819
|
display_name: str = Field(alias="displayName")
|
|
1853
1820
|
|
|
1854
1821
|
|
|
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,39 +2763,39 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2763
2763
|
|
|
2764
2764
|
AddonDependencyFragment.model_rebuild()
|
|
2765
2765
|
PriceTierFragment.model_rebuild()
|
|
2766
|
-
OveragePriceFragment.model_rebuild()
|
|
2767
2766
|
PriceFragment.model_rebuild()
|
|
2768
2767
|
PackageEntitlementFragment.model_rebuild()
|
|
2768
|
+
OveragePriceFragment.model_rebuild()
|
|
2769
2769
|
AddonFragment.model_rebuild()
|
|
2770
2770
|
FeatureFragment.model_rebuild()
|
|
2771
2771
|
EntitlementFragment.model_rebuild()
|
|
2772
|
-
SubscriptionInvoiceFragment.model_rebuild()
|
|
2773
|
-
TotalPriceFragment.model_rebuild()
|
|
2774
|
-
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2775
2772
|
CustomerResourceFragment.model_rebuild()
|
|
2776
2773
|
SlimCustomerFragment.model_rebuild()
|
|
2774
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2775
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2776
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2777
|
+
TotalPriceFragment.model_rebuild()
|
|
2778
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2777
2779
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2778
2780
|
ProductFragment.model_rebuild()
|
|
2779
2781
|
PlanFragment.model_rebuild()
|
|
2780
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2781
|
-
SubscriptionTrialConfigurationFragment.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
|
-
PromotionalEntitlementFragment.model_rebuild()
|
|
2788
2787
|
CouponFragment.model_rebuild()
|
|
2788
|
+
PromotionalEntitlementFragment.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
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2795
|
-
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2796
2794
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2795
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2797
2796
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2798
2797
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2798
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2799
2799
|
CustomerPortalFragment.model_rebuild()
|
|
2800
2800
|
CustomerStatisticsFragment.model_rebuild()
|
|
2801
2801
|
CustomerWithSubscriptionsFragment.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
|
-
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2809
2808
|
MockPaywallPriceFragment.model_rebuild()
|
|
2809
|
+
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2810
2810
|
MockPaywallAddonFragment.model_rebuild()
|
|
2811
2811
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2812
2812
|
MockPaywallPlanFragment.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -477,6 +477,7 @@ class CheckoutStateInput(BaseModel):
|
|
|
477
477
|
)
|
|
478
478
|
customer_id: str = Field(alias="customerId")
|
|
479
479
|
plan_id: str = Field(alias="planId")
|
|
480
|
+
product_id: Optional[str] = Field(alias="productId", default=None)
|
|
480
481
|
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
481
482
|
|
|
482
483
|
|
|
@@ -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=jled7Y07nIQWa7OO5VLwktmUnkgXqierwG2Dd4Ooor4,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
|
|
@@ -144,7 +144,7 @@ stigg/generated/grant_promotional_entitlements.py,sha256=72PRYuqecL-0SkWb7deygkh
|
|
|
144
144
|
stigg/generated/import_customer.py,sha256=yEtrEB7T-Aykv3AUl-rAQz2XL6hKL0j-7JL3h-xi87o,403
|
|
145
145
|
stigg/generated/import_customer_bulk.py,sha256=miLn2ScWlPOH1IipltY5Vgd-ZQ_BkBk9t3-EsLvU5ZQ,284
|
|
146
146
|
stigg/generated/import_subscriptions_bulk.py,sha256=QgitpZkjE7eBhP1o5W0PTVAbKOvz61dNoeBAWupIcgU,297
|
|
147
|
-
stigg/generated/input_types.py,sha256=
|
|
147
|
+
stigg/generated/input_types.py,sha256=tSlxNVgPETwlsB-A07cx8STFJYOiUDym6yJ9PCimN_0,191275
|
|
148
148
|
stigg/generated/migrate_subscription_to_latest.py,sha256=qQDwH7EodYAeJFb62IIl-MAEB5MbthgCJ0v1RMxpdYk,516
|
|
149
149
|
stigg/generated/preview_next_invoice.py,sha256=MiQ4Gv7Ve1Hv60xhaQi7uj82aq0xLP2UB-gjvcQdOL8,478
|
|
150
150
|
stigg/generated/preview_subscription.py,sha256=Qo2vlFs7sFzqaE8J_e-EHTRfLvG46lko-dcJMxDSCR0,475
|
|
@@ -160,7 +160,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
|
|
|
160
160
|
stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
|
|
161
161
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
162
162
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
163
|
-
stigg_api_client_v2-2.
|
|
164
|
-
stigg_api_client_v2-2.
|
|
165
|
-
stigg_api_client_v2-2.
|
|
166
|
-
stigg_api_client_v2-2.
|
|
163
|
+
stigg_api_client_v2-2.304.1.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.304.1.dist-info/METADATA,sha256=qIAum0GQ5bbjBJvBjzB6gy84ovDwSqMrDF_MK6NvTLE,2258
|
|
165
|
+
stigg_api_client_v2-2.304.1.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.304.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|