stigg-api-client-v2 2.419.2__py3-none-any.whl → 2.437.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of stigg-api-client-v2 might be problematic. Click here for more details.
- stigg/generated/enums.py +1 -0
- stigg/generated/fragments.py +250 -250
- {stigg_api_client_v2-2.419.2.dist-info → stigg_api_client_v2-2.437.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.419.2.dist-info → stigg_api_client_v2-2.437.0.dist-info}/RECORD +6 -6
- {stigg_api_client_v2-2.419.2.dist-info → stigg_api_client_v2-2.437.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.419.2.dist-info → stigg_api_client_v2-2.437.0.dist-info}/WHEEL +0 -0
stigg/generated/enums.py
CHANGED
stigg/generated/fragments.py
CHANGED
|
@@ -60,39 +60,6 @@ class AddonDependencyFragment(BaseModel):
|
|
|
60
60
|
description: Optional[str] = Field(default=None)
|
|
61
61
|
|
|
62
62
|
|
|
63
|
-
class PackageEntitlementFragment(BaseModel):
|
|
64
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
65
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
66
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
67
|
-
feature_id: str = Field(alias="featureId")
|
|
68
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
69
|
-
alias="resetPeriod", default=None
|
|
70
|
-
)
|
|
71
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
72
|
-
alias="hiddenFromWidgets", default=None
|
|
73
|
-
)
|
|
74
|
-
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
75
|
-
display_name_override: Optional[str] = Field(
|
|
76
|
-
alias="displayNameOverride", default=None
|
|
77
|
-
)
|
|
78
|
-
feature: "PackageEntitlementFragmentFeature"
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
class PackageEntitlementFragmentFeature(BaseModel):
|
|
82
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
83
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
84
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
85
|
-
feature_units_plural: Optional[str] = Field(
|
|
86
|
-
alias="featureUnitsPlural", default=None
|
|
87
|
-
)
|
|
88
|
-
display_name: str = Field(alias="displayName")
|
|
89
|
-
description: Optional[str] = Field(default=None)
|
|
90
|
-
ref_id: str = Field(alias="refId")
|
|
91
|
-
additional_meta_data: Optional[Any] = Field(
|
|
92
|
-
alias="additionalMetaData", default=None
|
|
93
|
-
)
|
|
94
|
-
|
|
95
|
-
|
|
96
63
|
class PriceTierFragment(BaseModel):
|
|
97
64
|
up_to: Optional[float] = Field(alias="upTo", default=None)
|
|
98
65
|
unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
|
|
@@ -149,6 +116,39 @@ class PriceFragmentFeature(BaseModel):
|
|
|
149
116
|
description: Optional[str] = Field(default=None)
|
|
150
117
|
|
|
151
118
|
|
|
119
|
+
class PackageEntitlementFragment(BaseModel):
|
|
120
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
121
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
122
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
123
|
+
feature_id: str = Field(alias="featureId")
|
|
124
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
125
|
+
alias="resetPeriod", default=None
|
|
126
|
+
)
|
|
127
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
128
|
+
alias="hiddenFromWidgets", default=None
|
|
129
|
+
)
|
|
130
|
+
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
131
|
+
display_name_override: Optional[str] = Field(
|
|
132
|
+
alias="displayNameOverride", default=None
|
|
133
|
+
)
|
|
134
|
+
feature: "PackageEntitlementFragmentFeature"
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
class PackageEntitlementFragmentFeature(BaseModel):
|
|
138
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
139
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
140
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
141
|
+
feature_units_plural: Optional[str] = Field(
|
|
142
|
+
alias="featureUnitsPlural", default=None
|
|
143
|
+
)
|
|
144
|
+
display_name: str = Field(alias="displayName")
|
|
145
|
+
description: Optional[str] = Field(default=None)
|
|
146
|
+
ref_id: str = Field(alias="refId")
|
|
147
|
+
additional_meta_data: Optional[Any] = Field(
|
|
148
|
+
alias="additionalMetaData", default=None
|
|
149
|
+
)
|
|
150
|
+
|
|
151
|
+
|
|
152
152
|
class OveragePriceFragment(BaseModel):
|
|
153
153
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
154
154
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -299,28 +299,6 @@ class EntitlementFragmentFeature(FeatureFragment):
|
|
|
299
299
|
pass
|
|
300
300
|
|
|
301
301
|
|
|
302
|
-
class CustomerResourceFragment(BaseModel):
|
|
303
|
-
resource_id: str = Field(alias="resourceId")
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
307
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
308
|
-
display_name: str = Field(alias="displayName")
|
|
309
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
310
|
-
default=None
|
|
311
|
-
)
|
|
312
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
316
|
-
pass
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
320
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
321
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
322
|
-
|
|
323
|
-
|
|
324
302
|
class ProductFragment(BaseModel):
|
|
325
303
|
ref_id: str = Field(alias="refId")
|
|
326
304
|
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
@@ -342,6 +320,24 @@ class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
|
342
320
|
display_name: str = Field(alias="displayName")
|
|
343
321
|
|
|
344
322
|
|
|
323
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
324
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
325
|
+
display_name: str = Field(alias="displayName")
|
|
326
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
327
|
+
default=None
|
|
328
|
+
)
|
|
329
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
330
|
+
|
|
331
|
+
|
|
332
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
333
|
+
pass
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
337
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
338
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
339
|
+
|
|
340
|
+
|
|
345
341
|
class PlanFragment(BaseModel):
|
|
346
342
|
id: str
|
|
347
343
|
ref_id: str = Field(alias="refId")
|
|
@@ -423,49 +419,72 @@ class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
|
423
419
|
limit: float
|
|
424
420
|
|
|
425
421
|
|
|
426
|
-
class
|
|
427
|
-
|
|
422
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
423
|
+
billing_id: str = Field(alias="billingId")
|
|
424
|
+
status: SubscriptionInvoiceStatus
|
|
425
|
+
created_at: Any = Field(alias="createdAt")
|
|
426
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
427
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
428
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
429
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
430
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
431
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
432
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
433
|
+
alias="billingReason", default=None
|
|
434
|
+
)
|
|
435
|
+
currency: Optional[str] = Field(default=None)
|
|
436
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
437
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
438
|
+
alias="subTotalExcludingTax", default=None
|
|
439
|
+
)
|
|
440
|
+
total: Optional[float] = Field(default=None)
|
|
441
|
+
total_excluding_tax: Optional[float] = Field(
|
|
442
|
+
alias="totalExcludingTax", default=None
|
|
443
|
+
)
|
|
444
|
+
tax: Optional[float] = Field(default=None)
|
|
445
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
446
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
428
447
|
|
|
429
448
|
|
|
430
|
-
class
|
|
449
|
+
class SubscriptionScheduledUpdateData(BaseModel):
|
|
431
450
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
432
451
|
alias="subscriptionScheduleType"
|
|
433
452
|
)
|
|
434
453
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
435
454
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
436
|
-
target_package: Optional["
|
|
455
|
+
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
437
456
|
alias="targetPackage", default=None
|
|
438
457
|
)
|
|
439
458
|
schedule_variables: Optional[
|
|
440
459
|
Annotated[
|
|
441
460
|
Union[
|
|
442
|
-
"
|
|
443
|
-
"
|
|
444
|
-
"
|
|
445
|
-
"
|
|
446
|
-
"
|
|
447
|
-
"
|
|
448
|
-
"
|
|
449
|
-
"
|
|
461
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
462
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
463
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
464
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
465
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
466
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
467
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
468
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
450
469
|
],
|
|
451
470
|
Field(discriminator="typename__"),
|
|
452
471
|
]
|
|
453
472
|
] = Field(alias="scheduleVariables", default=None)
|
|
454
473
|
|
|
455
474
|
|
|
456
|
-
class
|
|
475
|
+
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
457
476
|
id: str
|
|
458
477
|
ref_id: str = Field(alias="refId")
|
|
459
478
|
display_name: str = Field(alias="displayName")
|
|
460
479
|
|
|
461
480
|
|
|
462
|
-
class
|
|
481
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
463
482
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
464
483
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
465
484
|
new_quantity: float = Field(alias="newQuantity")
|
|
466
485
|
|
|
467
486
|
|
|
468
|
-
class
|
|
487
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
469
488
|
BaseModel
|
|
470
489
|
):
|
|
471
490
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -473,53 +492,55 @@ class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVaria
|
|
|
473
492
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
474
493
|
|
|
475
494
|
|
|
476
|
-
class
|
|
495
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
477
496
|
BaseModel
|
|
478
497
|
):
|
|
479
498
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
480
499
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
481
500
|
|
|
482
501
|
|
|
483
|
-
class
|
|
502
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
484
503
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
485
504
|
|
|
486
505
|
|
|
487
|
-
class
|
|
506
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
507
|
+
BaseModel
|
|
508
|
+
):
|
|
488
509
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
489
510
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
490
511
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
491
512
|
billable_features: Optional[
|
|
492
513
|
List[
|
|
493
|
-
"
|
|
514
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
494
515
|
]
|
|
495
516
|
] = Field(alias="billableFeatures", default=None)
|
|
496
517
|
addons: Optional[
|
|
497
518
|
List[
|
|
498
|
-
"
|
|
519
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
499
520
|
]
|
|
500
521
|
] = Field(default=None)
|
|
501
522
|
price_overrides: Optional[
|
|
502
523
|
List[
|
|
503
|
-
"
|
|
524
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
504
525
|
]
|
|
505
526
|
] = Field(alias="priceOverrides", default=None)
|
|
506
527
|
|
|
507
528
|
|
|
508
|
-
class
|
|
529
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
509
530
|
BaseModel
|
|
510
531
|
):
|
|
511
532
|
feature_id: str = Field(alias="featureId")
|
|
512
533
|
quantity: float
|
|
513
534
|
|
|
514
535
|
|
|
515
|
-
class
|
|
536
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
516
537
|
BaseModel
|
|
517
538
|
):
|
|
518
539
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
519
540
|
quantity: float
|
|
520
541
|
|
|
521
542
|
|
|
522
|
-
class
|
|
543
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
523
544
|
BaseModel
|
|
524
545
|
):
|
|
525
546
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -527,39 +548,43 @@ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPrice
|
|
|
527
548
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
528
549
|
|
|
529
550
|
|
|
530
|
-
class
|
|
551
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
531
552
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
532
553
|
plan_ref_id: str = Field(alias="planRefId")
|
|
533
554
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
534
555
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
535
556
|
billable_features: Optional[
|
|
536
557
|
List[
|
|
537
|
-
"
|
|
558
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
538
559
|
]
|
|
539
560
|
] = Field(alias="billableFeatures", default=None)
|
|
540
561
|
addons: Optional[
|
|
541
|
-
List[
|
|
562
|
+
List[
|
|
563
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
564
|
+
]
|
|
542
565
|
] = Field(default=None)
|
|
543
566
|
price_overrides: Optional[
|
|
544
567
|
List[
|
|
545
|
-
"
|
|
568
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
546
569
|
]
|
|
547
570
|
] = Field(alias="priceOverrides", default=None)
|
|
548
571
|
|
|
549
572
|
|
|
550
|
-
class
|
|
573
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
551
574
|
BaseModel
|
|
552
575
|
):
|
|
553
576
|
feature_id: str = Field(alias="featureId")
|
|
554
577
|
quantity: float
|
|
555
578
|
|
|
556
579
|
|
|
557
|
-
class
|
|
580
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
581
|
+
BaseModel
|
|
582
|
+
):
|
|
558
583
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
559
584
|
quantity: float
|
|
560
585
|
|
|
561
586
|
|
|
562
|
-
class
|
|
587
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
563
588
|
BaseModel
|
|
564
589
|
):
|
|
565
590
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -567,7 +592,7 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverr
|
|
|
567
592
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
568
593
|
|
|
569
594
|
|
|
570
|
-
class
|
|
595
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
571
596
|
BaseModel
|
|
572
597
|
):
|
|
573
598
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -575,51 +600,76 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariab
|
|
|
575
600
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
576
601
|
|
|
577
602
|
|
|
578
|
-
class
|
|
603
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
604
|
+
BaseModel
|
|
605
|
+
):
|
|
579
606
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
580
607
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
581
608
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
582
609
|
|
|
583
610
|
|
|
584
|
-
class
|
|
611
|
+
class CustomerResourceFragment(BaseModel):
|
|
612
|
+
resource_id: str = Field(alias="resourceId")
|
|
613
|
+
|
|
614
|
+
|
|
615
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
616
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
617
|
+
|
|
618
|
+
|
|
619
|
+
class TotalPriceFragment(BaseModel):
|
|
620
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
621
|
+
total: "TotalPriceFragmentTotal"
|
|
622
|
+
|
|
623
|
+
|
|
624
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
625
|
+
amount: float
|
|
626
|
+
currency: Currency
|
|
627
|
+
|
|
628
|
+
|
|
629
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
630
|
+
amount: float
|
|
631
|
+
currency: Currency
|
|
632
|
+
|
|
633
|
+
|
|
634
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
585
635
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
586
636
|
alias="subscriptionScheduleType"
|
|
587
637
|
)
|
|
588
638
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
589
639
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
590
|
-
target_package: Optional["
|
|
640
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
591
641
|
alias="targetPackage", default=None
|
|
592
642
|
)
|
|
593
643
|
schedule_variables: Optional[
|
|
594
644
|
Annotated[
|
|
595
645
|
Union[
|
|
596
|
-
"
|
|
597
|
-
"
|
|
598
|
-
"
|
|
599
|
-
"
|
|
600
|
-
"
|
|
601
|
-
"
|
|
602
|
-
"
|
|
603
|
-
"
|
|
646
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
647
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
648
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
649
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
650
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
651
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
652
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
653
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
604
654
|
],
|
|
605
655
|
Field(discriminator="typename__"),
|
|
606
656
|
]
|
|
607
657
|
] = Field(alias="scheduleVariables", default=None)
|
|
608
658
|
|
|
609
659
|
|
|
610
|
-
class
|
|
660
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
611
661
|
id: str
|
|
612
662
|
ref_id: str = Field(alias="refId")
|
|
613
663
|
display_name: str = Field(alias="displayName")
|
|
614
664
|
|
|
615
665
|
|
|
616
|
-
class
|
|
666
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
617
667
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
618
668
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
619
669
|
new_quantity: float = Field(alias="newQuantity")
|
|
620
670
|
|
|
621
671
|
|
|
622
|
-
class
|
|
672
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
623
673
|
BaseModel
|
|
624
674
|
):
|
|
625
675
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -627,55 +677,53 @@ class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVa
|
|
|
627
677
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
628
678
|
|
|
629
679
|
|
|
630
|
-
class
|
|
680
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
631
681
|
BaseModel
|
|
632
682
|
):
|
|
633
683
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
634
684
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
635
685
|
|
|
636
686
|
|
|
637
|
-
class
|
|
687
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
638
688
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
639
689
|
|
|
640
690
|
|
|
641
|
-
class
|
|
642
|
-
BaseModel
|
|
643
|
-
):
|
|
691
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
644
692
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
645
693
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
646
694
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
647
695
|
billable_features: Optional[
|
|
648
696
|
List[
|
|
649
|
-
"
|
|
697
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
650
698
|
]
|
|
651
699
|
] = Field(alias="billableFeatures", default=None)
|
|
652
700
|
addons: Optional[
|
|
653
701
|
List[
|
|
654
|
-
"
|
|
702
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
655
703
|
]
|
|
656
704
|
] = Field(default=None)
|
|
657
705
|
price_overrides: Optional[
|
|
658
706
|
List[
|
|
659
|
-
"
|
|
707
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
660
708
|
]
|
|
661
709
|
] = Field(alias="priceOverrides", default=None)
|
|
662
710
|
|
|
663
711
|
|
|
664
|
-
class
|
|
712
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
665
713
|
BaseModel
|
|
666
714
|
):
|
|
667
715
|
feature_id: str = Field(alias="featureId")
|
|
668
716
|
quantity: float
|
|
669
717
|
|
|
670
718
|
|
|
671
|
-
class
|
|
719
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
672
720
|
BaseModel
|
|
673
721
|
):
|
|
674
722
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
675
723
|
quantity: float
|
|
676
724
|
|
|
677
725
|
|
|
678
|
-
class
|
|
726
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
679
727
|
BaseModel
|
|
680
728
|
):
|
|
681
729
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -683,43 +731,39 @@ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPr
|
|
|
683
731
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
684
732
|
|
|
685
733
|
|
|
686
|
-
class
|
|
734
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
687
735
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
688
736
|
plan_ref_id: str = Field(alias="planRefId")
|
|
689
737
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
690
738
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
691
739
|
billable_features: Optional[
|
|
692
740
|
List[
|
|
693
|
-
"
|
|
741
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
694
742
|
]
|
|
695
743
|
] = Field(alias="billableFeatures", default=None)
|
|
696
744
|
addons: Optional[
|
|
697
|
-
List[
|
|
698
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
699
|
-
]
|
|
745
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
700
746
|
] = Field(default=None)
|
|
701
747
|
price_overrides: Optional[
|
|
702
748
|
List[
|
|
703
|
-
"
|
|
749
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
704
750
|
]
|
|
705
751
|
] = Field(alias="priceOverrides", default=None)
|
|
706
752
|
|
|
707
753
|
|
|
708
|
-
class
|
|
754
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
709
755
|
BaseModel
|
|
710
756
|
):
|
|
711
757
|
feature_id: str = Field(alias="featureId")
|
|
712
758
|
quantity: float
|
|
713
759
|
|
|
714
760
|
|
|
715
|
-
class
|
|
716
|
-
BaseModel
|
|
717
|
-
):
|
|
761
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
718
762
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
719
763
|
quantity: float
|
|
720
764
|
|
|
721
765
|
|
|
722
|
-
class
|
|
766
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
723
767
|
BaseModel
|
|
724
768
|
):
|
|
725
769
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -727,7 +771,7 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOv
|
|
|
727
771
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
728
772
|
|
|
729
773
|
|
|
730
|
-
class
|
|
774
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
731
775
|
BaseModel
|
|
732
776
|
):
|
|
733
777
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -735,56 +779,12 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVar
|
|
|
735
779
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
736
780
|
|
|
737
781
|
|
|
738
|
-
class
|
|
739
|
-
BaseModel
|
|
740
|
-
):
|
|
782
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
741
783
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
742
784
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
743
785
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
744
786
|
|
|
745
787
|
|
|
746
|
-
class SubscriptionInvoiceFragment(BaseModel):
|
|
747
|
-
billing_id: str = Field(alias="billingId")
|
|
748
|
-
status: SubscriptionInvoiceStatus
|
|
749
|
-
created_at: Any = Field(alias="createdAt")
|
|
750
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
751
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
752
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
753
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
754
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
755
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
756
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
757
|
-
alias="billingReason", default=None
|
|
758
|
-
)
|
|
759
|
-
currency: Optional[str] = Field(default=None)
|
|
760
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
761
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
762
|
-
alias="subTotalExcludingTax", default=None
|
|
763
|
-
)
|
|
764
|
-
total: Optional[float] = Field(default=None)
|
|
765
|
-
total_excluding_tax: Optional[float] = Field(
|
|
766
|
-
alias="totalExcludingTax", default=None
|
|
767
|
-
)
|
|
768
|
-
tax: Optional[float] = Field(default=None)
|
|
769
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
770
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
class TotalPriceFragment(BaseModel):
|
|
774
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
775
|
-
total: "TotalPriceFragmentTotal"
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
779
|
-
amount: float
|
|
780
|
-
currency: Currency
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
784
|
-
amount: float
|
|
785
|
-
currency: Currency
|
|
786
|
-
|
|
787
|
-
|
|
788
788
|
class SlimCustomerFragment(BaseModel):
|
|
789
789
|
id: str
|
|
790
790
|
name: Optional[str] = Field(default=None)
|
|
@@ -1257,11 +1257,41 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1257
1257
|
pass
|
|
1258
1258
|
|
|
1259
1259
|
|
|
1260
|
-
class
|
|
1261
|
-
addon_id: str = Field(alias="addonId")
|
|
1262
|
-
description: Optional[str] = Field(default=None)
|
|
1260
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1263
1261
|
display_name: str = Field(alias="displayName")
|
|
1264
|
-
|
|
1262
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1263
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1264
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1265
|
+
period: PromotionalEntitlementPeriod
|
|
1266
|
+
start_date: Any = Field(alias="startDate")
|
|
1267
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1268
|
+
|
|
1269
|
+
|
|
1270
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1271
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1272
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1273
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1274
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1275
|
+
default=None
|
|
1276
|
+
)
|
|
1277
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1278
|
+
default=None
|
|
1279
|
+
)
|
|
1280
|
+
|
|
1281
|
+
|
|
1282
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1283
|
+
amount: float
|
|
1284
|
+
currency: Currency
|
|
1285
|
+
|
|
1286
|
+
|
|
1287
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1288
|
+
id: str
|
|
1289
|
+
ref_id: str = Field(alias="refId")
|
|
1290
|
+
display_name: str = Field(alias="displayName")
|
|
1291
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1292
|
+
feature_units_plural: Optional[str] = Field(
|
|
1293
|
+
alias="featureUnitsPlural", default=None
|
|
1294
|
+
)
|
|
1265
1295
|
|
|
1266
1296
|
|
|
1267
1297
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
@@ -1433,31 +1463,11 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1433
1463
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1434
1464
|
|
|
1435
1465
|
|
|
1436
|
-
class
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1440
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1441
|
-
default=None
|
|
1442
|
-
)
|
|
1443
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1444
|
-
default=None
|
|
1445
|
-
)
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1449
|
-
amount: float
|
|
1450
|
-
currency: Currency
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1454
|
-
id: str
|
|
1455
|
-
ref_id: str = Field(alias="refId")
|
|
1466
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1467
|
+
addon_id: str = Field(alias="addonId")
|
|
1468
|
+
description: Optional[str] = Field(default=None)
|
|
1456
1469
|
display_name: str = Field(alias="displayName")
|
|
1457
|
-
|
|
1458
|
-
feature_units_plural: Optional[str] = Field(
|
|
1459
|
-
alias="featureUnitsPlural", default=None
|
|
1460
|
-
)
|
|
1470
|
+
quantity: int
|
|
1461
1471
|
|
|
1462
1472
|
|
|
1463
1473
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
@@ -1556,16 +1566,6 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1556
1566
|
pass
|
|
1557
1567
|
|
|
1558
1568
|
|
|
1559
|
-
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1560
|
-
display_name: str = Field(alias="displayName")
|
|
1561
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1562
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1563
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1564
|
-
period: PromotionalEntitlementPeriod
|
|
1565
|
-
start_date: Any = Field(alias="startDate")
|
|
1566
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
1569
|
class CustomerPortalFragment(BaseModel):
|
|
1570
1570
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1571
1571
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -1793,39 +1793,6 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1793
1793
|
description: Optional[str] = Field(default=None)
|
|
1794
1794
|
|
|
1795
1795
|
|
|
1796
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1797
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1798
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1799
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1800
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1801
|
-
alias="resetPeriod", default=None
|
|
1802
|
-
)
|
|
1803
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1804
|
-
alias="hiddenFromWidgets", default=None
|
|
1805
|
-
)
|
|
1806
|
-
display_name_override: Optional[str] = Field(
|
|
1807
|
-
alias="displayNameOverride", default=None
|
|
1808
|
-
)
|
|
1809
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1810
|
-
default=None
|
|
1811
|
-
)
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1815
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1816
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1817
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1818
|
-
feature_units_plural: Optional[str] = Field(
|
|
1819
|
-
alias="featureUnitsPlural", default=None
|
|
1820
|
-
)
|
|
1821
|
-
display_name: str = Field(alias="displayName")
|
|
1822
|
-
description: Optional[str] = Field(default=None)
|
|
1823
|
-
ref_id: str = Field(alias="refId")
|
|
1824
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1825
|
-
alias="additionalMetaData", default=None
|
|
1826
|
-
)
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
1796
|
class MockPaywallPriceFragment(BaseModel):
|
|
1830
1797
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1831
1798
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1860,6 +1827,39 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1860
1827
|
display_name: str = Field(alias="displayName")
|
|
1861
1828
|
|
|
1862
1829
|
|
|
1830
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1831
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1832
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1833
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1834
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1835
|
+
alias="resetPeriod", default=None
|
|
1836
|
+
)
|
|
1837
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1838
|
+
alias="hiddenFromWidgets", default=None
|
|
1839
|
+
)
|
|
1840
|
+
display_name_override: Optional[str] = Field(
|
|
1841
|
+
alias="displayNameOverride", default=None
|
|
1842
|
+
)
|
|
1843
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1844
|
+
default=None
|
|
1845
|
+
)
|
|
1846
|
+
|
|
1847
|
+
|
|
1848
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1849
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1850
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1851
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1852
|
+
feature_units_plural: Optional[str] = Field(
|
|
1853
|
+
alias="featureUnitsPlural", default=None
|
|
1854
|
+
)
|
|
1855
|
+
display_name: str = Field(alias="displayName")
|
|
1856
|
+
description: Optional[str] = Field(default=None)
|
|
1857
|
+
ref_id: str = Field(alias="refId")
|
|
1858
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1859
|
+
alias="additionalMetaData", default=None
|
|
1860
|
+
)
|
|
1861
|
+
|
|
1862
|
+
|
|
1863
1863
|
class MockPaywallAddonFragment(BaseModel):
|
|
1864
1864
|
ref_id: str = Field(alias="refId")
|
|
1865
1865
|
display_name: str = Field(alias="displayName")
|
|
@@ -2770,22 +2770,22 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2770
2770
|
|
|
2771
2771
|
|
|
2772
2772
|
AddonDependencyFragment.model_rebuild()
|
|
2773
|
-
PackageEntitlementFragment.model_rebuild()
|
|
2774
2773
|
PriceTierFragment.model_rebuild()
|
|
2775
2774
|
PriceFragment.model_rebuild()
|
|
2775
|
+
PackageEntitlementFragment.model_rebuild()
|
|
2776
2776
|
OveragePriceFragment.model_rebuild()
|
|
2777
2777
|
AddonFragment.model_rebuild()
|
|
2778
2778
|
FeatureFragment.model_rebuild()
|
|
2779
2779
|
EntitlementFragment.model_rebuild()
|
|
2780
|
-
CustomerResourceFragment.model_rebuild()
|
|
2781
|
-
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2782
2780
|
ProductFragment.model_rebuild()
|
|
2781
|
+
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2783
2782
|
PlanFragment.model_rebuild()
|
|
2784
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2785
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2786
|
-
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2787
2783
|
SubscriptionInvoiceFragment.model_rebuild()
|
|
2784
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2785
|
+
CustomerResourceFragment.model_rebuild()
|
|
2786
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2788
2787
|
TotalPriceFragment.model_rebuild()
|
|
2788
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2789
2789
|
SlimCustomerFragment.model_rebuild()
|
|
2790
2790
|
SubscriptionFragment.model_rebuild()
|
|
2791
2791
|
ApplySubscriptionFragment.model_rebuild()
|
|
@@ -2799,11 +2799,11 @@ CheckoutStateFragment.model_rebuild()
|
|
|
2799
2799
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2800
2800
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2801
2801
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2802
|
-
|
|
2803
|
-
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2802
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2804
2803
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2804
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2805
|
+
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2805
2806
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2806
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2807
2807
|
CustomerPortalFragment.model_rebuild()
|
|
2808
2808
|
CustomerStatisticsFragment.model_rebuild()
|
|
2809
2809
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
|
@@ -2813,8 +2813,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
2813
2813
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
2814
2814
|
LayoutConfigurationFragment.model_rebuild()
|
|
2815
2815
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
2816
|
-
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2817
2816
|
MockPaywallPriceFragment.model_rebuild()
|
|
2817
|
+
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2818
2818
|
MockPaywallAddonFragment.model_rebuild()
|
|
2819
2819
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2820
2820
|
MockPaywallPlanFragment.model_rebuild()
|
|
@@ -119,11 +119,11 @@ stigg/generated/client.py,sha256=NgGx0jZs30ZsxuITO15EVz6K4LjJE5XocrwRuGcjm8w,169
|
|
|
119
119
|
stigg/generated/create_subscription.py,sha256=vbpBJ_daXHcQDtvU3vbwSr2E7s4VGRHxqPavyTV3Mtk,457
|
|
120
120
|
stigg/generated/delegate_subscription_to_customer.py,sha256=0TgQDO0Hk-z7X7PGtqhvciqa8IjkToK9cpiX3Kqu_UY,561
|
|
121
121
|
stigg/generated/detach_customer_payment_method.py,sha256=ACXlC2xsGaUP723OrayFZQ9SbXxe8TtVUYdG1gqcYFc,523
|
|
122
|
-
stigg/generated/enums.py,sha256=
|
|
122
|
+
stigg/generated/enums.py,sha256=9ioQN2tFCIyy3cENl_nhueILHgK6xJ4_XHFFmGztc0A,35296
|
|
123
123
|
stigg/generated/estimate_subscription.py,sha256=c0_vg0A_Hi8fdjeGudWZ0WziUF9jcjX5rlRitGMAMaQ,479
|
|
124
124
|
stigg/generated/estimate_subscription_update.py,sha256=ZYIFqqHHDfzhrOn95QnMmPNTXZ7JrKWRlUFzk8fWwKA,528
|
|
125
125
|
stigg/generated/exceptions.py,sha256=OQu-ZYCCV4VyMWTd1HR8gIjIK2CrA_JMlFxqOAJugWY,2411
|
|
126
|
-
stigg/generated/fragments.py,sha256=
|
|
126
|
+
stigg/generated/fragments.py,sha256=Z56OotrPkfTsNK8NqFGLpft1PhDw64bYwv9eCArhoFI,100917
|
|
127
127
|
stigg/generated/get_active_subscriptions.py,sha256=ngZ9jr8vzGI59wT8FhUFl46a8j9waoNjeZ1_lrcu2ww,513
|
|
128
128
|
stigg/generated/get_active_subscriptions_list.py,sha256=Awi9al2MXxdt_y7ZnWYZh8U3R9XiX50c7TyO4WZxyhw,541
|
|
129
129
|
stigg/generated/get_checkout_state.py,sha256=SAOXGAND879dwb7R5mr5LPZuPVuMUDwNR5M4mgmHv6w,409
|
|
@@ -160,7 +160,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
|
|
|
160
160
|
stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
|
|
161
161
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
162
162
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
163
|
-
stigg_api_client_v2-2.
|
|
164
|
-
stigg_api_client_v2-2.
|
|
165
|
-
stigg_api_client_v2-2.
|
|
166
|
-
stigg_api_client_v2-2.
|
|
163
|
+
stigg_api_client_v2-2.437.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.437.0.dist-info/METADATA,sha256=Bi3WE_-vAVqaBo_Tj2tvD2HLIG-ucdT6YjGMIfjmyLM,2258
|
|
165
|
+
stigg_api_client_v2-2.437.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.437.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|