stigg-api-client-v2 2.479.0__py3-none-any.whl → 2.481.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 +210 -210
- {stigg_api_client_v2-2.479.0.dist-info → stigg_api_client_v2-2.481.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.479.0.dist-info → stigg_api_client_v2-2.481.0.dist-info}/RECORD +6 -6
- {stigg_api_client_v2-2.479.0.dist-info → stigg_api_client_v2-2.481.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.479.0.dist-info → stigg_api_client_v2-2.481.0.dist-info}/WHEEL +0 -0
stigg/generated/enums.py
CHANGED
|
@@ -446,6 +446,7 @@ class ErrorCode(str, Enum):
|
|
|
446
446
|
CustomerNoBillingId = "CustomerNoBillingId"
|
|
447
447
|
CustomerNotFound = "CustomerNotFound"
|
|
448
448
|
CustomerResourceNotFound = "CustomerResourceNotFound"
|
|
449
|
+
DeprecatedEstimateSubscriptionError = "DeprecatedEstimateSubscriptionError"
|
|
449
450
|
DowngradeBillingPeriodNotSupportedError = "DowngradeBillingPeriodNotSupportedError"
|
|
450
451
|
DraftAddonCantBeArchived = "DraftAddonCantBeArchived"
|
|
451
452
|
DraftPlanCantBeArchived = "DraftPlanCantBeArchived"
|
stigg/generated/fragments.py
CHANGED
|
@@ -80,42 +80,6 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
80
80
|
currency: Currency
|
|
81
81
|
|
|
82
82
|
|
|
83
|
-
class PriceFragment(BaseModel):
|
|
84
|
-
billing_model: BillingModel = Field(alias="billingModel")
|
|
85
|
-
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
86
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
87
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
88
|
-
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
89
|
-
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
90
|
-
billing_country_code: Optional[str] = Field(
|
|
91
|
-
alias="billingCountryCode", default=None
|
|
92
|
-
)
|
|
93
|
-
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
94
|
-
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
95
|
-
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
96
|
-
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
97
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
class PriceFragmentPrice(BaseModel):
|
|
101
|
-
amount: float
|
|
102
|
-
currency: Currency
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
class PriceFragmentTiers(PriceTierFragment):
|
|
106
|
-
pass
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
class PriceFragmentFeature(BaseModel):
|
|
110
|
-
ref_id: str = Field(alias="refId")
|
|
111
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
112
|
-
feature_units_plural: Optional[str] = Field(
|
|
113
|
-
alias="featureUnitsPlural", default=None
|
|
114
|
-
)
|
|
115
|
-
display_name: str = Field(alias="displayName")
|
|
116
|
-
description: Optional[str] = Field(default=None)
|
|
117
|
-
|
|
118
|
-
|
|
119
83
|
class OveragePriceFragment(BaseModel):
|
|
120
84
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
121
85
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -181,6 +145,42 @@ class PackageEntitlementFragmentFeature(BaseModel):
|
|
|
181
145
|
)
|
|
182
146
|
|
|
183
147
|
|
|
148
|
+
class PriceFragment(BaseModel):
|
|
149
|
+
billing_model: BillingModel = Field(alias="billingModel")
|
|
150
|
+
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
151
|
+
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
152
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
153
|
+
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
154
|
+
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
155
|
+
billing_country_code: Optional[str] = Field(
|
|
156
|
+
alias="billingCountryCode", default=None
|
|
157
|
+
)
|
|
158
|
+
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
159
|
+
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
160
|
+
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
161
|
+
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
162
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
class PriceFragmentPrice(BaseModel):
|
|
166
|
+
amount: float
|
|
167
|
+
currency: Currency
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
class PriceFragmentTiers(PriceTierFragment):
|
|
171
|
+
pass
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
class PriceFragmentFeature(BaseModel):
|
|
175
|
+
ref_id: str = Field(alias="refId")
|
|
176
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
177
|
+
feature_units_plural: Optional[str] = Field(
|
|
178
|
+
alias="featureUnitsPlural", default=None
|
|
179
|
+
)
|
|
180
|
+
display_name: str = Field(alias="displayName")
|
|
181
|
+
description: Optional[str] = Field(default=None)
|
|
182
|
+
|
|
183
|
+
|
|
184
184
|
class AddonFragment(BaseModel):
|
|
185
185
|
id: Any
|
|
186
186
|
ref_id: str = Field(alias="refId")
|
|
@@ -331,22 +331,8 @@ class SubscriptionInvoiceFragment(BaseModel):
|
|
|
331
331
|
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
332
332
|
|
|
333
333
|
|
|
334
|
-
class
|
|
335
|
-
|
|
336
|
-
display_name: str = Field(alias="displayName")
|
|
337
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
338
|
-
default=None
|
|
339
|
-
)
|
|
340
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
344
|
-
pass
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
348
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
349
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
334
|
+
class CustomerResourceFragment(BaseModel):
|
|
335
|
+
resource_id: str = Field(alias="resourceId")
|
|
350
336
|
|
|
351
337
|
|
|
352
338
|
class ProductFragment(BaseModel):
|
|
@@ -370,6 +356,24 @@ class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
|
370
356
|
display_name: str = Field(alias="displayName")
|
|
371
357
|
|
|
372
358
|
|
|
359
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
360
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
361
|
+
display_name: str = Field(alias="displayName")
|
|
362
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
363
|
+
default=None
|
|
364
|
+
)
|
|
365
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
369
|
+
pass
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
373
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
374
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
375
|
+
|
|
376
|
+
|
|
373
377
|
class PlanFragment(BaseModel):
|
|
374
378
|
id: Any
|
|
375
379
|
ref_id: str = Field(alias="refId")
|
|
@@ -451,8 +455,8 @@ class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
|
451
455
|
limit: float
|
|
452
456
|
|
|
453
457
|
|
|
454
|
-
class
|
|
455
|
-
|
|
458
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
459
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
456
460
|
|
|
457
461
|
|
|
458
462
|
class TotalPriceFragment(BaseModel):
|
|
@@ -470,49 +474,62 @@ class TotalPriceFragmentTotal(BaseModel):
|
|
|
470
474
|
currency: Currency
|
|
471
475
|
|
|
472
476
|
|
|
473
|
-
class
|
|
474
|
-
|
|
477
|
+
class SlimCustomerFragment(BaseModel):
|
|
478
|
+
id: Any
|
|
479
|
+
name: Optional[str] = Field(default=None)
|
|
480
|
+
email: Optional[str] = Field(default=None)
|
|
481
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
482
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
483
|
+
ref_id: str = Field(alias="refId")
|
|
484
|
+
customer_id: str = Field(alias="customerId")
|
|
485
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
486
|
+
additional_meta_data: Optional[Any] = Field(
|
|
487
|
+
alias="additionalMetaData", default=None
|
|
488
|
+
)
|
|
489
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
490
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
491
|
+
)
|
|
475
492
|
|
|
476
493
|
|
|
477
|
-
class
|
|
494
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
478
495
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
479
496
|
alias="subscriptionScheduleType"
|
|
480
497
|
)
|
|
481
498
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
482
499
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
483
|
-
target_package: Optional["
|
|
500
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
484
501
|
alias="targetPackage", default=None
|
|
485
502
|
)
|
|
486
503
|
schedule_variables: Optional[
|
|
487
504
|
Annotated[
|
|
488
505
|
Union[
|
|
489
|
-
"
|
|
490
|
-
"
|
|
491
|
-
"
|
|
492
|
-
"
|
|
493
|
-
"
|
|
494
|
-
"
|
|
495
|
-
"
|
|
496
|
-
"
|
|
506
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
507
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
508
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
509
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
510
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
511
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
512
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
513
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
497
514
|
],
|
|
498
515
|
Field(discriminator="typename__"),
|
|
499
516
|
]
|
|
500
517
|
] = Field(alias="scheduleVariables", default=None)
|
|
501
518
|
|
|
502
519
|
|
|
503
|
-
class
|
|
520
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
504
521
|
id: Any
|
|
505
522
|
ref_id: str = Field(alias="refId")
|
|
506
523
|
display_name: str = Field(alias="displayName")
|
|
507
524
|
|
|
508
525
|
|
|
509
|
-
class
|
|
526
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
510
527
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
511
528
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
512
529
|
new_quantity: float = Field(alias="newQuantity")
|
|
513
530
|
|
|
514
531
|
|
|
515
|
-
class
|
|
532
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
516
533
|
BaseModel
|
|
517
534
|
):
|
|
518
535
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -520,55 +537,53 @@ class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVa
|
|
|
520
537
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
521
538
|
|
|
522
539
|
|
|
523
|
-
class
|
|
540
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
524
541
|
BaseModel
|
|
525
542
|
):
|
|
526
543
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
527
544
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
528
545
|
|
|
529
546
|
|
|
530
|
-
class
|
|
547
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
531
548
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
532
549
|
|
|
533
550
|
|
|
534
|
-
class
|
|
535
|
-
BaseModel
|
|
536
|
-
):
|
|
551
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
537
552
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
538
553
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
539
554
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
540
555
|
billable_features: Optional[
|
|
541
556
|
List[
|
|
542
|
-
"
|
|
557
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
543
558
|
]
|
|
544
559
|
] = Field(alias="billableFeatures", default=None)
|
|
545
560
|
addons: Optional[
|
|
546
561
|
List[
|
|
547
|
-
"
|
|
562
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
548
563
|
]
|
|
549
564
|
] = Field(default=None)
|
|
550
565
|
price_overrides: Optional[
|
|
551
566
|
List[
|
|
552
|
-
"
|
|
567
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
553
568
|
]
|
|
554
569
|
] = Field(alias="priceOverrides", default=None)
|
|
555
570
|
|
|
556
571
|
|
|
557
|
-
class
|
|
572
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
558
573
|
BaseModel
|
|
559
574
|
):
|
|
560
575
|
feature_id: str = Field(alias="featureId")
|
|
561
576
|
quantity: float
|
|
562
577
|
|
|
563
578
|
|
|
564
|
-
class
|
|
579
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
565
580
|
BaseModel
|
|
566
581
|
):
|
|
567
582
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
568
583
|
quantity: float
|
|
569
584
|
|
|
570
585
|
|
|
571
|
-
class
|
|
586
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
572
587
|
BaseModel
|
|
573
588
|
):
|
|
574
589
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -576,43 +591,39 @@ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPr
|
|
|
576
591
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
577
592
|
|
|
578
593
|
|
|
579
|
-
class
|
|
594
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
580
595
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
581
596
|
plan_ref_id: str = Field(alias="planRefId")
|
|
582
597
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
583
598
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
584
599
|
billable_features: Optional[
|
|
585
600
|
List[
|
|
586
|
-
"
|
|
601
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
587
602
|
]
|
|
588
603
|
] = Field(alias="billableFeatures", default=None)
|
|
589
604
|
addons: Optional[
|
|
590
|
-
List[
|
|
591
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
592
|
-
]
|
|
605
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
593
606
|
] = Field(default=None)
|
|
594
607
|
price_overrides: Optional[
|
|
595
608
|
List[
|
|
596
|
-
"
|
|
609
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
597
610
|
]
|
|
598
611
|
] = Field(alias="priceOverrides", default=None)
|
|
599
612
|
|
|
600
613
|
|
|
601
|
-
class
|
|
614
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
602
615
|
BaseModel
|
|
603
616
|
):
|
|
604
617
|
feature_id: str = Field(alias="featureId")
|
|
605
618
|
quantity: float
|
|
606
619
|
|
|
607
620
|
|
|
608
|
-
class
|
|
609
|
-
BaseModel
|
|
610
|
-
):
|
|
621
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
611
622
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
612
623
|
quantity: float
|
|
613
624
|
|
|
614
625
|
|
|
615
|
-
class
|
|
626
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
616
627
|
BaseModel
|
|
617
628
|
):
|
|
618
629
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -620,7 +631,7 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOv
|
|
|
620
631
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
621
632
|
|
|
622
633
|
|
|
623
|
-
class
|
|
634
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
624
635
|
BaseModel
|
|
625
636
|
):
|
|
626
637
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -628,70 +639,51 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVar
|
|
|
628
639
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
629
640
|
|
|
630
641
|
|
|
631
|
-
class
|
|
632
|
-
BaseModel
|
|
633
|
-
):
|
|
642
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
634
643
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
635
644
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
636
645
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
637
646
|
|
|
638
647
|
|
|
639
|
-
class
|
|
640
|
-
id: Any
|
|
641
|
-
name: Optional[str] = Field(default=None)
|
|
642
|
-
email: Optional[str] = Field(default=None)
|
|
643
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
644
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
645
|
-
ref_id: str = Field(alias="refId")
|
|
646
|
-
customer_id: str = Field(alias="customerId")
|
|
647
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
648
|
-
additional_meta_data: Optional[Any] = Field(
|
|
649
|
-
alias="additionalMetaData", default=None
|
|
650
|
-
)
|
|
651
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
652
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
653
|
-
)
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
class SubscriptionFutureUpdateData(BaseModel):
|
|
648
|
+
class SubscriptionScheduledUpdateData(BaseModel):
|
|
657
649
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
658
650
|
alias="subscriptionScheduleType"
|
|
659
651
|
)
|
|
660
652
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
661
653
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
662
|
-
target_package: Optional["
|
|
654
|
+
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
663
655
|
alias="targetPackage", default=None
|
|
664
656
|
)
|
|
665
657
|
schedule_variables: Optional[
|
|
666
658
|
Annotated[
|
|
667
659
|
Union[
|
|
668
|
-
"
|
|
669
|
-
"
|
|
670
|
-
"
|
|
671
|
-
"
|
|
672
|
-
"
|
|
673
|
-
"
|
|
674
|
-
"
|
|
675
|
-
"
|
|
660
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
661
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
662
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
663
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
664
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
665
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
666
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
667
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
676
668
|
],
|
|
677
669
|
Field(discriminator="typename__"),
|
|
678
670
|
]
|
|
679
671
|
] = Field(alias="scheduleVariables", default=None)
|
|
680
672
|
|
|
681
673
|
|
|
682
|
-
class
|
|
674
|
+
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
683
675
|
id: Any
|
|
684
676
|
ref_id: str = Field(alias="refId")
|
|
685
677
|
display_name: str = Field(alias="displayName")
|
|
686
678
|
|
|
687
679
|
|
|
688
|
-
class
|
|
680
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
689
681
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
690
682
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
691
683
|
new_quantity: float = Field(alias="newQuantity")
|
|
692
684
|
|
|
693
685
|
|
|
694
|
-
class
|
|
686
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
695
687
|
BaseModel
|
|
696
688
|
):
|
|
697
689
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -699,53 +691,55 @@ class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVaria
|
|
|
699
691
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
700
692
|
|
|
701
693
|
|
|
702
|
-
class
|
|
694
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
703
695
|
BaseModel
|
|
704
696
|
):
|
|
705
697
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
706
698
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
707
699
|
|
|
708
700
|
|
|
709
|
-
class
|
|
701
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
710
702
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
711
703
|
|
|
712
704
|
|
|
713
|
-
class
|
|
705
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
706
|
+
BaseModel
|
|
707
|
+
):
|
|
714
708
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
715
709
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
716
710
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
717
711
|
billable_features: Optional[
|
|
718
712
|
List[
|
|
719
|
-
"
|
|
713
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
720
714
|
]
|
|
721
715
|
] = Field(alias="billableFeatures", default=None)
|
|
722
716
|
addons: Optional[
|
|
723
717
|
List[
|
|
724
|
-
"
|
|
718
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
725
719
|
]
|
|
726
720
|
] = Field(default=None)
|
|
727
721
|
price_overrides: Optional[
|
|
728
722
|
List[
|
|
729
|
-
"
|
|
723
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
730
724
|
]
|
|
731
725
|
] = Field(alias="priceOverrides", default=None)
|
|
732
726
|
|
|
733
727
|
|
|
734
|
-
class
|
|
728
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
735
729
|
BaseModel
|
|
736
730
|
):
|
|
737
731
|
feature_id: str = Field(alias="featureId")
|
|
738
732
|
quantity: float
|
|
739
733
|
|
|
740
734
|
|
|
741
|
-
class
|
|
735
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
742
736
|
BaseModel
|
|
743
737
|
):
|
|
744
738
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
745
739
|
quantity: float
|
|
746
740
|
|
|
747
741
|
|
|
748
|
-
class
|
|
742
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
749
743
|
BaseModel
|
|
750
744
|
):
|
|
751
745
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -753,39 +747,43 @@ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPrice
|
|
|
753
747
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
754
748
|
|
|
755
749
|
|
|
756
|
-
class
|
|
750
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
757
751
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
758
752
|
plan_ref_id: str = Field(alias="planRefId")
|
|
759
753
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
760
754
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
761
755
|
billable_features: Optional[
|
|
762
756
|
List[
|
|
763
|
-
"
|
|
757
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
764
758
|
]
|
|
765
759
|
] = Field(alias="billableFeatures", default=None)
|
|
766
760
|
addons: Optional[
|
|
767
|
-
List[
|
|
761
|
+
List[
|
|
762
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
763
|
+
]
|
|
768
764
|
] = Field(default=None)
|
|
769
765
|
price_overrides: Optional[
|
|
770
766
|
List[
|
|
771
|
-
"
|
|
767
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
772
768
|
]
|
|
773
769
|
] = Field(alias="priceOverrides", default=None)
|
|
774
770
|
|
|
775
771
|
|
|
776
|
-
class
|
|
772
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
777
773
|
BaseModel
|
|
778
774
|
):
|
|
779
775
|
feature_id: str = Field(alias="featureId")
|
|
780
776
|
quantity: float
|
|
781
777
|
|
|
782
778
|
|
|
783
|
-
class
|
|
779
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
780
|
+
BaseModel
|
|
781
|
+
):
|
|
784
782
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
785
783
|
quantity: float
|
|
786
784
|
|
|
787
785
|
|
|
788
|
-
class
|
|
786
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
789
787
|
BaseModel
|
|
790
788
|
):
|
|
791
789
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -793,7 +791,7 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverr
|
|
|
793
791
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
794
792
|
|
|
795
793
|
|
|
796
|
-
class
|
|
794
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
797
795
|
BaseModel
|
|
798
796
|
):
|
|
799
797
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -801,7 +799,9 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariab
|
|
|
801
799
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
802
800
|
|
|
803
801
|
|
|
804
|
-
class
|
|
802
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
803
|
+
BaseModel
|
|
804
|
+
):
|
|
805
805
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
806
806
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
807
807
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
@@ -1262,6 +1262,33 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1262
1262
|
pass
|
|
1263
1263
|
|
|
1264
1264
|
|
|
1265
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1266
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1267
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1268
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1269
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1270
|
+
default=None
|
|
1271
|
+
)
|
|
1272
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1273
|
+
default=None
|
|
1274
|
+
)
|
|
1275
|
+
|
|
1276
|
+
|
|
1277
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1278
|
+
amount: float
|
|
1279
|
+
currency: Currency
|
|
1280
|
+
|
|
1281
|
+
|
|
1282
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1283
|
+
id: Any
|
|
1284
|
+
ref_id: str = Field(alias="refId")
|
|
1285
|
+
display_name: str = Field(alias="displayName")
|
|
1286
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1287
|
+
feature_units_plural: Optional[str] = Field(
|
|
1288
|
+
alias="featureUnitsPlural", default=None
|
|
1289
|
+
)
|
|
1290
|
+
|
|
1291
|
+
|
|
1265
1292
|
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1266
1293
|
addon_id: str = Field(alias="addonId")
|
|
1267
1294
|
description: Optional[str] = Field(default=None)
|
|
@@ -1438,33 +1465,6 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1438
1465
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1439
1466
|
|
|
1440
1467
|
|
|
1441
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1442
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1443
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1444
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1445
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1446
|
-
default=None
|
|
1447
|
-
)
|
|
1448
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1449
|
-
default=None
|
|
1450
|
-
)
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1454
|
-
amount: float
|
|
1455
|
-
currency: Currency
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1459
|
-
id: Any
|
|
1460
|
-
ref_id: str = Field(alias="refId")
|
|
1461
|
-
display_name: str = Field(alias="displayName")
|
|
1462
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1463
|
-
feature_units_plural: Optional[str] = Field(
|
|
1464
|
-
alias="featureUnitsPlural", default=None
|
|
1465
|
-
)
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
1468
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1469
1469
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1470
1470
|
plan_id: str = Field(alias="planId")
|
|
@@ -1798,39 +1798,6 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1798
1798
|
description: Optional[str] = Field(default=None)
|
|
1799
1799
|
|
|
1800
1800
|
|
|
1801
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1802
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1803
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1804
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1805
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1806
|
-
alias="resetPeriod", default=None
|
|
1807
|
-
)
|
|
1808
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1809
|
-
alias="hiddenFromWidgets", default=None
|
|
1810
|
-
)
|
|
1811
|
-
display_name_override: Optional[str] = Field(
|
|
1812
|
-
alias="displayNameOverride", default=None
|
|
1813
|
-
)
|
|
1814
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1815
|
-
default=None
|
|
1816
|
-
)
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1820
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1821
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1822
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1823
|
-
feature_units_plural: Optional[str] = Field(
|
|
1824
|
-
alias="featureUnitsPlural", default=None
|
|
1825
|
-
)
|
|
1826
|
-
display_name: str = Field(alias="displayName")
|
|
1827
|
-
description: Optional[str] = Field(default=None)
|
|
1828
|
-
ref_id: str = Field(alias="refId")
|
|
1829
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1830
|
-
alias="additionalMetaData", default=None
|
|
1831
|
-
)
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
1801
|
class MockPaywallPriceFragment(BaseModel):
|
|
1835
1802
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1836
1803
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1865,6 +1832,39 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1865
1832
|
display_name: str = Field(alias="displayName")
|
|
1866
1833
|
|
|
1867
1834
|
|
|
1835
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1836
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1837
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1838
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1839
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1840
|
+
alias="resetPeriod", default=None
|
|
1841
|
+
)
|
|
1842
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1843
|
+
alias="hiddenFromWidgets", default=None
|
|
1844
|
+
)
|
|
1845
|
+
display_name_override: Optional[str] = Field(
|
|
1846
|
+
alias="displayNameOverride", default=None
|
|
1847
|
+
)
|
|
1848
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1849
|
+
default=None
|
|
1850
|
+
)
|
|
1851
|
+
|
|
1852
|
+
|
|
1853
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1854
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1855
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1856
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1857
|
+
feature_units_plural: Optional[str] = Field(
|
|
1858
|
+
alias="featureUnitsPlural", default=None
|
|
1859
|
+
)
|
|
1860
|
+
display_name: str = Field(alias="displayName")
|
|
1861
|
+
description: Optional[str] = Field(default=None)
|
|
1862
|
+
ref_id: str = Field(alias="refId")
|
|
1863
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1864
|
+
alias="additionalMetaData", default=None
|
|
1865
|
+
)
|
|
1866
|
+
|
|
1867
|
+
|
|
1868
1868
|
class MockPaywallAddonFragment(BaseModel):
|
|
1869
1869
|
ref_id: str = Field(alias="refId")
|
|
1870
1870
|
display_name: str = Field(alias="displayName")
|
|
@@ -2839,22 +2839,22 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2839
2839
|
|
|
2840
2840
|
AddonDependencyFragment.model_rebuild()
|
|
2841
2841
|
PriceTierFragment.model_rebuild()
|
|
2842
|
-
PriceFragment.model_rebuild()
|
|
2843
2842
|
OveragePriceFragment.model_rebuild()
|
|
2844
2843
|
PackageEntitlementFragment.model_rebuild()
|
|
2844
|
+
PriceFragment.model_rebuild()
|
|
2845
2845
|
AddonFragment.model_rebuild()
|
|
2846
2846
|
FeatureFragment.model_rebuild()
|
|
2847
2847
|
EntitlementFragment.model_rebuild()
|
|
2848
2848
|
SubscriptionInvoiceFragment.model_rebuild()
|
|
2849
|
-
|
|
2849
|
+
CustomerResourceFragment.model_rebuild()
|
|
2850
2850
|
ProductFragment.model_rebuild()
|
|
2851
|
+
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2851
2852
|
PlanFragment.model_rebuild()
|
|
2852
|
-
CustomerResourceFragment.model_rebuild()
|
|
2853
|
-
TotalPriceFragment.model_rebuild()
|
|
2854
2853
|
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2855
|
-
|
|
2854
|
+
TotalPriceFragment.model_rebuild()
|
|
2856
2855
|
SlimCustomerFragment.model_rebuild()
|
|
2857
2856
|
SubscriptionFutureUpdateData.model_rebuild()
|
|
2857
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2858
2858
|
SubscriptionFragment.model_rebuild()
|
|
2859
2859
|
ApplySubscriptionFragment.model_rebuild()
|
|
2860
2860
|
FontVariantFragment.model_rebuild()
|
|
@@ -2867,9 +2867,9 @@ CheckoutStateFragment.model_rebuild()
|
|
|
2867
2867
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2868
2868
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2869
2869
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2870
|
+
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2870
2871
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2871
2872
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2872
|
-
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2873
2873
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2874
2874
|
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2875
2875
|
CustomerPortalFragment.model_rebuild()
|
|
@@ -2881,8 +2881,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
2881
2881
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
2882
2882
|
LayoutConfigurationFragment.model_rebuild()
|
|
2883
2883
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
2884
|
-
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2885
2884
|
MockPaywallPriceFragment.model_rebuild()
|
|
2885
|
+
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2886
2886
|
MockPaywallAddonFragment.model_rebuild()
|
|
2887
2887
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2888
2888
|
MockPaywallPlanFragment.model_rebuild()
|
|
@@ -119,11 +119,11 @@ stigg/generated/client.py,sha256=FIRvvpLkBu44ce1V4CJtQ1XFIsWX_tqk2Qh46MPpWIM,172
|
|
|
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=p5Fx_PhQvsCc3ljHmaAVdWpH2zWZ6iwr4jZM63NsGto,36396
|
|
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=rWzDpWyH9fJeQdbzLFU4IYjx3PQDc_ArghF6RvJIZsI,103692
|
|
127
127
|
stigg/generated/get_active_subscriptions.py,sha256=ngZ9jr8vzGI59wT8FhUFl46a8j9waoNjeZ1_lrcu2ww,513
|
|
128
128
|
stigg/generated/get_active_subscriptions_list.py,sha256=Awi9al2MXxdt_y7ZnWYZh8U3R9XiX50c7TyO4WZxyhw,541
|
|
129
129
|
stigg/generated/get_checkout_state.py,sha256=SAOXGAND879dwb7R5mr5LPZuPVuMUDwNR5M4mgmHv6w,409
|
|
@@ -161,7 +161,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
|
|
|
161
161
|
stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
|
|
162
162
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
163
163
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
164
|
-
stigg_api_client_v2-2.
|
|
165
|
-
stigg_api_client_v2-2.
|
|
166
|
-
stigg_api_client_v2-2.
|
|
167
|
-
stigg_api_client_v2-2.
|
|
164
|
+
stigg_api_client_v2-2.481.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
165
|
+
stigg_api_client_v2-2.481.0.dist-info/METADATA,sha256=D-kMoTj_pLU1iPcF-6KFmh-YdS2LpjMrA5mQ9H4aa9Y,2258
|
|
166
|
+
stigg_api_client_v2-2.481.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
167
|
+
stigg_api_client_v2-2.481.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|