stigg-api-client-v2 2.315.2__py3-none-any.whl → 2.315.3__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 +271 -271
- {stigg_api_client_v2-2.315.2.dist-info → stigg_api_client_v2-2.315.3.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.315.2.dist-info → stigg_api_client_v2-2.315.3.dist-info}/RECORD +6 -6
- {stigg_api_client_v2-2.315.2.dist-info → stigg_api_client_v2-2.315.3.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.315.2.dist-info → stigg_api_client_v2-2.315.3.dist-info}/WHEEL +0 -0
stigg/generated/enums.py
CHANGED
|
@@ -436,6 +436,7 @@ class ErrorCode(str, Enum):
|
|
|
436
436
|
DraftAddonCantBeArchived = "DraftAddonCantBeArchived"
|
|
437
437
|
DraftPlanCantBeArchived = "DraftPlanCantBeArchived"
|
|
438
438
|
DuplicateAddonProvisionedError = "DuplicateAddonProvisionedError"
|
|
439
|
+
DuplicateIntegrationNotAllowed = "DuplicateIntegrationNotAllowed"
|
|
439
440
|
DuplicateProductValidationError = "DuplicateProductValidationError"
|
|
440
441
|
DuplicatedEntityNotAllowed = "DuplicatedEntityNotAllowed"
|
|
441
442
|
EditAllowedOnDraftPackageOnlyError = "EditAllowedOnDraftPackageOnlyError"
|
stigg/generated/fragments.py
CHANGED
|
@@ -298,45 +298,66 @@ class EntitlementFragmentFeature(FeatureFragment):
|
|
|
298
298
|
pass
|
|
299
299
|
|
|
300
300
|
|
|
301
|
-
class
|
|
301
|
+
class SlimCustomerFragment(BaseModel):
|
|
302
|
+
id: str
|
|
303
|
+
name: Optional[str] = Field(default=None)
|
|
304
|
+
email: Optional[str] = Field(default=None)
|
|
305
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
306
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
307
|
+
ref_id: str = Field(alias="refId")
|
|
308
|
+
customer_id: str = Field(alias="customerId")
|
|
309
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
310
|
+
additional_meta_data: Optional[Any] = Field(
|
|
311
|
+
alias="additionalMetaData", default=None
|
|
312
|
+
)
|
|
313
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
314
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
315
|
+
)
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
class CustomerResourceFragment(BaseModel):
|
|
319
|
+
resource_id: str = Field(alias="resourceId")
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
302
323
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
303
324
|
alias="subscriptionScheduleType"
|
|
304
325
|
)
|
|
305
326
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
306
327
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
307
|
-
target_package: Optional["
|
|
328
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
308
329
|
alias="targetPackage", default=None
|
|
309
330
|
)
|
|
310
331
|
schedule_variables: Optional[
|
|
311
332
|
Annotated[
|
|
312
333
|
Union[
|
|
313
|
-
"
|
|
314
|
-
"
|
|
315
|
-
"
|
|
316
|
-
"
|
|
317
|
-
"
|
|
318
|
-
"
|
|
319
|
-
"
|
|
320
|
-
"
|
|
334
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
335
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
336
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
337
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
338
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
339
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
340
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
341
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
321
342
|
],
|
|
322
343
|
Field(discriminator="typename__"),
|
|
323
344
|
]
|
|
324
345
|
] = Field(alias="scheduleVariables", default=None)
|
|
325
346
|
|
|
326
347
|
|
|
327
|
-
class
|
|
348
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
328
349
|
id: str
|
|
329
350
|
ref_id: str = Field(alias="refId")
|
|
330
351
|
display_name: str = Field(alias="displayName")
|
|
331
352
|
|
|
332
353
|
|
|
333
|
-
class
|
|
354
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
334
355
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
335
356
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
336
357
|
new_quantity: float = Field(alias="newQuantity")
|
|
337
358
|
|
|
338
359
|
|
|
339
|
-
class
|
|
360
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
340
361
|
BaseModel
|
|
341
362
|
):
|
|
342
363
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -344,55 +365,53 @@ class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVa
|
|
|
344
365
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
345
366
|
|
|
346
367
|
|
|
347
|
-
class
|
|
368
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
348
369
|
BaseModel
|
|
349
370
|
):
|
|
350
371
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
351
372
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
352
373
|
|
|
353
374
|
|
|
354
|
-
class
|
|
375
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
355
376
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
356
377
|
|
|
357
378
|
|
|
358
|
-
class
|
|
359
|
-
BaseModel
|
|
360
|
-
):
|
|
379
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
361
380
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
362
381
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
363
382
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
364
383
|
billable_features: Optional[
|
|
365
384
|
List[
|
|
366
|
-
"
|
|
385
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
367
386
|
]
|
|
368
387
|
] = Field(alias="billableFeatures", default=None)
|
|
369
388
|
addons: Optional[
|
|
370
389
|
List[
|
|
371
|
-
"
|
|
390
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
372
391
|
]
|
|
373
392
|
] = Field(default=None)
|
|
374
393
|
price_overrides: Optional[
|
|
375
394
|
List[
|
|
376
|
-
"
|
|
395
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
377
396
|
]
|
|
378
397
|
] = Field(alias="priceOverrides", default=None)
|
|
379
398
|
|
|
380
399
|
|
|
381
|
-
class
|
|
400
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
382
401
|
BaseModel
|
|
383
402
|
):
|
|
384
403
|
feature_id: str = Field(alias="featureId")
|
|
385
404
|
quantity: float
|
|
386
405
|
|
|
387
406
|
|
|
388
|
-
class
|
|
407
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
389
408
|
BaseModel
|
|
390
409
|
):
|
|
391
410
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
392
411
|
quantity: float
|
|
393
412
|
|
|
394
413
|
|
|
395
|
-
class
|
|
414
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
396
415
|
BaseModel
|
|
397
416
|
):
|
|
398
417
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -400,43 +419,39 @@ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPr
|
|
|
400
419
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
401
420
|
|
|
402
421
|
|
|
403
|
-
class
|
|
422
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
404
423
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
405
424
|
plan_ref_id: str = Field(alias="planRefId")
|
|
406
425
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
407
426
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
408
427
|
billable_features: Optional[
|
|
409
428
|
List[
|
|
410
|
-
"
|
|
429
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
411
430
|
]
|
|
412
431
|
] = Field(alias="billableFeatures", default=None)
|
|
413
432
|
addons: Optional[
|
|
414
|
-
List[
|
|
415
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
416
|
-
]
|
|
433
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
417
434
|
] = Field(default=None)
|
|
418
435
|
price_overrides: Optional[
|
|
419
436
|
List[
|
|
420
|
-
"
|
|
437
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
421
438
|
]
|
|
422
439
|
] = Field(alias="priceOverrides", default=None)
|
|
423
440
|
|
|
424
441
|
|
|
425
|
-
class
|
|
442
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
426
443
|
BaseModel
|
|
427
444
|
):
|
|
428
445
|
feature_id: str = Field(alias="featureId")
|
|
429
446
|
quantity: float
|
|
430
447
|
|
|
431
448
|
|
|
432
|
-
class
|
|
433
|
-
BaseModel
|
|
434
|
-
):
|
|
449
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
435
450
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
436
451
|
quantity: float
|
|
437
452
|
|
|
438
453
|
|
|
439
|
-
class
|
|
454
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
440
455
|
BaseModel
|
|
441
456
|
):
|
|
442
457
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -444,7 +459,7 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOv
|
|
|
444
459
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
445
460
|
|
|
446
461
|
|
|
447
|
-
class
|
|
462
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
448
463
|
BaseModel
|
|
449
464
|
):
|
|
450
465
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -452,198 +467,51 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVar
|
|
|
452
467
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
453
468
|
|
|
454
469
|
|
|
455
|
-
class
|
|
456
|
-
BaseModel
|
|
457
|
-
):
|
|
470
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
458
471
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
459
472
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
460
473
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
461
474
|
|
|
462
475
|
|
|
463
|
-
class
|
|
464
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
class SlimCustomerFragment(BaseModel):
|
|
468
|
-
id: str
|
|
469
|
-
name: Optional[str] = Field(default=None)
|
|
470
|
-
email: Optional[str] = Field(default=None)
|
|
471
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
472
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
473
|
-
ref_id: str = Field(alias="refId")
|
|
474
|
-
customer_id: str = Field(alias="customerId")
|
|
475
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
476
|
-
additional_meta_data: Optional[Any] = Field(
|
|
477
|
-
alias="additionalMetaData", default=None
|
|
478
|
-
)
|
|
479
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
480
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
481
|
-
)
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
class CustomerResourceFragment(BaseModel):
|
|
485
|
-
resource_id: str = Field(alias="resourceId")
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
class ProductFragment(BaseModel):
|
|
489
|
-
ref_id: str = Field(alias="refId")
|
|
490
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
491
|
-
description: Optional[str] = Field(default=None)
|
|
492
|
-
additional_meta_data: Optional[Any] = Field(
|
|
493
|
-
alias="additionalMetaData", default=None
|
|
494
|
-
)
|
|
495
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
499
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
500
|
-
alias="downgradePlan", default=None
|
|
501
|
-
)
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
505
|
-
ref_id: str = Field(alias="refId")
|
|
506
|
-
display_name: str = Field(alias="displayName")
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
510
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
511
|
-
display_name: str = Field(alias="displayName")
|
|
512
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
513
|
-
default=None
|
|
514
|
-
)
|
|
515
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
519
|
-
pass
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
523
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
524
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
class PlanFragment(BaseModel):
|
|
528
|
-
id: str
|
|
529
|
-
ref_id: str = Field(alias="refId")
|
|
530
|
-
display_name: str = Field(alias="displayName")
|
|
531
|
-
description: Optional[str] = Field(default=None)
|
|
532
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
533
|
-
version_number: int = Field(alias="versionNumber")
|
|
534
|
-
additional_meta_data: Optional[Any] = Field(
|
|
535
|
-
alias="additionalMetaData", default=None
|
|
536
|
-
)
|
|
537
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
538
|
-
alias="hiddenFromWidgets", default=None
|
|
539
|
-
)
|
|
540
|
-
product: "PlanFragmentProduct"
|
|
541
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
542
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
543
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
544
|
-
alias="inheritedEntitlements", default=None
|
|
545
|
-
)
|
|
546
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
547
|
-
alias="compatibleAddons", default=None
|
|
548
|
-
)
|
|
549
|
-
compatible_package_groups: Optional[
|
|
550
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
551
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
552
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
553
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
554
|
-
alias="overagePrices", default=None
|
|
555
|
-
)
|
|
556
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
557
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
558
|
-
alias="defaultTrialConfig", default=None
|
|
559
|
-
)
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
class PlanFragmentProduct(ProductFragment):
|
|
563
|
-
pass
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
567
|
-
ref_id: str = Field(alias="refId")
|
|
568
|
-
display_name: str = Field(alias="displayName")
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
572
|
-
pass
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
576
|
-
pass
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
580
|
-
pass
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
584
|
-
pass
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
class PlanFragmentPrices(PriceFragment):
|
|
588
|
-
pass
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
592
|
-
pass
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
596
|
-
duration: float
|
|
597
|
-
units: TrialPeriodUnits
|
|
598
|
-
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
599
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
600
|
-
alias="trialEndBehavior", default=None
|
|
601
|
-
)
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
605
|
-
limit: float
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
class SubscriptionFutureUpdateData(BaseModel):
|
|
476
|
+
class SubscriptionScheduledUpdateData(BaseModel):
|
|
609
477
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
610
478
|
alias="subscriptionScheduleType"
|
|
611
479
|
)
|
|
612
480
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
613
481
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
614
|
-
target_package: Optional["
|
|
482
|
+
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
615
483
|
alias="targetPackage", default=None
|
|
616
484
|
)
|
|
617
485
|
schedule_variables: Optional[
|
|
618
486
|
Annotated[
|
|
619
487
|
Union[
|
|
620
|
-
"
|
|
621
|
-
"
|
|
622
|
-
"
|
|
623
|
-
"
|
|
624
|
-
"
|
|
625
|
-
"
|
|
626
|
-
"
|
|
627
|
-
"
|
|
488
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
489
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
490
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
491
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
492
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
493
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
494
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
495
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
628
496
|
],
|
|
629
497
|
Field(discriminator="typename__"),
|
|
630
498
|
]
|
|
631
499
|
] = Field(alias="scheduleVariables", default=None)
|
|
632
500
|
|
|
633
501
|
|
|
634
|
-
class
|
|
502
|
+
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
635
503
|
id: str
|
|
636
504
|
ref_id: str = Field(alias="refId")
|
|
637
505
|
display_name: str = Field(alias="displayName")
|
|
638
506
|
|
|
639
507
|
|
|
640
|
-
class
|
|
508
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
641
509
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
642
510
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
643
511
|
new_quantity: float = Field(alias="newQuantity")
|
|
644
512
|
|
|
645
513
|
|
|
646
|
-
class
|
|
514
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
647
515
|
BaseModel
|
|
648
516
|
):
|
|
649
517
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -651,53 +519,55 @@ class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVaria
|
|
|
651
519
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
652
520
|
|
|
653
521
|
|
|
654
|
-
class
|
|
522
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
655
523
|
BaseModel
|
|
656
524
|
):
|
|
657
525
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
658
526
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
659
527
|
|
|
660
528
|
|
|
661
|
-
class
|
|
529
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
662
530
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
663
531
|
|
|
664
532
|
|
|
665
|
-
class
|
|
533
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
534
|
+
BaseModel
|
|
535
|
+
):
|
|
666
536
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
667
537
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
668
538
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
669
539
|
billable_features: Optional[
|
|
670
540
|
List[
|
|
671
|
-
"
|
|
541
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
672
542
|
]
|
|
673
543
|
] = Field(alias="billableFeatures", default=None)
|
|
674
544
|
addons: Optional[
|
|
675
545
|
List[
|
|
676
|
-
"
|
|
546
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
677
547
|
]
|
|
678
548
|
] = Field(default=None)
|
|
679
549
|
price_overrides: Optional[
|
|
680
550
|
List[
|
|
681
|
-
"
|
|
551
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
682
552
|
]
|
|
683
553
|
] = Field(alias="priceOverrides", default=None)
|
|
684
554
|
|
|
685
555
|
|
|
686
|
-
class
|
|
556
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
687
557
|
BaseModel
|
|
688
558
|
):
|
|
689
559
|
feature_id: str = Field(alias="featureId")
|
|
690
560
|
quantity: float
|
|
691
561
|
|
|
692
562
|
|
|
693
|
-
class
|
|
563
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
694
564
|
BaseModel
|
|
695
565
|
):
|
|
696
566
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
697
567
|
quantity: float
|
|
698
568
|
|
|
699
569
|
|
|
700
|
-
class
|
|
570
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
701
571
|
BaseModel
|
|
702
572
|
):
|
|
703
573
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -705,39 +575,43 @@ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPrice
|
|
|
705
575
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
706
576
|
|
|
707
577
|
|
|
708
|
-
class
|
|
578
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
709
579
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
710
580
|
plan_ref_id: str = Field(alias="planRefId")
|
|
711
581
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
712
582
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
713
583
|
billable_features: Optional[
|
|
714
584
|
List[
|
|
715
|
-
"
|
|
585
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
716
586
|
]
|
|
717
587
|
] = Field(alias="billableFeatures", default=None)
|
|
718
588
|
addons: Optional[
|
|
719
|
-
List[
|
|
589
|
+
List[
|
|
590
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
591
|
+
]
|
|
720
592
|
] = Field(default=None)
|
|
721
593
|
price_overrides: Optional[
|
|
722
594
|
List[
|
|
723
|
-
"
|
|
595
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
724
596
|
]
|
|
725
597
|
] = Field(alias="priceOverrides", default=None)
|
|
726
598
|
|
|
727
599
|
|
|
728
|
-
class
|
|
600
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
729
601
|
BaseModel
|
|
730
602
|
):
|
|
731
603
|
feature_id: str = Field(alias="featureId")
|
|
732
604
|
quantity: float
|
|
733
605
|
|
|
734
606
|
|
|
735
|
-
class
|
|
607
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
608
|
+
BaseModel
|
|
609
|
+
):
|
|
736
610
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
737
611
|
quantity: float
|
|
738
612
|
|
|
739
613
|
|
|
740
|
-
class
|
|
614
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
741
615
|
BaseModel
|
|
742
616
|
):
|
|
743
617
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -745,7 +619,7 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverr
|
|
|
745
619
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
746
620
|
|
|
747
621
|
|
|
748
|
-
class
|
|
622
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
749
623
|
BaseModel
|
|
750
624
|
):
|
|
751
625
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -753,12 +627,33 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariab
|
|
|
753
627
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
754
628
|
|
|
755
629
|
|
|
756
|
-
class
|
|
630
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
631
|
+
BaseModel
|
|
632
|
+
):
|
|
757
633
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
758
634
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
759
635
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
760
636
|
|
|
761
637
|
|
|
638
|
+
class TotalPriceFragment(BaseModel):
|
|
639
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
640
|
+
total: "TotalPriceFragmentTotal"
|
|
641
|
+
|
|
642
|
+
|
|
643
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
644
|
+
amount: float
|
|
645
|
+
currency: Currency
|
|
646
|
+
|
|
647
|
+
|
|
648
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
649
|
+
amount: float
|
|
650
|
+
currency: Currency
|
|
651
|
+
|
|
652
|
+
|
|
653
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
654
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
655
|
+
|
|
656
|
+
|
|
762
657
|
class SubscriptionInvoiceFragment(BaseModel):
|
|
763
658
|
billing_id: str = Field(alias="billingId")
|
|
764
659
|
status: SubscriptionInvoiceStatus
|
|
@@ -786,19 +681,124 @@ class SubscriptionInvoiceFragment(BaseModel):
|
|
|
786
681
|
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
787
682
|
|
|
788
683
|
|
|
789
|
-
class
|
|
790
|
-
|
|
791
|
-
|
|
684
|
+
class ProductFragment(BaseModel):
|
|
685
|
+
ref_id: str = Field(alias="refId")
|
|
686
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
687
|
+
description: Optional[str] = Field(default=None)
|
|
688
|
+
additional_meta_data: Optional[Any] = Field(
|
|
689
|
+
alias="additionalMetaData", default=None
|
|
690
|
+
)
|
|
691
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
792
692
|
|
|
793
693
|
|
|
794
|
-
class
|
|
795
|
-
|
|
796
|
-
|
|
694
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
695
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
696
|
+
alias="downgradePlan", default=None
|
|
697
|
+
)
|
|
797
698
|
|
|
798
699
|
|
|
799
|
-
class
|
|
800
|
-
|
|
801
|
-
|
|
700
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
701
|
+
ref_id: str = Field(alias="refId")
|
|
702
|
+
display_name: str = Field(alias="displayName")
|
|
703
|
+
|
|
704
|
+
|
|
705
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
706
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
707
|
+
display_name: str = Field(alias="displayName")
|
|
708
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
709
|
+
default=None
|
|
710
|
+
)
|
|
711
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
712
|
+
|
|
713
|
+
|
|
714
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
715
|
+
pass
|
|
716
|
+
|
|
717
|
+
|
|
718
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
719
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
720
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
721
|
+
|
|
722
|
+
|
|
723
|
+
class PlanFragment(BaseModel):
|
|
724
|
+
id: str
|
|
725
|
+
ref_id: str = Field(alias="refId")
|
|
726
|
+
display_name: str = Field(alias="displayName")
|
|
727
|
+
description: Optional[str] = Field(default=None)
|
|
728
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
729
|
+
version_number: int = Field(alias="versionNumber")
|
|
730
|
+
additional_meta_data: Optional[Any] = Field(
|
|
731
|
+
alias="additionalMetaData", default=None
|
|
732
|
+
)
|
|
733
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
734
|
+
alias="hiddenFromWidgets", default=None
|
|
735
|
+
)
|
|
736
|
+
product: "PlanFragmentProduct"
|
|
737
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
738
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
739
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
740
|
+
alias="inheritedEntitlements", default=None
|
|
741
|
+
)
|
|
742
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
743
|
+
alias="compatibleAddons", default=None
|
|
744
|
+
)
|
|
745
|
+
compatible_package_groups: Optional[
|
|
746
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
747
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
748
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
749
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
750
|
+
alias="overagePrices", default=None
|
|
751
|
+
)
|
|
752
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
753
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
754
|
+
alias="defaultTrialConfig", default=None
|
|
755
|
+
)
|
|
756
|
+
|
|
757
|
+
|
|
758
|
+
class PlanFragmentProduct(ProductFragment):
|
|
759
|
+
pass
|
|
760
|
+
|
|
761
|
+
|
|
762
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
763
|
+
ref_id: str = Field(alias="refId")
|
|
764
|
+
display_name: str = Field(alias="displayName")
|
|
765
|
+
|
|
766
|
+
|
|
767
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
768
|
+
pass
|
|
769
|
+
|
|
770
|
+
|
|
771
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
772
|
+
pass
|
|
773
|
+
|
|
774
|
+
|
|
775
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
776
|
+
pass
|
|
777
|
+
|
|
778
|
+
|
|
779
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
780
|
+
pass
|
|
781
|
+
|
|
782
|
+
|
|
783
|
+
class PlanFragmentPrices(PriceFragment):
|
|
784
|
+
pass
|
|
785
|
+
|
|
786
|
+
|
|
787
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
788
|
+
pass
|
|
789
|
+
|
|
790
|
+
|
|
791
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
792
|
+
duration: float
|
|
793
|
+
units: TrialPeriodUnits
|
|
794
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
795
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
796
|
+
alias="trialEndBehavior", default=None
|
|
797
|
+
)
|
|
798
|
+
|
|
799
|
+
|
|
800
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
801
|
+
limit: float
|
|
802
802
|
|
|
803
803
|
|
|
804
804
|
class SubscriptionFragment(BaseModel):
|
|
@@ -1250,13 +1250,6 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1250
1250
|
pass
|
|
1251
1251
|
|
|
1252
1252
|
|
|
1253
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1254
|
-
addon_id: str = Field(alias="addonId")
|
|
1255
|
-
description: Optional[str] = Field(default=None)
|
|
1256
|
-
display_name: str = Field(alias="displayName")
|
|
1257
|
-
quantity: int
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
1253
|
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1261
1254
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1262
1255
|
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
@@ -1453,6 +1446,13 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1453
1446
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1454
1447
|
|
|
1455
1448
|
|
|
1449
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1450
|
+
addon_id: str = Field(alias="addonId")
|
|
1451
|
+
description: Optional[str] = Field(default=None)
|
|
1452
|
+
display_name: str = Field(alias="displayName")
|
|
1453
|
+
quantity: int
|
|
1454
|
+
|
|
1455
|
+
|
|
1456
1456
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1457
1457
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1458
1458
|
plan_id: str = Field(alias="planId")
|
|
@@ -1786,39 +1786,6 @@ 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
|
-
|
|
1822
1789
|
class MockPaywallPriceFragment(BaseModel):
|
|
1823
1790
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1824
1791
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1853,6 +1820,39 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1853
1820
|
display_name: str = Field(alias="displayName")
|
|
1854
1821
|
|
|
1855
1822
|
|
|
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")
|
|
@@ -2770,16 +2770,16 @@ PackageEntitlementFragment.model_rebuild()
|
|
|
2770
2770
|
AddonFragment.model_rebuild()
|
|
2771
2771
|
FeatureFragment.model_rebuild()
|
|
2772
2772
|
EntitlementFragment.model_rebuild()
|
|
2773
|
-
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2774
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2775
2773
|
SlimCustomerFragment.model_rebuild()
|
|
2776
2774
|
CustomerResourceFragment.model_rebuild()
|
|
2775
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2776
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2777
|
+
TotalPriceFragment.model_rebuild()
|
|
2778
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2779
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2777
2780
|
ProductFragment.model_rebuild()
|
|
2778
2781
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2779
2782
|
PlanFragment.model_rebuild()
|
|
2780
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2781
|
-
SubscriptionInvoiceFragment.model_rebuild()
|
|
2782
|
-
TotalPriceFragment.model_rebuild()
|
|
2783
2783
|
SubscriptionFragment.model_rebuild()
|
|
2784
2784
|
ApplySubscriptionFragment.model_rebuild()
|
|
2785
2785
|
FontVariantFragment.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
2795
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2797
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
|
-
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2810
2809
|
MockPaywallPriceFragment.model_rebuild()
|
|
2810
|
+
MockPaywallPackageEntitlementFragment.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=-KENNOE-xsKr2JErSh1nQWK3pBt0DrPbIM45Tg8PCGE,34476
|
|
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=lPjl89hFvhw0WOFxr-EMCCVg8GJh0x8_l-nemsu_-rE,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.315.
|
|
164
|
-
stigg_api_client_v2-2.315.
|
|
165
|
-
stigg_api_client_v2-2.315.
|
|
166
|
-
stigg_api_client_v2-2.315.
|
|
163
|
+
stigg_api_client_v2-2.315.3.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.315.3.dist-info/METADATA,sha256=OBKQgsfz3Fh0gTUvYXFYUiB_Exu1HRLGj-DYFu39hUE,2258
|
|
165
|
+
stigg_api_client_v2-2.315.3.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.315.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|