stigg-api-client-v2 3.76.1__py3-none-any.whl → 3.81.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 +8 -2
- stigg/generated/fragments.py +235 -235
- stigg/generated/input_types.py +1 -0
- {stigg_api_client_v2-3.76.1.dist-info → stigg_api_client_v2-3.81.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-3.76.1.dist-info → stigg_api_client_v2-3.81.0.dist-info}/RECORD +7 -7
- {stigg_api_client_v2-3.76.1.dist-info → stigg_api_client_v2-3.81.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-3.76.1.dist-info → stigg_api_client_v2-3.81.0.dist-info}/WHEEL +0 -0
stigg/generated/enums.py
CHANGED
|
@@ -621,6 +621,7 @@ class EventActor(str, Enum):
|
|
|
621
621
|
class EventEntityType(str, Enum):
|
|
622
622
|
ADDON = "ADDON"
|
|
623
623
|
COUPON = "COUPON"
|
|
624
|
+
CREDIT = "CREDIT"
|
|
624
625
|
CUSTOMER = "CUSTOMER"
|
|
625
626
|
ENTITLEMENT = "ENTITLEMENT"
|
|
626
627
|
FEATURE = "FEATURE"
|
|
@@ -652,8 +653,13 @@ class EventLogType(str, Enum):
|
|
|
652
653
|
COUPON_CREATED = "COUPON_CREATED"
|
|
653
654
|
COUPON_UPDATED = "COUPON_UPDATED"
|
|
654
655
|
CREATE_SUBSCRIPTION_FAILED = "CREATE_SUBSCRIPTION_FAILED"
|
|
655
|
-
|
|
656
|
-
|
|
656
|
+
CREDITS_BALANCE_DEPLETED = "CREDITS_BALANCE_DEPLETED"
|
|
657
|
+
CREDITS_BALANCE_USAGE_LOW = "CREDITS_BALANCE_USAGE_LOW"
|
|
658
|
+
CREDITS_GRANT_DEPLETED = "CREDITS_GRANT_DEPLETED"
|
|
659
|
+
CREDITS_GRANT_EXPIRED = "CREDITS_GRANT_EXPIRED"
|
|
660
|
+
CREDITS_GRANT_GRANTED = "CREDITS_GRANT_GRANTED"
|
|
661
|
+
CREDITS_GRANT_UPDATED = "CREDITS_GRANT_UPDATED"
|
|
662
|
+
CREDITS_GRANT_USAGE_LOW = "CREDITS_GRANT_USAGE_LOW"
|
|
657
663
|
CUSTOMER_CREATED = "CUSTOMER_CREATED"
|
|
658
664
|
CUSTOMER_DELETED = "CUSTOMER_DELETED"
|
|
659
665
|
CUSTOMER_ENTITLEMENT_CALCULATION_TRIGGERED = (
|
stigg/generated/fragments.py
CHANGED
|
@@ -125,38 +125,6 @@ class PriceFragmentFeature(BaseModel):
|
|
|
125
125
|
description: Optional[str] = Field(default=None)
|
|
126
126
|
|
|
127
127
|
|
|
128
|
-
class OveragePriceFragment(BaseModel):
|
|
129
|
-
billing_model: BillingModel = Field(alias="billingModel")
|
|
130
|
-
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
131
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
132
|
-
billing_country_code: Optional[str] = Field(
|
|
133
|
-
alias="billingCountryCode", default=None
|
|
134
|
-
)
|
|
135
|
-
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
136
|
-
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
137
|
-
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
138
|
-
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
class OveragePriceFragmentPrice(BaseModel):
|
|
142
|
-
amount: float
|
|
143
|
-
currency: Currency
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
147
|
-
pass
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
class OveragePriceFragmentFeature(BaseModel):
|
|
151
|
-
ref_id: str = Field(alias="refId")
|
|
152
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
153
|
-
feature_units_plural: Optional[str] = Field(
|
|
154
|
-
alias="featureUnitsPlural", default=None
|
|
155
|
-
)
|
|
156
|
-
display_name: str = Field(alias="displayName")
|
|
157
|
-
description: Optional[str] = Field(default=None)
|
|
158
|
-
|
|
159
|
-
|
|
160
128
|
class PackageEntitlementFragment(BaseModel):
|
|
161
129
|
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
162
130
|
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
@@ -192,6 +160,38 @@ class PackageEntitlementFragmentFeature(BaseModel):
|
|
|
192
160
|
)
|
|
193
161
|
|
|
194
162
|
|
|
163
|
+
class OveragePriceFragment(BaseModel):
|
|
164
|
+
billing_model: BillingModel = Field(alias="billingModel")
|
|
165
|
+
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
166
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
167
|
+
billing_country_code: Optional[str] = Field(
|
|
168
|
+
alias="billingCountryCode", default=None
|
|
169
|
+
)
|
|
170
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
171
|
+
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
172
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
173
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
177
|
+
amount: float
|
|
178
|
+
currency: Currency
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
182
|
+
pass
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
186
|
+
ref_id: str = Field(alias="refId")
|
|
187
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
188
|
+
feature_units_plural: Optional[str] = Field(
|
|
189
|
+
alias="featureUnitsPlural", default=None
|
|
190
|
+
)
|
|
191
|
+
display_name: str = Field(alias="displayName")
|
|
192
|
+
description: Optional[str] = Field(default=None)
|
|
193
|
+
|
|
194
|
+
|
|
195
195
|
class AddonFragment(BaseModel):
|
|
196
196
|
id: Any
|
|
197
197
|
ref_id: str = Field(alias="refId")
|
|
@@ -315,25 +315,68 @@ class EntitlementFragmentFeature(FeatureFragment):
|
|
|
315
315
|
pass
|
|
316
316
|
|
|
317
317
|
|
|
318
|
-
class
|
|
318
|
+
class SlimCustomerFragment(BaseModel):
|
|
319
|
+
id: Any
|
|
320
|
+
name: Optional[str] = Field(default=None)
|
|
321
|
+
email: Optional[str] = Field(default=None)
|
|
322
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
323
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
319
324
|
ref_id: str = Field(alias="refId")
|
|
320
|
-
|
|
321
|
-
|
|
325
|
+
customer_id: str = Field(alias="customerId")
|
|
326
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
322
327
|
additional_meta_data: Optional[Any] = Field(
|
|
323
328
|
alias="additionalMetaData", default=None
|
|
324
329
|
)
|
|
325
|
-
|
|
330
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
331
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
332
|
+
)
|
|
326
333
|
|
|
327
334
|
|
|
328
|
-
class
|
|
329
|
-
|
|
330
|
-
alias="downgradePlan", default=None
|
|
331
|
-
)
|
|
335
|
+
class CustomerResourceFragment(BaseModel):
|
|
336
|
+
resource_id: str = Field(alias="resourceId")
|
|
332
337
|
|
|
333
338
|
|
|
334
|
-
class
|
|
335
|
-
|
|
336
|
-
|
|
339
|
+
class TotalPriceFragment(BaseModel):
|
|
340
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
341
|
+
total: "TotalPriceFragmentTotal"
|
|
342
|
+
|
|
343
|
+
|
|
344
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
345
|
+
amount: float
|
|
346
|
+
currency: Currency
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
350
|
+
amount: float
|
|
351
|
+
currency: Currency
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
355
|
+
billing_id: str = Field(alias="billingId")
|
|
356
|
+
status: SubscriptionInvoiceStatus
|
|
357
|
+
created_at: Any = Field(alias="createdAt")
|
|
358
|
+
due_date: Optional[Any] = Field(alias="dueDate", default=None)
|
|
359
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
360
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
361
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
362
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
363
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
364
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
365
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
366
|
+
alias="billingReason", default=None
|
|
367
|
+
)
|
|
368
|
+
currency: Optional[str] = Field(default=None)
|
|
369
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
370
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
371
|
+
alias="subTotalExcludingTax", default=None
|
|
372
|
+
)
|
|
373
|
+
total: Optional[float] = Field(default=None)
|
|
374
|
+
total_excluding_tax: Optional[float] = Field(
|
|
375
|
+
alias="totalExcludingTax", default=None
|
|
376
|
+
)
|
|
377
|
+
tax: Optional[float] = Field(default=None)
|
|
378
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
379
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
337
380
|
|
|
338
381
|
|
|
339
382
|
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
@@ -354,6 +397,27 @@ class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
|
354
397
|
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
355
398
|
|
|
356
399
|
|
|
400
|
+
class ProductFragment(BaseModel):
|
|
401
|
+
ref_id: str = Field(alias="refId")
|
|
402
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
403
|
+
description: Optional[str] = Field(default=None)
|
|
404
|
+
additional_meta_data: Optional[Any] = Field(
|
|
405
|
+
alias="additionalMetaData", default=None
|
|
406
|
+
)
|
|
407
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
411
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
412
|
+
alias="downgradePlan", default=None
|
|
413
|
+
)
|
|
414
|
+
|
|
415
|
+
|
|
416
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
417
|
+
ref_id: str = Field(alias="refId")
|
|
418
|
+
display_name: str = Field(alias="displayName")
|
|
419
|
+
|
|
420
|
+
|
|
357
421
|
class PlanFragment(BaseModel):
|
|
358
422
|
id: Any
|
|
359
423
|
ref_id: str = Field(alias="refId")
|
|
@@ -435,62 +499,45 @@ class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
|
435
499
|
limit: float
|
|
436
500
|
|
|
437
501
|
|
|
438
|
-
class
|
|
439
|
-
id: Any
|
|
440
|
-
name: Optional[str] = Field(default=None)
|
|
441
|
-
email: Optional[str] = Field(default=None)
|
|
442
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
443
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
444
|
-
ref_id: str = Field(alias="refId")
|
|
445
|
-
customer_id: str = Field(alias="customerId")
|
|
446
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
447
|
-
additional_meta_data: Optional[Any] = Field(
|
|
448
|
-
alias="additionalMetaData", default=None
|
|
449
|
-
)
|
|
450
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
451
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
452
|
-
)
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
class SubscriptionFutureUpdateData(BaseModel):
|
|
502
|
+
class SubscriptionScheduledUpdateData(BaseModel):
|
|
456
503
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
457
504
|
alias="subscriptionScheduleType"
|
|
458
505
|
)
|
|
459
506
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
460
507
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
461
|
-
target_package: Optional["
|
|
508
|
+
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
462
509
|
alias="targetPackage", default=None
|
|
463
510
|
)
|
|
464
511
|
schedule_variables: Optional[
|
|
465
512
|
Annotated[
|
|
466
513
|
Union[
|
|
467
|
-
"
|
|
468
|
-
"
|
|
469
|
-
"
|
|
470
|
-
"
|
|
471
|
-
"
|
|
472
|
-
"
|
|
473
|
-
"
|
|
474
|
-
"
|
|
514
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
515
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
516
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
517
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
518
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
519
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
520
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
521
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
475
522
|
],
|
|
476
523
|
Field(discriminator="typename__"),
|
|
477
524
|
]
|
|
478
525
|
] = Field(alias="scheduleVariables", default=None)
|
|
479
526
|
|
|
480
527
|
|
|
481
|
-
class
|
|
528
|
+
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
482
529
|
id: Any
|
|
483
530
|
ref_id: str = Field(alias="refId")
|
|
484
531
|
display_name: str = Field(alias="displayName")
|
|
485
532
|
|
|
486
533
|
|
|
487
|
-
class
|
|
534
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
488
535
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
489
536
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
490
537
|
new_quantity: float = Field(alias="newQuantity")
|
|
491
538
|
|
|
492
539
|
|
|
493
|
-
class
|
|
540
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
494
541
|
BaseModel
|
|
495
542
|
):
|
|
496
543
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -498,53 +545,55 @@ class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVaria
|
|
|
498
545
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
499
546
|
|
|
500
547
|
|
|
501
|
-
class
|
|
548
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
502
549
|
BaseModel
|
|
503
550
|
):
|
|
504
551
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
505
552
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
506
553
|
|
|
507
554
|
|
|
508
|
-
class
|
|
555
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
509
556
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
510
557
|
|
|
511
558
|
|
|
512
|
-
class
|
|
559
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
560
|
+
BaseModel
|
|
561
|
+
):
|
|
513
562
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
514
563
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
515
564
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
516
565
|
billable_features: Optional[
|
|
517
566
|
List[
|
|
518
|
-
"
|
|
567
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
519
568
|
]
|
|
520
569
|
] = Field(alias="billableFeatures", default=None)
|
|
521
570
|
addons: Optional[
|
|
522
571
|
List[
|
|
523
|
-
"
|
|
572
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
524
573
|
]
|
|
525
574
|
] = Field(default=None)
|
|
526
575
|
price_overrides: Optional[
|
|
527
576
|
List[
|
|
528
|
-
"
|
|
577
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
529
578
|
]
|
|
530
579
|
] = Field(alias="priceOverrides", default=None)
|
|
531
580
|
|
|
532
581
|
|
|
533
|
-
class
|
|
582
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
534
583
|
BaseModel
|
|
535
584
|
):
|
|
536
585
|
feature_id: str = Field(alias="featureId")
|
|
537
586
|
quantity: float
|
|
538
587
|
|
|
539
588
|
|
|
540
|
-
class
|
|
589
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
541
590
|
BaseModel
|
|
542
591
|
):
|
|
543
592
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
544
593
|
quantity: float
|
|
545
594
|
|
|
546
595
|
|
|
547
|
-
class
|
|
596
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
548
597
|
BaseModel
|
|
549
598
|
):
|
|
550
599
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -552,39 +601,43 @@ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPrice
|
|
|
552
601
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
553
602
|
|
|
554
603
|
|
|
555
|
-
class
|
|
604
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
556
605
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
557
606
|
plan_ref_id: str = Field(alias="planRefId")
|
|
558
607
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
559
608
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
560
609
|
billable_features: Optional[
|
|
561
610
|
List[
|
|
562
|
-
"
|
|
611
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
563
612
|
]
|
|
564
613
|
] = Field(alias="billableFeatures", default=None)
|
|
565
614
|
addons: Optional[
|
|
566
|
-
List[
|
|
615
|
+
List[
|
|
616
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
617
|
+
]
|
|
567
618
|
] = Field(default=None)
|
|
568
619
|
price_overrides: Optional[
|
|
569
620
|
List[
|
|
570
|
-
"
|
|
621
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
571
622
|
]
|
|
572
623
|
] = Field(alias="priceOverrides", default=None)
|
|
573
624
|
|
|
574
625
|
|
|
575
|
-
class
|
|
626
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
576
627
|
BaseModel
|
|
577
628
|
):
|
|
578
629
|
feature_id: str = Field(alias="featureId")
|
|
579
630
|
quantity: float
|
|
580
631
|
|
|
581
632
|
|
|
582
|
-
class
|
|
633
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
634
|
+
BaseModel
|
|
635
|
+
):
|
|
583
636
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
584
637
|
quantity: float
|
|
585
638
|
|
|
586
639
|
|
|
587
|
-
class
|
|
640
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
588
641
|
BaseModel
|
|
589
642
|
):
|
|
590
643
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -592,7 +645,7 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverr
|
|
|
592
645
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
593
646
|
|
|
594
647
|
|
|
595
|
-
class
|
|
648
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
596
649
|
BaseModel
|
|
597
650
|
):
|
|
598
651
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -600,83 +653,53 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariab
|
|
|
600
653
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
601
654
|
|
|
602
655
|
|
|
603
|
-
class
|
|
656
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
657
|
+
BaseModel
|
|
658
|
+
):
|
|
604
659
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
605
660
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
606
661
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
607
662
|
|
|
608
663
|
|
|
609
|
-
class
|
|
610
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
class SubscriptionInvoiceFragment(BaseModel):
|
|
614
|
-
billing_id: str = Field(alias="billingId")
|
|
615
|
-
status: SubscriptionInvoiceStatus
|
|
616
|
-
created_at: Any = Field(alias="createdAt")
|
|
617
|
-
due_date: Optional[Any] = Field(alias="dueDate", default=None)
|
|
618
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
619
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
620
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
621
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
622
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
623
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
624
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
625
|
-
alias="billingReason", default=None
|
|
626
|
-
)
|
|
627
|
-
currency: Optional[str] = Field(default=None)
|
|
628
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
629
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
630
|
-
alias="subTotalExcludingTax", default=None
|
|
631
|
-
)
|
|
632
|
-
total: Optional[float] = Field(default=None)
|
|
633
|
-
total_excluding_tax: Optional[float] = Field(
|
|
634
|
-
alias="totalExcludingTax", default=None
|
|
635
|
-
)
|
|
636
|
-
tax: Optional[float] = Field(default=None)
|
|
637
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
638
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
class SubscriptionScheduledUpdateData(BaseModel):
|
|
664
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
642
665
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
643
666
|
alias="subscriptionScheduleType"
|
|
644
667
|
)
|
|
645
668
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
646
669
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
647
|
-
target_package: Optional["
|
|
670
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
648
671
|
alias="targetPackage", default=None
|
|
649
672
|
)
|
|
650
673
|
schedule_variables: Optional[
|
|
651
674
|
Annotated[
|
|
652
675
|
Union[
|
|
653
|
-
"
|
|
654
|
-
"
|
|
655
|
-
"
|
|
656
|
-
"
|
|
657
|
-
"
|
|
658
|
-
"
|
|
659
|
-
"
|
|
660
|
-
"
|
|
676
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
677
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
678
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
679
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
680
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
681
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
682
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
683
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
661
684
|
],
|
|
662
685
|
Field(discriminator="typename__"),
|
|
663
686
|
]
|
|
664
687
|
] = Field(alias="scheduleVariables", default=None)
|
|
665
688
|
|
|
666
689
|
|
|
667
|
-
class
|
|
690
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
668
691
|
id: Any
|
|
669
692
|
ref_id: str = Field(alias="refId")
|
|
670
693
|
display_name: str = Field(alias="displayName")
|
|
671
694
|
|
|
672
695
|
|
|
673
|
-
class
|
|
696
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
674
697
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
675
698
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
676
699
|
new_quantity: float = Field(alias="newQuantity")
|
|
677
700
|
|
|
678
701
|
|
|
679
|
-
class
|
|
702
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
680
703
|
BaseModel
|
|
681
704
|
):
|
|
682
705
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -684,55 +707,53 @@ class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVa
|
|
|
684
707
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
685
708
|
|
|
686
709
|
|
|
687
|
-
class
|
|
710
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
688
711
|
BaseModel
|
|
689
712
|
):
|
|
690
713
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
691
714
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
692
715
|
|
|
693
716
|
|
|
694
|
-
class
|
|
717
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
695
718
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
696
719
|
|
|
697
720
|
|
|
698
|
-
class
|
|
699
|
-
BaseModel
|
|
700
|
-
):
|
|
721
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
701
722
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
702
723
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
703
724
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
704
725
|
billable_features: Optional[
|
|
705
726
|
List[
|
|
706
|
-
"
|
|
727
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
707
728
|
]
|
|
708
729
|
] = Field(alias="billableFeatures", default=None)
|
|
709
730
|
addons: Optional[
|
|
710
731
|
List[
|
|
711
|
-
"
|
|
732
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
712
733
|
]
|
|
713
734
|
] = Field(default=None)
|
|
714
735
|
price_overrides: Optional[
|
|
715
736
|
List[
|
|
716
|
-
"
|
|
737
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
717
738
|
]
|
|
718
739
|
] = Field(alias="priceOverrides", default=None)
|
|
719
740
|
|
|
720
741
|
|
|
721
|
-
class
|
|
742
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
722
743
|
BaseModel
|
|
723
744
|
):
|
|
724
745
|
feature_id: str = Field(alias="featureId")
|
|
725
746
|
quantity: float
|
|
726
747
|
|
|
727
748
|
|
|
728
|
-
class
|
|
749
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
729
750
|
BaseModel
|
|
730
751
|
):
|
|
731
752
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
732
753
|
quantity: float
|
|
733
754
|
|
|
734
755
|
|
|
735
|
-
class
|
|
756
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
736
757
|
BaseModel
|
|
737
758
|
):
|
|
738
759
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -740,43 +761,39 @@ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPr
|
|
|
740
761
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
741
762
|
|
|
742
763
|
|
|
743
|
-
class
|
|
764
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
744
765
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
745
766
|
plan_ref_id: str = Field(alias="planRefId")
|
|
746
767
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
747
768
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
748
769
|
billable_features: Optional[
|
|
749
770
|
List[
|
|
750
|
-
"
|
|
771
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
751
772
|
]
|
|
752
773
|
] = Field(alias="billableFeatures", default=None)
|
|
753
774
|
addons: Optional[
|
|
754
|
-
List[
|
|
755
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
756
|
-
]
|
|
775
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
757
776
|
] = Field(default=None)
|
|
758
777
|
price_overrides: Optional[
|
|
759
778
|
List[
|
|
760
|
-
"
|
|
779
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
761
780
|
]
|
|
762
781
|
] = Field(alias="priceOverrides", default=None)
|
|
763
782
|
|
|
764
783
|
|
|
765
|
-
class
|
|
784
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
766
785
|
BaseModel
|
|
767
786
|
):
|
|
768
787
|
feature_id: str = Field(alias="featureId")
|
|
769
788
|
quantity: float
|
|
770
789
|
|
|
771
790
|
|
|
772
|
-
class
|
|
773
|
-
BaseModel
|
|
774
|
-
):
|
|
791
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
775
792
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
776
793
|
quantity: float
|
|
777
794
|
|
|
778
795
|
|
|
779
|
-
class
|
|
796
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
780
797
|
BaseModel
|
|
781
798
|
):
|
|
782
799
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -784,7 +801,7 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOv
|
|
|
784
801
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
785
802
|
|
|
786
803
|
|
|
787
|
-
class
|
|
804
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
788
805
|
BaseModel
|
|
789
806
|
):
|
|
790
807
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -792,31 +809,14 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVar
|
|
|
792
809
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
793
810
|
|
|
794
811
|
|
|
795
|
-
class
|
|
796
|
-
BaseModel
|
|
797
|
-
):
|
|
812
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
798
813
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
799
814
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
800
815
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
801
816
|
|
|
802
817
|
|
|
803
|
-
class
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
class TotalPriceFragment(BaseModel):
|
|
808
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
809
|
-
total: "TotalPriceFragmentTotal"
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
813
|
-
amount: float
|
|
814
|
-
currency: Currency
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
818
|
-
amount: float
|
|
819
|
-
currency: Currency
|
|
818
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
819
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
820
820
|
|
|
821
821
|
|
|
822
822
|
class SubscriptionFragment(BaseModel):
|
|
@@ -1005,6 +1005,10 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
1005
1005
|
)
|
|
1006
1006
|
|
|
1007
1007
|
|
|
1008
|
+
class ZuoraCheckoutCredentialsFragment(BaseModel):
|
|
1009
|
+
publishable_key: str = Field(alias="publishableKey")
|
|
1010
|
+
|
|
1011
|
+
|
|
1008
1012
|
class CouponFragment(BaseModel):
|
|
1009
1013
|
id: Any
|
|
1010
1014
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1132,10 +1136,6 @@ class StripeCheckoutCredentialsFragment(BaseModel):
|
|
|
1132
1136
|
public_key: Optional[str] = Field(alias="publicKey", default=None)
|
|
1133
1137
|
|
|
1134
1138
|
|
|
1135
|
-
class ZuoraCheckoutCredentialsFragment(BaseModel):
|
|
1136
|
-
publishable_key: str = Field(alias="publishableKey")
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
1139
|
class CheckoutStateFragment(BaseModel):
|
|
1140
1140
|
configuration: Optional["CheckoutStateFragmentConfiguration"] = Field(default=None)
|
|
1141
1141
|
setup_secret: str = Field(alias="setupSecret")
|
|
@@ -1352,13 +1352,6 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1352
1352
|
pass
|
|
1353
1353
|
|
|
1354
1354
|
|
|
1355
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1356
|
-
addon_id: str = Field(alias="addonId")
|
|
1357
|
-
description: Optional[str] = Field(default=None)
|
|
1358
|
-
display_name: str = Field(alias="displayName")
|
|
1359
|
-
quantity: int
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
1355
|
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1363
1356
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1364
1357
|
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
@@ -1563,6 +1556,13 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1563
1556
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1564
1557
|
|
|
1565
1558
|
|
|
1559
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1560
|
+
addon_id: str = Field(alias="addonId")
|
|
1561
|
+
description: Optional[str] = Field(default=None)
|
|
1562
|
+
display_name: str = Field(alias="displayName")
|
|
1563
|
+
quantity: int
|
|
1564
|
+
|
|
1565
|
+
|
|
1566
1566
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1567
1567
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1568
1568
|
plan_id: str = Field(alias="planId")
|
|
@@ -1904,6 +1904,41 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1904
1904
|
description: Optional[str] = Field(default=None)
|
|
1905
1905
|
|
|
1906
1906
|
|
|
1907
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1908
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1909
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1910
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1911
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1912
|
+
alias="resetPeriod", default=None
|
|
1913
|
+
)
|
|
1914
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1915
|
+
alias="hiddenFromWidgets", default=None
|
|
1916
|
+
)
|
|
1917
|
+
display_name_override: Optional[str] = Field(
|
|
1918
|
+
alias="displayNameOverride", default=None
|
|
1919
|
+
)
|
|
1920
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
1921
|
+
is_granted: bool = Field(alias="isGranted")
|
|
1922
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1923
|
+
default=None
|
|
1924
|
+
)
|
|
1925
|
+
|
|
1926
|
+
|
|
1927
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1928
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1929
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1930
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1931
|
+
feature_units_plural: Optional[str] = Field(
|
|
1932
|
+
alias="featureUnitsPlural", default=None
|
|
1933
|
+
)
|
|
1934
|
+
display_name: str = Field(alias="displayName")
|
|
1935
|
+
description: Optional[str] = Field(default=None)
|
|
1936
|
+
ref_id: str = Field(alias="refId")
|
|
1937
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1938
|
+
alias="additionalMetaData", default=None
|
|
1939
|
+
)
|
|
1940
|
+
|
|
1941
|
+
|
|
1907
1942
|
class MockPaywallPriceFragment(BaseModel):
|
|
1908
1943
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1909
1944
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1946,41 +1981,6 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1946
1981
|
display_name: str = Field(alias="displayName")
|
|
1947
1982
|
|
|
1948
1983
|
|
|
1949
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1950
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1951
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1952
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1953
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1954
|
-
alias="resetPeriod", default=None
|
|
1955
|
-
)
|
|
1956
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1957
|
-
alias="hiddenFromWidgets", default=None
|
|
1958
|
-
)
|
|
1959
|
-
display_name_override: Optional[str] = Field(
|
|
1960
|
-
alias="displayNameOverride", default=None
|
|
1961
|
-
)
|
|
1962
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
1963
|
-
is_granted: bool = Field(alias="isGranted")
|
|
1964
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1965
|
-
default=None
|
|
1966
|
-
)
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1970
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1971
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1972
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1973
|
-
feature_units_plural: Optional[str] = Field(
|
|
1974
|
-
alias="featureUnitsPlural", default=None
|
|
1975
|
-
)
|
|
1976
|
-
display_name: str = Field(alias="displayName")
|
|
1977
|
-
description: Optional[str] = Field(default=None)
|
|
1978
|
-
ref_id: str = Field(alias="refId")
|
|
1979
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1980
|
-
alias="additionalMetaData", default=None
|
|
1981
|
-
)
|
|
1982
|
-
|
|
1983
|
-
|
|
1984
1984
|
class MockPaywallAddonFragment(BaseModel):
|
|
1985
1985
|
ref_id: str = Field(alias="refId")
|
|
1986
1986
|
display_name: str = Field(alias="displayName")
|
|
@@ -2960,40 +2960,40 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2960
2960
|
AddonDependencyFragment.model_rebuild()
|
|
2961
2961
|
PriceTierFragment.model_rebuild()
|
|
2962
2962
|
PriceFragment.model_rebuild()
|
|
2963
|
-
OveragePriceFragment.model_rebuild()
|
|
2964
2963
|
PackageEntitlementFragment.model_rebuild()
|
|
2964
|
+
OveragePriceFragment.model_rebuild()
|
|
2965
2965
|
AddonFragment.model_rebuild()
|
|
2966
2966
|
FeatureFragment.model_rebuild()
|
|
2967
2967
|
EntitlementFragment.model_rebuild()
|
|
2968
|
-
|
|
2968
|
+
SlimCustomerFragment.model_rebuild()
|
|
2969
|
+
CustomerResourceFragment.model_rebuild()
|
|
2970
|
+
TotalPriceFragment.model_rebuild()
|
|
2971
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2969
2972
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2973
|
+
ProductFragment.model_rebuild()
|
|
2970
2974
|
PlanFragment.model_rebuild()
|
|
2971
|
-
|
|
2975
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2972
2976
|
SubscriptionFutureUpdateData.model_rebuild()
|
|
2973
2977
|
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2974
|
-
SubscriptionInvoiceFragment.model_rebuild()
|
|
2975
|
-
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2976
|
-
CustomerResourceFragment.model_rebuild()
|
|
2977
|
-
TotalPriceFragment.model_rebuild()
|
|
2978
2978
|
SubscriptionFragment.model_rebuild()
|
|
2979
2979
|
ApplySubscriptionFragment.model_rebuild()
|
|
2980
2980
|
FontVariantFragment.model_rebuild()
|
|
2981
2981
|
TypographyConfigurationFragment.model_rebuild()
|
|
2982
2982
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2983
|
+
ZuoraCheckoutCredentialsFragment.model_rebuild()
|
|
2983
2984
|
CouponFragment.model_rebuild()
|
|
2984
2985
|
PromotionalEntitlementFragment.model_rebuild()
|
|
2985
2986
|
CustomerFragment.model_rebuild()
|
|
2986
2987
|
StripeCheckoutCredentialsFragment.model_rebuild()
|
|
2987
|
-
ZuoraCheckoutCredentialsFragment.model_rebuild()
|
|
2988
2988
|
CheckoutStateFragment.model_rebuild()
|
|
2989
2989
|
CreditGrantFragment.model_rebuild()
|
|
2990
2990
|
CreditsBalanceSummaryFragment.model_rebuild()
|
|
2991
2991
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2992
2992
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2993
2993
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2994
|
-
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2995
2994
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2996
2995
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2996
|
+
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2997
2997
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2998
2998
|
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2999
2999
|
CustomerPortalFragment.model_rebuild()
|
|
@@ -3005,8 +3005,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
3005
3005
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
3006
3006
|
LayoutConfigurationFragment.model_rebuild()
|
|
3007
3007
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
3008
|
-
MockPaywallPriceFragment.model_rebuild()
|
|
3009
3008
|
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
3009
|
+
MockPaywallPriceFragment.model_rebuild()
|
|
3010
3010
|
MockPaywallAddonFragment.model_rebuild()
|
|
3011
3011
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
3012
3012
|
MockPaywallPlanFragment.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -2075,6 +2075,7 @@ class GetPaywallInput(BaseModel):
|
|
|
2075
2075
|
include_hidden_plans: Optional[bool] = Field(
|
|
2076
2076
|
alias="includeHiddenPlans", default=False
|
|
2077
2077
|
)
|
|
2078
|
+
offer_id: Optional[str] = Field(alias="offerId", default=None)
|
|
2078
2079
|
product_id: Optional[str] = Field(alias="productId", default=None)
|
|
2079
2080
|
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
2080
2081
|
|
|
@@ -120,11 +120,11 @@ stigg/generated/create_payment_session.py,sha256=VRPT8Bbvb_evFHMav9y_pXWHMVbkRy9
|
|
|
120
120
|
stigg/generated/create_subscription.py,sha256=vbpBJ_daXHcQDtvU3vbwSr2E7s4VGRHxqPavyTV3Mtk,457
|
|
121
121
|
stigg/generated/delegate_subscription_to_customer.py,sha256=0TgQDO0Hk-z7X7PGtqhvciqa8IjkToK9cpiX3Kqu_UY,561
|
|
122
122
|
stigg/generated/detach_customer_payment_method.py,sha256=ACXlC2xsGaUP723OrayFZQ9SbXxe8TtVUYdG1gqcYFc,523
|
|
123
|
-
stigg/generated/enums.py,sha256=
|
|
123
|
+
stigg/generated/enums.py,sha256=GUBhhmgXbKhCp6QDgT9ZIaAEKqChO3IQDwKxXjB8Mf4,38870
|
|
124
124
|
stigg/generated/estimate_subscription.py,sha256=c0_vg0A_Hi8fdjeGudWZ0WziUF9jcjX5rlRitGMAMaQ,479
|
|
125
125
|
stigg/generated/estimate_subscription_update.py,sha256=ZYIFqqHHDfzhrOn95QnMmPNTXZ7JrKWRlUFzk8fWwKA,528
|
|
126
126
|
stigg/generated/exceptions.py,sha256=OQu-ZYCCV4VyMWTd1HR8gIjIK2CrA_JMlFxqOAJugWY,2411
|
|
127
|
-
stigg/generated/fragments.py,sha256=
|
|
127
|
+
stigg/generated/fragments.py,sha256=ZWSTvpiIxtpCQ2bi_dKhsnsrl0f6htI-Rm58mBeM4Rg,108321
|
|
128
128
|
stigg/generated/get_active_subscriptions.py,sha256=ngZ9jr8vzGI59wT8FhUFl46a8j9waoNjeZ1_lrcu2ww,513
|
|
129
129
|
stigg/generated/get_active_subscriptions_list.py,sha256=Awi9al2MXxdt_y7ZnWYZh8U3R9XiX50c7TyO4WZxyhw,541
|
|
130
130
|
stigg/generated/get_checkout_state.py,sha256=SAOXGAND879dwb7R5mr5LPZuPVuMUDwNR5M4mgmHv6w,409
|
|
@@ -150,7 +150,7 @@ stigg/generated/grant_promotional_entitlements_group.py,sha256=iQwCd07VFaYbsN_E-
|
|
|
150
150
|
stigg/generated/import_customer.py,sha256=yEtrEB7T-Aykv3AUl-rAQz2XL6hKL0j-7JL3h-xi87o,403
|
|
151
151
|
stigg/generated/import_customer_bulk.py,sha256=miLn2ScWlPOH1IipltY5Vgd-ZQ_BkBk9t3-EsLvU5ZQ,284
|
|
152
152
|
stigg/generated/import_subscriptions_bulk.py,sha256=QgitpZkjE7eBhP1o5W0PTVAbKOvz61dNoeBAWupIcgU,297
|
|
153
|
-
stigg/generated/input_types.py,sha256=
|
|
153
|
+
stigg/generated/input_types.py,sha256=rC6CO3AJtYAagb9CtOEuVwQkULotuN6o0ZfwIoapsxM,213760
|
|
154
154
|
stigg/generated/migrate_subscription_to_latest.py,sha256=qQDwH7EodYAeJFb62IIl-MAEB5MbthgCJ0v1RMxpdYk,516
|
|
155
155
|
stigg/generated/preview_next_invoice.py,sha256=MiQ4Gv7Ve1Hv60xhaQi7uj82aq0xLP2UB-gjvcQdOL8,478
|
|
156
156
|
stigg/generated/preview_subscription.py,sha256=Qo2vlFs7sFzqaE8J_e-EHTRfLvG46lko-dcJMxDSCR0,475
|
|
@@ -168,7 +168,7 @@ stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9e
|
|
|
168
168
|
stigg/generated/unlink_promotional_entitlements_group.py,sha256=8UIRQ0CNvReRfX0LZmDYkRn9mMjZm9n41YG6-p7Z8qU,636
|
|
169
169
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
170
170
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
171
|
-
stigg_api_client_v2-3.
|
|
172
|
-
stigg_api_client_v2-3.
|
|
173
|
-
stigg_api_client_v2-3.
|
|
174
|
-
stigg_api_client_v2-3.
|
|
171
|
+
stigg_api_client_v2-3.81.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
172
|
+
stigg_api_client_v2-3.81.0.dist-info/METADATA,sha256=LcMEpt4lwOrjhNpB-oJm5QeSaTVJtS-pmoqkpc_LvEM,2257
|
|
173
|
+
stigg_api_client_v2-3.81.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
174
|
+
stigg_api_client_v2-3.81.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|