stigg-api-client-v2 2.319.0__py3-none-any.whl → 2.323.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 +3 -0
- stigg/generated/fragments.py +215 -215
- {stigg_api_client_v2-2.319.0.dist-info → stigg_api_client_v2-2.323.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.319.0.dist-info → stigg_api_client_v2-2.323.0.dist-info}/RECORD +6 -6
- {stigg_api_client_v2-2.319.0.dist-info → stigg_api_client_v2-2.323.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.319.0.dist-info → stigg_api_client_v2-2.323.0.dist-info}/WHEEL +0 -0
stigg/generated/enums.py
CHANGED
|
@@ -456,6 +456,9 @@ class ErrorCode(str, Enum):
|
|
|
456
456
|
FreePlanCantHaveCompatiblePackageGroupError = (
|
|
457
457
|
"FreePlanCantHaveCompatiblePackageGroupError"
|
|
458
458
|
)
|
|
459
|
+
GraphQLAliasesLimitExceeded = "GraphQLAliasesLimitExceeded"
|
|
460
|
+
GraphQLBatchedOperationsLimitExceeded = "GraphQLBatchedOperationsLimitExceeded"
|
|
461
|
+
GraphQLUnsupportedDirective = "GraphQLUnsupportedDirective"
|
|
459
462
|
HubspotIntegrationError = "HubspotIntegrationError"
|
|
460
463
|
IdentityForbidden = "IdentityForbidden"
|
|
461
464
|
ImportAlreadyInProgress = "ImportAlreadyInProgress"
|
stigg/generated/fragments.py
CHANGED
|
@@ -112,33 +112,29 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
112
112
|
currency: Currency
|
|
113
113
|
|
|
114
114
|
|
|
115
|
-
class
|
|
115
|
+
class OveragePriceFragment(BaseModel):
|
|
116
116
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
117
117
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
118
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
119
118
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
120
|
-
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
121
|
-
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
122
119
|
billing_country_code: Optional[str] = Field(
|
|
123
120
|
alias="billingCountryCode", default=None
|
|
124
121
|
)
|
|
125
|
-
price: Optional["
|
|
122
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
126
123
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
127
|
-
tiers: Optional[List["
|
|
128
|
-
feature: Optional["
|
|
129
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
124
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
125
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
130
126
|
|
|
131
127
|
|
|
132
|
-
class
|
|
128
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
133
129
|
amount: float
|
|
134
130
|
currency: Currency
|
|
135
131
|
|
|
136
132
|
|
|
137
|
-
class
|
|
133
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
138
134
|
pass
|
|
139
135
|
|
|
140
136
|
|
|
141
|
-
class
|
|
137
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
142
138
|
ref_id: str = Field(alias="refId")
|
|
143
139
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
144
140
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -148,29 +144,33 @@ class PriceFragmentFeature(BaseModel):
|
|
|
148
144
|
description: Optional[str] = Field(default=None)
|
|
149
145
|
|
|
150
146
|
|
|
151
|
-
class
|
|
147
|
+
class PriceFragment(BaseModel):
|
|
152
148
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
153
149
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
150
|
+
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
154
151
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
152
|
+
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
153
|
+
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
155
154
|
billing_country_code: Optional[str] = Field(
|
|
156
155
|
alias="billingCountryCode", default=None
|
|
157
156
|
)
|
|
158
|
-
price: Optional["
|
|
157
|
+
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
159
158
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
160
|
-
tiers: Optional[List["
|
|
161
|
-
feature: Optional["
|
|
159
|
+
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
160
|
+
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
161
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
162
162
|
|
|
163
163
|
|
|
164
|
-
class
|
|
164
|
+
class PriceFragmentPrice(BaseModel):
|
|
165
165
|
amount: float
|
|
166
166
|
currency: Currency
|
|
167
167
|
|
|
168
168
|
|
|
169
|
-
class
|
|
169
|
+
class PriceFragmentTiers(PriceTierFragment):
|
|
170
170
|
pass
|
|
171
171
|
|
|
172
172
|
|
|
173
|
-
class
|
|
173
|
+
class PriceFragmentFeature(BaseModel):
|
|
174
174
|
ref_id: str = Field(alias="refId")
|
|
175
175
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
176
176
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -298,24 +298,6 @@ class EntitlementFragmentFeature(FeatureFragment):
|
|
|
298
298
|
pass
|
|
299
299
|
|
|
300
300
|
|
|
301
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
302
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
303
|
-
display_name: str = Field(alias="displayName")
|
|
304
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
305
|
-
default=None
|
|
306
|
-
)
|
|
307
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
311
|
-
pass
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
315
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
316
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
317
|
-
|
|
318
|
-
|
|
319
301
|
class ProductFragment(BaseModel):
|
|
320
302
|
ref_id: str = Field(alias="refId")
|
|
321
303
|
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
@@ -337,6 +319,24 @@ class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
|
337
319
|
display_name: str = Field(alias="displayName")
|
|
338
320
|
|
|
339
321
|
|
|
322
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
323
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
324
|
+
display_name: str = Field(alias="displayName")
|
|
325
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
326
|
+
default=None
|
|
327
|
+
)
|
|
328
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
332
|
+
pass
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
336
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
337
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
338
|
+
|
|
339
|
+
|
|
340
340
|
class PlanFragment(BaseModel):
|
|
341
341
|
id: str
|
|
342
342
|
ref_id: str = Field(alias="refId")
|
|
@@ -418,76 +418,64 @@ class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
|
418
418
|
limit: float
|
|
419
419
|
|
|
420
420
|
|
|
421
|
-
class
|
|
422
|
-
|
|
421
|
+
class TotalPriceFragment(BaseModel):
|
|
422
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
423
|
+
total: "TotalPriceFragmentTotal"
|
|
423
424
|
|
|
424
425
|
|
|
425
|
-
class
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
created_at: Any = Field(alias="createdAt")
|
|
429
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
430
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
431
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
432
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
433
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
434
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
435
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
436
|
-
alias="billingReason", default=None
|
|
437
|
-
)
|
|
438
|
-
currency: Optional[str] = Field(default=None)
|
|
439
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
440
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
441
|
-
alias="subTotalExcludingTax", default=None
|
|
442
|
-
)
|
|
443
|
-
total: Optional[float] = Field(default=None)
|
|
444
|
-
total_excluding_tax: Optional[float] = Field(
|
|
445
|
-
alias="totalExcludingTax", default=None
|
|
446
|
-
)
|
|
447
|
-
tax: Optional[float] = Field(default=None)
|
|
448
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
449
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
426
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
427
|
+
amount: float
|
|
428
|
+
currency: Currency
|
|
450
429
|
|
|
451
430
|
|
|
452
|
-
class
|
|
431
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
432
|
+
amount: float
|
|
433
|
+
currency: Currency
|
|
434
|
+
|
|
435
|
+
|
|
436
|
+
class CustomerResourceFragment(BaseModel):
|
|
437
|
+
resource_id: str = Field(alias="resourceId")
|
|
438
|
+
|
|
439
|
+
|
|
440
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
453
441
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
454
442
|
alias="subscriptionScheduleType"
|
|
455
443
|
)
|
|
456
444
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
457
445
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
458
|
-
target_package: Optional["
|
|
446
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
459
447
|
alias="targetPackage", default=None
|
|
460
448
|
)
|
|
461
449
|
schedule_variables: Optional[
|
|
462
450
|
Annotated[
|
|
463
451
|
Union[
|
|
464
|
-
"
|
|
465
|
-
"
|
|
466
|
-
"
|
|
467
|
-
"
|
|
468
|
-
"
|
|
469
|
-
"
|
|
470
|
-
"
|
|
471
|
-
"
|
|
452
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
453
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
454
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
455
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
456
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
457
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
458
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
459
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
472
460
|
],
|
|
473
461
|
Field(discriminator="typename__"),
|
|
474
462
|
]
|
|
475
463
|
] = Field(alias="scheduleVariables", default=None)
|
|
476
464
|
|
|
477
465
|
|
|
478
|
-
class
|
|
466
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
479
467
|
id: str
|
|
480
468
|
ref_id: str = Field(alias="refId")
|
|
481
469
|
display_name: str = Field(alias="displayName")
|
|
482
470
|
|
|
483
471
|
|
|
484
|
-
class
|
|
472
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
485
473
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
486
474
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
487
475
|
new_quantity: float = Field(alias="newQuantity")
|
|
488
476
|
|
|
489
477
|
|
|
490
|
-
class
|
|
478
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
491
479
|
BaseModel
|
|
492
480
|
):
|
|
493
481
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -495,55 +483,53 @@ class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVa
|
|
|
495
483
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
496
484
|
|
|
497
485
|
|
|
498
|
-
class
|
|
486
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
499
487
|
BaseModel
|
|
500
488
|
):
|
|
501
489
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
502
490
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
503
491
|
|
|
504
492
|
|
|
505
|
-
class
|
|
493
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
506
494
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
507
495
|
|
|
508
496
|
|
|
509
|
-
class
|
|
510
|
-
BaseModel
|
|
511
|
-
):
|
|
497
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
512
498
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
513
499
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
514
500
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
515
501
|
billable_features: Optional[
|
|
516
502
|
List[
|
|
517
|
-
"
|
|
503
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
518
504
|
]
|
|
519
505
|
] = Field(alias="billableFeatures", default=None)
|
|
520
506
|
addons: Optional[
|
|
521
507
|
List[
|
|
522
|
-
"
|
|
508
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
523
509
|
]
|
|
524
510
|
] = Field(default=None)
|
|
525
511
|
price_overrides: Optional[
|
|
526
512
|
List[
|
|
527
|
-
"
|
|
513
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
528
514
|
]
|
|
529
515
|
] = Field(alias="priceOverrides", default=None)
|
|
530
516
|
|
|
531
517
|
|
|
532
|
-
class
|
|
518
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
533
519
|
BaseModel
|
|
534
520
|
):
|
|
535
521
|
feature_id: str = Field(alias="featureId")
|
|
536
522
|
quantity: float
|
|
537
523
|
|
|
538
524
|
|
|
539
|
-
class
|
|
525
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
540
526
|
BaseModel
|
|
541
527
|
):
|
|
542
528
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
543
529
|
quantity: float
|
|
544
530
|
|
|
545
531
|
|
|
546
|
-
class
|
|
532
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
547
533
|
BaseModel
|
|
548
534
|
):
|
|
549
535
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -551,43 +537,39 @@ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPr
|
|
|
551
537
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
552
538
|
|
|
553
539
|
|
|
554
|
-
class
|
|
540
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
555
541
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
556
542
|
plan_ref_id: str = Field(alias="planRefId")
|
|
557
543
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
558
544
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
559
545
|
billable_features: Optional[
|
|
560
546
|
List[
|
|
561
|
-
"
|
|
547
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
562
548
|
]
|
|
563
549
|
] = Field(alias="billableFeatures", default=None)
|
|
564
550
|
addons: Optional[
|
|
565
|
-
List[
|
|
566
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
567
|
-
]
|
|
551
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
568
552
|
] = Field(default=None)
|
|
569
553
|
price_overrides: Optional[
|
|
570
554
|
List[
|
|
571
|
-
"
|
|
555
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
572
556
|
]
|
|
573
557
|
] = Field(alias="priceOverrides", default=None)
|
|
574
558
|
|
|
575
559
|
|
|
576
|
-
class
|
|
560
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
577
561
|
BaseModel
|
|
578
562
|
):
|
|
579
563
|
feature_id: str = Field(alias="featureId")
|
|
580
564
|
quantity: float
|
|
581
565
|
|
|
582
566
|
|
|
583
|
-
class
|
|
584
|
-
BaseModel
|
|
585
|
-
):
|
|
567
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
586
568
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
587
569
|
quantity: float
|
|
588
570
|
|
|
589
571
|
|
|
590
|
-
class
|
|
572
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
591
573
|
BaseModel
|
|
592
574
|
):
|
|
593
575
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -595,7 +577,7 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOv
|
|
|
595
577
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
596
578
|
|
|
597
579
|
|
|
598
|
-
class
|
|
580
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
599
581
|
BaseModel
|
|
600
582
|
):
|
|
601
583
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -603,9 +585,7 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVar
|
|
|
603
585
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
604
586
|
|
|
605
587
|
|
|
606
|
-
class
|
|
607
|
-
BaseModel
|
|
608
|
-
):
|
|
588
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
609
589
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
610
590
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
611
591
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
@@ -628,60 +608,72 @@ class SlimCustomerFragment(BaseModel):
|
|
|
628
608
|
)
|
|
629
609
|
|
|
630
610
|
|
|
631
|
-
class
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
611
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
612
|
+
billing_id: str = Field(alias="billingId")
|
|
613
|
+
status: SubscriptionInvoiceStatus
|
|
614
|
+
created_at: Any = Field(alias="createdAt")
|
|
615
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
616
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
617
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
618
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
619
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
620
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
621
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
622
|
+
alias="billingReason", default=None
|
|
623
|
+
)
|
|
624
|
+
currency: Optional[str] = Field(default=None)
|
|
625
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
626
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
627
|
+
alias="subTotalExcludingTax", default=None
|
|
628
|
+
)
|
|
629
|
+
total: Optional[float] = Field(default=None)
|
|
630
|
+
total_excluding_tax: Optional[float] = Field(
|
|
631
|
+
alias="totalExcludingTax", default=None
|
|
632
|
+
)
|
|
633
|
+
tax: Optional[float] = Field(default=None)
|
|
634
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
635
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
644
636
|
|
|
645
637
|
|
|
646
|
-
class
|
|
638
|
+
class SubscriptionScheduledUpdateData(BaseModel):
|
|
647
639
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
648
640
|
alias="subscriptionScheduleType"
|
|
649
641
|
)
|
|
650
642
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
651
643
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
652
|
-
target_package: Optional["
|
|
644
|
+
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
653
645
|
alias="targetPackage", default=None
|
|
654
646
|
)
|
|
655
647
|
schedule_variables: Optional[
|
|
656
648
|
Annotated[
|
|
657
649
|
Union[
|
|
658
|
-
"
|
|
659
|
-
"
|
|
660
|
-
"
|
|
661
|
-
"
|
|
662
|
-
"
|
|
663
|
-
"
|
|
664
|
-
"
|
|
665
|
-
"
|
|
650
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
651
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
652
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
653
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
654
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
655
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
656
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
657
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
666
658
|
],
|
|
667
659
|
Field(discriminator="typename__"),
|
|
668
660
|
]
|
|
669
661
|
] = Field(alias="scheduleVariables", default=None)
|
|
670
662
|
|
|
671
663
|
|
|
672
|
-
class
|
|
664
|
+
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
673
665
|
id: str
|
|
674
666
|
ref_id: str = Field(alias="refId")
|
|
675
667
|
display_name: str = Field(alias="displayName")
|
|
676
668
|
|
|
677
669
|
|
|
678
|
-
class
|
|
670
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
679
671
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
680
672
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
681
673
|
new_quantity: float = Field(alias="newQuantity")
|
|
682
674
|
|
|
683
675
|
|
|
684
|
-
class
|
|
676
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
685
677
|
BaseModel
|
|
686
678
|
):
|
|
687
679
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -689,53 +681,55 @@ class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVaria
|
|
|
689
681
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
690
682
|
|
|
691
683
|
|
|
692
|
-
class
|
|
684
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
693
685
|
BaseModel
|
|
694
686
|
):
|
|
695
687
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
696
688
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
697
689
|
|
|
698
690
|
|
|
699
|
-
class
|
|
691
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
700
692
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
701
693
|
|
|
702
694
|
|
|
703
|
-
class
|
|
695
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
696
|
+
BaseModel
|
|
697
|
+
):
|
|
704
698
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
705
699
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
706
700
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
707
701
|
billable_features: Optional[
|
|
708
702
|
List[
|
|
709
|
-
"
|
|
703
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
710
704
|
]
|
|
711
705
|
] = Field(alias="billableFeatures", default=None)
|
|
712
706
|
addons: Optional[
|
|
713
707
|
List[
|
|
714
|
-
"
|
|
708
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
715
709
|
]
|
|
716
710
|
] = Field(default=None)
|
|
717
711
|
price_overrides: Optional[
|
|
718
712
|
List[
|
|
719
|
-
"
|
|
713
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
720
714
|
]
|
|
721
715
|
] = Field(alias="priceOverrides", default=None)
|
|
722
716
|
|
|
723
717
|
|
|
724
|
-
class
|
|
718
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
725
719
|
BaseModel
|
|
726
720
|
):
|
|
727
721
|
feature_id: str = Field(alias="featureId")
|
|
728
722
|
quantity: float
|
|
729
723
|
|
|
730
724
|
|
|
731
|
-
class
|
|
725
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
732
726
|
BaseModel
|
|
733
727
|
):
|
|
734
728
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
735
729
|
quantity: float
|
|
736
730
|
|
|
737
731
|
|
|
738
|
-
class
|
|
732
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
739
733
|
BaseModel
|
|
740
734
|
):
|
|
741
735
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -743,39 +737,43 @@ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPrice
|
|
|
743
737
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
744
738
|
|
|
745
739
|
|
|
746
|
-
class
|
|
740
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
747
741
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
748
742
|
plan_ref_id: str = Field(alias="planRefId")
|
|
749
743
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
750
744
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
751
745
|
billable_features: Optional[
|
|
752
746
|
List[
|
|
753
|
-
"
|
|
747
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
754
748
|
]
|
|
755
749
|
] = Field(alias="billableFeatures", default=None)
|
|
756
750
|
addons: Optional[
|
|
757
|
-
List[
|
|
751
|
+
List[
|
|
752
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
753
|
+
]
|
|
758
754
|
] = Field(default=None)
|
|
759
755
|
price_overrides: Optional[
|
|
760
756
|
List[
|
|
761
|
-
"
|
|
757
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
762
758
|
]
|
|
763
759
|
] = Field(alias="priceOverrides", default=None)
|
|
764
760
|
|
|
765
761
|
|
|
766
|
-
class
|
|
762
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
767
763
|
BaseModel
|
|
768
764
|
):
|
|
769
765
|
feature_id: str = Field(alias="featureId")
|
|
770
766
|
quantity: float
|
|
771
767
|
|
|
772
768
|
|
|
773
|
-
class
|
|
769
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
770
|
+
BaseModel
|
|
771
|
+
):
|
|
774
772
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
775
773
|
quantity: float
|
|
776
774
|
|
|
777
775
|
|
|
778
|
-
class
|
|
776
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
779
777
|
BaseModel
|
|
780
778
|
):
|
|
781
779
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -783,7 +781,7 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverr
|
|
|
783
781
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
784
782
|
|
|
785
783
|
|
|
786
|
-
class
|
|
784
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
787
785
|
BaseModel
|
|
788
786
|
):
|
|
789
787
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -791,7 +789,9 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariab
|
|
|
791
789
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
792
790
|
|
|
793
791
|
|
|
794
|
-
class
|
|
792
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
793
|
+
BaseModel
|
|
794
|
+
):
|
|
795
795
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
796
796
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
797
797
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
@@ -1250,11 +1250,31 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1250
1250
|
pass
|
|
1251
1251
|
|
|
1252
1252
|
|
|
1253
|
-
class
|
|
1254
|
-
|
|
1255
|
-
|
|
1253
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1254
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1255
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1256
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1257
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1258
|
+
default=None
|
|
1259
|
+
)
|
|
1260
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1261
|
+
default=None
|
|
1262
|
+
)
|
|
1263
|
+
|
|
1264
|
+
|
|
1265
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1266
|
+
amount: float
|
|
1267
|
+
currency: Currency
|
|
1268
|
+
|
|
1269
|
+
|
|
1270
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1271
|
+
id: str
|
|
1272
|
+
ref_id: str = Field(alias="refId")
|
|
1256
1273
|
display_name: str = Field(alias="displayName")
|
|
1257
|
-
|
|
1274
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1275
|
+
feature_units_plural: Optional[str] = Field(
|
|
1276
|
+
alias="featureUnitsPlural", default=None
|
|
1277
|
+
)
|
|
1258
1278
|
|
|
1259
1279
|
|
|
1260
1280
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
@@ -1426,31 +1446,11 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1426
1446
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1427
1447
|
|
|
1428
1448
|
|
|
1429
|
-
class
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1433
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1434
|
-
default=None
|
|
1435
|
-
)
|
|
1436
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1437
|
-
default=None
|
|
1438
|
-
)
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1442
|
-
amount: float
|
|
1443
|
-
currency: Currency
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1447
|
-
id: str
|
|
1448
|
-
ref_id: str = Field(alias="refId")
|
|
1449
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1450
|
+
addon_id: str = Field(alias="addonId")
|
|
1451
|
+
description: Optional[str] = Field(default=None)
|
|
1449
1452
|
display_name: str = Field(alias="displayName")
|
|
1450
|
-
|
|
1451
|
-
feature_units_plural: Optional[str] = Field(
|
|
1452
|
-
alias="featureUnitsPlural", default=None
|
|
1453
|
-
)
|
|
1453
|
+
quantity: int
|
|
1454
1454
|
|
|
1455
1455
|
|
|
1456
1456
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
@@ -1786,6 +1786,39 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1786
1786
|
description: Optional[str] = Field(default=None)
|
|
1787
1787
|
|
|
1788
1788
|
|
|
1789
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1790
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1791
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1792
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1793
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1794
|
+
alias="resetPeriod", default=None
|
|
1795
|
+
)
|
|
1796
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1797
|
+
alias="hiddenFromWidgets", default=None
|
|
1798
|
+
)
|
|
1799
|
+
display_name_override: Optional[str] = Field(
|
|
1800
|
+
alias="displayNameOverride", default=None
|
|
1801
|
+
)
|
|
1802
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1803
|
+
default=None
|
|
1804
|
+
)
|
|
1805
|
+
|
|
1806
|
+
|
|
1807
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1808
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1809
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1810
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1811
|
+
feature_units_plural: Optional[str] = Field(
|
|
1812
|
+
alias="featureUnitsPlural", default=None
|
|
1813
|
+
)
|
|
1814
|
+
display_name: str = Field(alias="displayName")
|
|
1815
|
+
description: Optional[str] = Field(default=None)
|
|
1816
|
+
ref_id: str = Field(alias="refId")
|
|
1817
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1818
|
+
alias="additionalMetaData", default=None
|
|
1819
|
+
)
|
|
1820
|
+
|
|
1821
|
+
|
|
1789
1822
|
class MockPaywallPriceFragment(BaseModel):
|
|
1790
1823
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1791
1824
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1820,39 +1853,6 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1820
1853
|
display_name: str = Field(alias="displayName")
|
|
1821
1854
|
|
|
1822
1855
|
|
|
1823
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1824
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1825
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1826
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1827
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1828
|
-
alias="resetPeriod", default=None
|
|
1829
|
-
)
|
|
1830
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1831
|
-
alias="hiddenFromWidgets", default=None
|
|
1832
|
-
)
|
|
1833
|
-
display_name_override: Optional[str] = Field(
|
|
1834
|
-
alias="displayNameOverride", default=None
|
|
1835
|
-
)
|
|
1836
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1837
|
-
default=None
|
|
1838
|
-
)
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1842
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1843
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1844
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1845
|
-
feature_units_plural: Optional[str] = Field(
|
|
1846
|
-
alias="featureUnitsPlural", default=None
|
|
1847
|
-
)
|
|
1848
|
-
display_name: str = Field(alias="displayName")
|
|
1849
|
-
description: Optional[str] = Field(default=None)
|
|
1850
|
-
ref_id: str = Field(alias="refId")
|
|
1851
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1852
|
-
alias="additionalMetaData", default=None
|
|
1853
|
-
)
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
1856
|
class MockPaywallAddonFragment(BaseModel):
|
|
1857
1857
|
ref_id: str = Field(alias="refId")
|
|
1858
1858
|
display_name: str = Field(alias="displayName")
|
|
@@ -2765,20 +2765,20 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2765
2765
|
AddonDependencyFragment.model_rebuild()
|
|
2766
2766
|
PackageEntitlementFragment.model_rebuild()
|
|
2767
2767
|
PriceTierFragment.model_rebuild()
|
|
2768
|
-
PriceFragment.model_rebuild()
|
|
2769
2768
|
OveragePriceFragment.model_rebuild()
|
|
2769
|
+
PriceFragment.model_rebuild()
|
|
2770
2770
|
AddonFragment.model_rebuild()
|
|
2771
2771
|
FeatureFragment.model_rebuild()
|
|
2772
2772
|
EntitlementFragment.model_rebuild()
|
|
2773
|
-
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2774
2773
|
ProductFragment.model_rebuild()
|
|
2774
|
+
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2775
2775
|
PlanFragment.model_rebuild()
|
|
2776
|
+
TotalPriceFragment.model_rebuild()
|
|
2776
2777
|
CustomerResourceFragment.model_rebuild()
|
|
2778
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2779
|
+
SlimCustomerFragment.model_rebuild()
|
|
2777
2780
|
SubscriptionInvoiceFragment.model_rebuild()
|
|
2778
2781
|
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2779
|
-
SlimCustomerFragment.model_rebuild()
|
|
2780
|
-
TotalPriceFragment.model_rebuild()
|
|
2781
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2782
2782
|
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2783
2783
|
SubscriptionFragment.model_rebuild()
|
|
2784
2784
|
ApplySubscriptionFragment.model_rebuild()
|
|
@@ -2792,9 +2792,9 @@ CheckoutStateFragment.model_rebuild()
|
|
|
2792
2792
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2793
2793
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2794
2794
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2795
|
-
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2796
|
-
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2797
2795
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2796
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2797
|
+
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2798
2798
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2799
2799
|
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2800
2800
|
CustomerPortalFragment.model_rebuild()
|
|
@@ -2806,8 +2806,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
2806
2806
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
2807
2807
|
LayoutConfigurationFragment.model_rebuild()
|
|
2808
2808
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
2809
|
-
MockPaywallPriceFragment.model_rebuild()
|
|
2810
2809
|
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2810
|
+
MockPaywallPriceFragment.model_rebuild()
|
|
2811
2811
|
MockPaywallAddonFragment.model_rebuild()
|
|
2812
2812
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2813
2813
|
MockPaywallPlanFragment.model_rebuild()
|
|
@@ -119,11 +119,11 @@ stigg/generated/client.py,sha256=AHebP8X0jl5noIxkZwMgE-EOE3e5lv-tGrCj2xDt58c,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=shdJHz5_wC8MhaimlCFu5Q_pSxTe8JTEdB5ysw7Eapk,34688
|
|
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=aXOCPAq2Iv3rTG3bheZ1fzL0_z1bGrW_vZTGuNcUEyc,100632
|
|
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.323.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.323.0.dist-info/METADATA,sha256=-3_TODn3XAzrOkYgfabJQZhb9hcn1HjP0hfq7iuXxO4,2258
|
|
165
|
+
stigg_api_client_v2-2.323.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.323.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|