stigg-api-client-v2 2.379.1__py3-none-any.whl → 2.386.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/__init__.py +2 -0
- stigg/generated/fragments.py +279 -279
- stigg/generated/input_types.py +6 -0
- {stigg_api_client_v2-2.379.1.dist-info → stigg_api_client_v2-2.386.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.379.1.dist-info → stigg_api_client_v2-2.386.0.dist-info}/RECORD +7 -7
- {stigg_api_client_v2-2.379.1.dist-info → stigg_api_client_v2-2.386.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.379.1.dist-info → stigg_api_client_v2-2.386.0.dist-info}/WHEEL +0 -0
stigg/generated/__init__.py
CHANGED
|
@@ -849,6 +849,7 @@ from .input_types import (
|
|
|
849
849
|
TaskTypeFilterComparison,
|
|
850
850
|
TaxExempt,
|
|
851
851
|
TestHookInput,
|
|
852
|
+
TestWorkflowInput,
|
|
852
853
|
TiersModeFilterComparison,
|
|
853
854
|
TransferSubscriptionInput,
|
|
854
855
|
TransferSubscriptionToResourceInput,
|
|
@@ -1749,6 +1750,7 @@ __all__ = [
|
|
|
1749
1750
|
"TaskTypeFilterComparison",
|
|
1750
1751
|
"TaxExempt",
|
|
1751
1752
|
"TestHookInput",
|
|
1753
|
+
"TestWorkflowInput",
|
|
1752
1754
|
"TiersMode",
|
|
1753
1755
|
"TiersModeFilterComparison",
|
|
1754
1756
|
"TotalPriceFragment",
|
stigg/generated/fragments.py
CHANGED
|
@@ -299,60 +299,45 @@ class EntitlementFragmentFeature(FeatureFragment):
|
|
|
299
299
|
pass
|
|
300
300
|
|
|
301
301
|
|
|
302
|
-
class
|
|
303
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
304
|
-
total: "TotalPriceFragmentTotal"
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
308
|
-
amount: float
|
|
309
|
-
currency: Currency
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
313
|
-
amount: float
|
|
314
|
-
currency: Currency
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
class SubscriptionFutureUpdateData(BaseModel):
|
|
302
|
+
class SubscriptionScheduledUpdateData(BaseModel):
|
|
318
303
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
319
304
|
alias="subscriptionScheduleType"
|
|
320
305
|
)
|
|
321
306
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
322
307
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
323
|
-
target_package: Optional["
|
|
308
|
+
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
324
309
|
alias="targetPackage", default=None
|
|
325
310
|
)
|
|
326
311
|
schedule_variables: Optional[
|
|
327
312
|
Annotated[
|
|
328
313
|
Union[
|
|
329
|
-
"
|
|
330
|
-
"
|
|
331
|
-
"
|
|
332
|
-
"
|
|
333
|
-
"
|
|
334
|
-
"
|
|
335
|
-
"
|
|
336
|
-
"
|
|
314
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
315
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
316
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
317
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
318
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
319
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
320
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
321
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
337
322
|
],
|
|
338
323
|
Field(discriminator="typename__"),
|
|
339
324
|
]
|
|
340
325
|
] = Field(alias="scheduleVariables", default=None)
|
|
341
326
|
|
|
342
327
|
|
|
343
|
-
class
|
|
328
|
+
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
344
329
|
id: str
|
|
345
330
|
ref_id: str = Field(alias="refId")
|
|
346
331
|
display_name: str = Field(alias="displayName")
|
|
347
332
|
|
|
348
333
|
|
|
349
|
-
class
|
|
334
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
350
335
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
351
336
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
352
337
|
new_quantity: float = Field(alias="newQuantity")
|
|
353
338
|
|
|
354
339
|
|
|
355
|
-
class
|
|
340
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
356
341
|
BaseModel
|
|
357
342
|
):
|
|
358
343
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -360,53 +345,55 @@ class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVaria
|
|
|
360
345
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
361
346
|
|
|
362
347
|
|
|
363
|
-
class
|
|
348
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
364
349
|
BaseModel
|
|
365
350
|
):
|
|
366
351
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
367
352
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
368
353
|
|
|
369
354
|
|
|
370
|
-
class
|
|
355
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
371
356
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
372
357
|
|
|
373
358
|
|
|
374
|
-
class
|
|
359
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
360
|
+
BaseModel
|
|
361
|
+
):
|
|
375
362
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
376
363
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
377
364
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
378
365
|
billable_features: Optional[
|
|
379
366
|
List[
|
|
380
|
-
"
|
|
367
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
381
368
|
]
|
|
382
369
|
] = Field(alias="billableFeatures", default=None)
|
|
383
370
|
addons: Optional[
|
|
384
371
|
List[
|
|
385
|
-
"
|
|
372
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
386
373
|
]
|
|
387
374
|
] = Field(default=None)
|
|
388
375
|
price_overrides: Optional[
|
|
389
376
|
List[
|
|
390
|
-
"
|
|
377
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
391
378
|
]
|
|
392
379
|
] = Field(alias="priceOverrides", default=None)
|
|
393
380
|
|
|
394
381
|
|
|
395
|
-
class
|
|
382
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
396
383
|
BaseModel
|
|
397
384
|
):
|
|
398
385
|
feature_id: str = Field(alias="featureId")
|
|
399
386
|
quantity: float
|
|
400
387
|
|
|
401
388
|
|
|
402
|
-
class
|
|
389
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
403
390
|
BaseModel
|
|
404
391
|
):
|
|
405
392
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
406
393
|
quantity: float
|
|
407
394
|
|
|
408
395
|
|
|
409
|
-
class
|
|
396
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
410
397
|
BaseModel
|
|
411
398
|
):
|
|
412
399
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -414,39 +401,43 @@ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPrice
|
|
|
414
401
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
415
402
|
|
|
416
403
|
|
|
417
|
-
class
|
|
404
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
418
405
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
419
406
|
plan_ref_id: str = Field(alias="planRefId")
|
|
420
407
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
421
408
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
422
409
|
billable_features: Optional[
|
|
423
410
|
List[
|
|
424
|
-
"
|
|
411
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
425
412
|
]
|
|
426
413
|
] = Field(alias="billableFeatures", default=None)
|
|
427
414
|
addons: Optional[
|
|
428
|
-
List[
|
|
415
|
+
List[
|
|
416
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
417
|
+
]
|
|
429
418
|
] = Field(default=None)
|
|
430
419
|
price_overrides: Optional[
|
|
431
420
|
List[
|
|
432
|
-
"
|
|
421
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
433
422
|
]
|
|
434
423
|
] = Field(alias="priceOverrides", default=None)
|
|
435
424
|
|
|
436
425
|
|
|
437
|
-
class
|
|
426
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
438
427
|
BaseModel
|
|
439
428
|
):
|
|
440
429
|
feature_id: str = Field(alias="featureId")
|
|
441
430
|
quantity: float
|
|
442
431
|
|
|
443
432
|
|
|
444
|
-
class
|
|
433
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
434
|
+
BaseModel
|
|
435
|
+
):
|
|
445
436
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
446
437
|
quantity: float
|
|
447
438
|
|
|
448
439
|
|
|
449
|
-
class
|
|
440
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
450
441
|
BaseModel
|
|
451
442
|
):
|
|
452
443
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -454,7 +445,7 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverr
|
|
|
454
445
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
455
446
|
|
|
456
447
|
|
|
457
|
-
class
|
|
448
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
458
449
|
BaseModel
|
|
459
450
|
):
|
|
460
451
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -462,157 +453,18 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariab
|
|
|
462
453
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
463
454
|
|
|
464
455
|
|
|
465
|
-
class
|
|
456
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
457
|
+
BaseModel
|
|
458
|
+
):
|
|
466
459
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
467
460
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
468
461
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
469
462
|
|
|
470
463
|
|
|
471
|
-
class SlimCustomerFragment(BaseModel):
|
|
472
|
-
id: str
|
|
473
|
-
name: Optional[str] = Field(default=None)
|
|
474
|
-
email: Optional[str] = Field(default=None)
|
|
475
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
476
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
477
|
-
ref_id: str = Field(alias="refId")
|
|
478
|
-
customer_id: str = Field(alias="customerId")
|
|
479
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
480
|
-
additional_meta_data: Optional[Any] = Field(
|
|
481
|
-
alias="additionalMetaData", default=None
|
|
482
|
-
)
|
|
483
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
484
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
485
|
-
)
|
|
486
|
-
|
|
487
|
-
|
|
488
464
|
class CustomerResourceFragment(BaseModel):
|
|
489
465
|
resource_id: str = Field(alias="resourceId")
|
|
490
466
|
|
|
491
467
|
|
|
492
|
-
class ProductFragment(BaseModel):
|
|
493
|
-
ref_id: str = Field(alias="refId")
|
|
494
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
495
|
-
description: Optional[str] = Field(default=None)
|
|
496
|
-
additional_meta_data: Optional[Any] = Field(
|
|
497
|
-
alias="additionalMetaData", default=None
|
|
498
|
-
)
|
|
499
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
503
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
504
|
-
alias="downgradePlan", default=None
|
|
505
|
-
)
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
509
|
-
ref_id: str = Field(alias="refId")
|
|
510
|
-
display_name: str = Field(alias="displayName")
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
514
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
515
|
-
display_name: str = Field(alias="displayName")
|
|
516
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
517
|
-
default=None
|
|
518
|
-
)
|
|
519
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
523
|
-
pass
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
527
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
528
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
class PlanFragment(BaseModel):
|
|
532
|
-
id: str
|
|
533
|
-
ref_id: str = Field(alias="refId")
|
|
534
|
-
display_name: str = Field(alias="displayName")
|
|
535
|
-
description: Optional[str] = Field(default=None)
|
|
536
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
537
|
-
version_number: int = Field(alias="versionNumber")
|
|
538
|
-
additional_meta_data: Optional[Any] = Field(
|
|
539
|
-
alias="additionalMetaData", default=None
|
|
540
|
-
)
|
|
541
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
542
|
-
alias="hiddenFromWidgets", default=None
|
|
543
|
-
)
|
|
544
|
-
product: "PlanFragmentProduct"
|
|
545
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
546
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
547
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
548
|
-
alias="inheritedEntitlements", default=None
|
|
549
|
-
)
|
|
550
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
551
|
-
alias="compatibleAddons", default=None
|
|
552
|
-
)
|
|
553
|
-
compatible_package_groups: Optional[
|
|
554
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
555
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
556
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
557
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
558
|
-
alias="overagePrices", default=None
|
|
559
|
-
)
|
|
560
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
561
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
562
|
-
alias="defaultTrialConfig", default=None
|
|
563
|
-
)
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
class PlanFragmentProduct(ProductFragment):
|
|
567
|
-
pass
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
571
|
-
ref_id: str = Field(alias="refId")
|
|
572
|
-
display_name: str = Field(alias="displayName")
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
576
|
-
pass
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
580
|
-
pass
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
584
|
-
pass
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
588
|
-
pass
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
class PlanFragmentPrices(PriceFragment):
|
|
592
|
-
pass
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
596
|
-
pass
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
600
|
-
duration: float
|
|
601
|
-
units: TrialPeriodUnits
|
|
602
|
-
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
603
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
604
|
-
alias="trialEndBehavior", default=None
|
|
605
|
-
)
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
609
|
-
limit: float
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
613
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
614
|
-
|
|
615
|
-
|
|
616
468
|
class SubscriptionInvoiceFragment(BaseModel):
|
|
617
469
|
billing_id: str = Field(alias="billingId")
|
|
618
470
|
status: SubscriptionInvoiceStatus
|
|
@@ -640,45 +492,81 @@ class SubscriptionInvoiceFragment(BaseModel):
|
|
|
640
492
|
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
641
493
|
|
|
642
494
|
|
|
643
|
-
class
|
|
495
|
+
class TotalPriceFragment(BaseModel):
|
|
496
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
497
|
+
total: "TotalPriceFragmentTotal"
|
|
498
|
+
|
|
499
|
+
|
|
500
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
501
|
+
amount: float
|
|
502
|
+
currency: Currency
|
|
503
|
+
|
|
504
|
+
|
|
505
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
506
|
+
amount: float
|
|
507
|
+
currency: Currency
|
|
508
|
+
|
|
509
|
+
|
|
510
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
511
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
512
|
+
|
|
513
|
+
|
|
514
|
+
class SlimCustomerFragment(BaseModel):
|
|
515
|
+
id: str
|
|
516
|
+
name: Optional[str] = Field(default=None)
|
|
517
|
+
email: Optional[str] = Field(default=None)
|
|
518
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
519
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
520
|
+
ref_id: str = Field(alias="refId")
|
|
521
|
+
customer_id: str = Field(alias="customerId")
|
|
522
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
523
|
+
additional_meta_data: Optional[Any] = Field(
|
|
524
|
+
alias="additionalMetaData", default=None
|
|
525
|
+
)
|
|
526
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
527
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
528
|
+
)
|
|
529
|
+
|
|
530
|
+
|
|
531
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
644
532
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
645
533
|
alias="subscriptionScheduleType"
|
|
646
534
|
)
|
|
647
535
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
648
536
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
649
|
-
target_package: Optional["
|
|
537
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
650
538
|
alias="targetPackage", default=None
|
|
651
539
|
)
|
|
652
540
|
schedule_variables: Optional[
|
|
653
541
|
Annotated[
|
|
654
542
|
Union[
|
|
655
|
-
"
|
|
656
|
-
"
|
|
657
|
-
"
|
|
658
|
-
"
|
|
659
|
-
"
|
|
660
|
-
"
|
|
661
|
-
"
|
|
662
|
-
"
|
|
543
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
544
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
545
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
546
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
547
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
548
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
549
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
550
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
663
551
|
],
|
|
664
552
|
Field(discriminator="typename__"),
|
|
665
553
|
]
|
|
666
554
|
] = Field(alias="scheduleVariables", default=None)
|
|
667
555
|
|
|
668
556
|
|
|
669
|
-
class
|
|
557
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
670
558
|
id: str
|
|
671
559
|
ref_id: str = Field(alias="refId")
|
|
672
560
|
display_name: str = Field(alias="displayName")
|
|
673
561
|
|
|
674
562
|
|
|
675
|
-
class
|
|
563
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
676
564
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
677
565
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
678
566
|
new_quantity: float = Field(alias="newQuantity")
|
|
679
567
|
|
|
680
568
|
|
|
681
|
-
class
|
|
569
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
682
570
|
BaseModel
|
|
683
571
|
):
|
|
684
572
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -686,55 +574,53 @@ class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVa
|
|
|
686
574
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
687
575
|
|
|
688
576
|
|
|
689
|
-
class
|
|
577
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
690
578
|
BaseModel
|
|
691
579
|
):
|
|
692
580
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
693
581
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
694
582
|
|
|
695
583
|
|
|
696
|
-
class
|
|
584
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
697
585
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
698
586
|
|
|
699
587
|
|
|
700
|
-
class
|
|
701
|
-
BaseModel
|
|
702
|
-
):
|
|
588
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
703
589
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
704
590
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
705
591
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
706
592
|
billable_features: Optional[
|
|
707
593
|
List[
|
|
708
|
-
"
|
|
594
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
709
595
|
]
|
|
710
596
|
] = Field(alias="billableFeatures", default=None)
|
|
711
597
|
addons: Optional[
|
|
712
598
|
List[
|
|
713
|
-
"
|
|
599
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
714
600
|
]
|
|
715
601
|
] = Field(default=None)
|
|
716
602
|
price_overrides: Optional[
|
|
717
603
|
List[
|
|
718
|
-
"
|
|
604
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
719
605
|
]
|
|
720
606
|
] = Field(alias="priceOverrides", default=None)
|
|
721
607
|
|
|
722
608
|
|
|
723
|
-
class
|
|
609
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
724
610
|
BaseModel
|
|
725
611
|
):
|
|
726
612
|
feature_id: str = Field(alias="featureId")
|
|
727
613
|
quantity: float
|
|
728
614
|
|
|
729
615
|
|
|
730
|
-
class
|
|
616
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
731
617
|
BaseModel
|
|
732
618
|
):
|
|
733
619
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
734
620
|
quantity: float
|
|
735
621
|
|
|
736
622
|
|
|
737
|
-
class
|
|
623
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
738
624
|
BaseModel
|
|
739
625
|
):
|
|
740
626
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -742,43 +628,39 @@ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPr
|
|
|
742
628
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
743
629
|
|
|
744
630
|
|
|
745
|
-
class
|
|
631
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
746
632
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
747
633
|
plan_ref_id: str = Field(alias="planRefId")
|
|
748
634
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
749
635
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
750
636
|
billable_features: Optional[
|
|
751
637
|
List[
|
|
752
|
-
"
|
|
638
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
753
639
|
]
|
|
754
640
|
] = Field(alias="billableFeatures", default=None)
|
|
755
641
|
addons: Optional[
|
|
756
|
-
List[
|
|
757
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
758
|
-
]
|
|
642
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
759
643
|
] = Field(default=None)
|
|
760
644
|
price_overrides: Optional[
|
|
761
645
|
List[
|
|
762
|
-
"
|
|
646
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
763
647
|
]
|
|
764
648
|
] = Field(alias="priceOverrides", default=None)
|
|
765
649
|
|
|
766
650
|
|
|
767
|
-
class
|
|
651
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
768
652
|
BaseModel
|
|
769
653
|
):
|
|
770
654
|
feature_id: str = Field(alias="featureId")
|
|
771
655
|
quantity: float
|
|
772
656
|
|
|
773
657
|
|
|
774
|
-
class
|
|
775
|
-
BaseModel
|
|
776
|
-
):
|
|
658
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
777
659
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
778
660
|
quantity: float
|
|
779
661
|
|
|
780
662
|
|
|
781
|
-
class
|
|
663
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
782
664
|
BaseModel
|
|
783
665
|
):
|
|
784
666
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -786,7 +668,7 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOv
|
|
|
786
668
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
787
669
|
|
|
788
670
|
|
|
789
|
-
class
|
|
671
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
790
672
|
BaseModel
|
|
791
673
|
):
|
|
792
674
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -794,14 +676,132 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVar
|
|
|
794
676
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
795
677
|
|
|
796
678
|
|
|
797
|
-
class
|
|
798
|
-
BaseModel
|
|
799
|
-
):
|
|
679
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
800
680
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
801
681
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
802
682
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
803
683
|
|
|
804
684
|
|
|
685
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
686
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
687
|
+
display_name: str = Field(alias="displayName")
|
|
688
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
689
|
+
default=None
|
|
690
|
+
)
|
|
691
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
692
|
+
|
|
693
|
+
|
|
694
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
695
|
+
pass
|
|
696
|
+
|
|
697
|
+
|
|
698
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
699
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
700
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
701
|
+
|
|
702
|
+
|
|
703
|
+
class ProductFragment(BaseModel):
|
|
704
|
+
ref_id: str = Field(alias="refId")
|
|
705
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
706
|
+
description: Optional[str] = Field(default=None)
|
|
707
|
+
additional_meta_data: Optional[Any] = Field(
|
|
708
|
+
alias="additionalMetaData", default=None
|
|
709
|
+
)
|
|
710
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
711
|
+
|
|
712
|
+
|
|
713
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
714
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
715
|
+
alias="downgradePlan", default=None
|
|
716
|
+
)
|
|
717
|
+
|
|
718
|
+
|
|
719
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
720
|
+
ref_id: str = Field(alias="refId")
|
|
721
|
+
display_name: str = Field(alias="displayName")
|
|
722
|
+
|
|
723
|
+
|
|
724
|
+
class PlanFragment(BaseModel):
|
|
725
|
+
id: str
|
|
726
|
+
ref_id: str = Field(alias="refId")
|
|
727
|
+
display_name: str = Field(alias="displayName")
|
|
728
|
+
description: Optional[str] = Field(default=None)
|
|
729
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
730
|
+
version_number: int = Field(alias="versionNumber")
|
|
731
|
+
additional_meta_data: Optional[Any] = Field(
|
|
732
|
+
alias="additionalMetaData", default=None
|
|
733
|
+
)
|
|
734
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
735
|
+
alias="hiddenFromWidgets", default=None
|
|
736
|
+
)
|
|
737
|
+
product: "PlanFragmentProduct"
|
|
738
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
739
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
740
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
741
|
+
alias="inheritedEntitlements", default=None
|
|
742
|
+
)
|
|
743
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
744
|
+
alias="compatibleAddons", default=None
|
|
745
|
+
)
|
|
746
|
+
compatible_package_groups: Optional[
|
|
747
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
748
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
749
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
750
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
751
|
+
alias="overagePrices", default=None
|
|
752
|
+
)
|
|
753
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
754
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
755
|
+
alias="defaultTrialConfig", default=None
|
|
756
|
+
)
|
|
757
|
+
|
|
758
|
+
|
|
759
|
+
class PlanFragmentProduct(ProductFragment):
|
|
760
|
+
pass
|
|
761
|
+
|
|
762
|
+
|
|
763
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
764
|
+
ref_id: str = Field(alias="refId")
|
|
765
|
+
display_name: str = Field(alias="displayName")
|
|
766
|
+
|
|
767
|
+
|
|
768
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
769
|
+
pass
|
|
770
|
+
|
|
771
|
+
|
|
772
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
773
|
+
pass
|
|
774
|
+
|
|
775
|
+
|
|
776
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
777
|
+
pass
|
|
778
|
+
|
|
779
|
+
|
|
780
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
781
|
+
pass
|
|
782
|
+
|
|
783
|
+
|
|
784
|
+
class PlanFragmentPrices(PriceFragment):
|
|
785
|
+
pass
|
|
786
|
+
|
|
787
|
+
|
|
788
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
789
|
+
pass
|
|
790
|
+
|
|
791
|
+
|
|
792
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
793
|
+
duration: float
|
|
794
|
+
units: TrialPeriodUnits
|
|
795
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
796
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
797
|
+
alias="trialEndBehavior", default=None
|
|
798
|
+
)
|
|
799
|
+
|
|
800
|
+
|
|
801
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
802
|
+
limit: float
|
|
803
|
+
|
|
804
|
+
|
|
805
805
|
class SubscriptionFragment(BaseModel):
|
|
806
806
|
id: str
|
|
807
807
|
subscription_id: str = Field(alias="subscriptionId")
|
|
@@ -1257,6 +1257,50 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1257
1257
|
pass
|
|
1258
1258
|
|
|
1259
1259
|
|
|
1260
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1261
|
+
display_name: str = Field(alias="displayName")
|
|
1262
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1263
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1264
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1265
|
+
period: PromotionalEntitlementPeriod
|
|
1266
|
+
start_date: Any = Field(alias="startDate")
|
|
1267
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1268
|
+
|
|
1269
|
+
|
|
1270
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1271
|
+
addon_id: str = Field(alias="addonId")
|
|
1272
|
+
description: Optional[str] = Field(default=None)
|
|
1273
|
+
display_name: str = Field(alias="displayName")
|
|
1274
|
+
quantity: int
|
|
1275
|
+
|
|
1276
|
+
|
|
1277
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1278
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1279
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1280
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1281
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1282
|
+
default=None
|
|
1283
|
+
)
|
|
1284
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1285
|
+
default=None
|
|
1286
|
+
)
|
|
1287
|
+
|
|
1288
|
+
|
|
1289
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1290
|
+
amount: float
|
|
1291
|
+
currency: Currency
|
|
1292
|
+
|
|
1293
|
+
|
|
1294
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1295
|
+
id: str
|
|
1296
|
+
ref_id: str = Field(alias="refId")
|
|
1297
|
+
display_name: str = Field(alias="displayName")
|
|
1298
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1299
|
+
feature_units_plural: Optional[str] = Field(
|
|
1300
|
+
alias="featureUnitsPlural", default=None
|
|
1301
|
+
)
|
|
1302
|
+
|
|
1303
|
+
|
|
1260
1304
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1261
1305
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1262
1306
|
alias="subscriptionScheduleType"
|
|
@@ -1426,40 +1470,6 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1426
1470
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1427
1471
|
|
|
1428
1472
|
|
|
1429
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1430
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1431
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
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
|
-
display_name: str = Field(alias="displayName")
|
|
1450
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1451
|
-
feature_units_plural: Optional[str] = Field(
|
|
1452
|
-
alias="featureUnitsPlural", default=None
|
|
1453
|
-
)
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1457
|
-
addon_id: str = Field(alias="addonId")
|
|
1458
|
-
description: Optional[str] = Field(default=None)
|
|
1459
|
-
display_name: str = Field(alias="displayName")
|
|
1460
|
-
quantity: int
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
1473
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1464
1474
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1465
1475
|
plan_id: str = Field(alias="planId")
|
|
@@ -1556,16 +1566,6 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1556
1566
|
pass
|
|
1557
1567
|
|
|
1558
1568
|
|
|
1559
|
-
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1560
|
-
display_name: str = Field(alias="displayName")
|
|
1561
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1562
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1563
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1564
|
-
period: PromotionalEntitlementPeriod
|
|
1565
|
-
start_date: Any = Field(alias="startDate")
|
|
1566
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
1569
|
class CustomerPortalFragment(BaseModel):
|
|
1570
1570
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1571
1571
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -2777,16 +2777,16 @@ PriceFragment.model_rebuild()
|
|
|
2777
2777
|
AddonFragment.model_rebuild()
|
|
2778
2778
|
FeatureFragment.model_rebuild()
|
|
2779
2779
|
EntitlementFragment.model_rebuild()
|
|
2780
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2781
|
+
CustomerResourceFragment.model_rebuild()
|
|
2782
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2780
2783
|
TotalPriceFragment.model_rebuild()
|
|
2781
|
-
|
|
2784
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2782
2785
|
SlimCustomerFragment.model_rebuild()
|
|
2783
|
-
|
|
2784
|
-
ProductFragment.model_rebuild()
|
|
2786
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2785
2787
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2788
|
+
ProductFragment.model_rebuild()
|
|
2786
2789
|
PlanFragment.model_rebuild()
|
|
2787
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2788
|
-
SubscriptionInvoiceFragment.model_rebuild()
|
|
2789
|
-
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2790
2790
|
SubscriptionFragment.model_rebuild()
|
|
2791
2791
|
ApplySubscriptionFragment.model_rebuild()
|
|
2792
2792
|
FontVariantFragment.model_rebuild()
|
|
@@ -2799,11 +2799,11 @@ CheckoutStateFragment.model_rebuild()
|
|
|
2799
2799
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2800
2800
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2801
2801
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2802
|
-
|
|
2803
|
-
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2802
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2804
2803
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2804
|
+
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2805
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2805
2806
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2806
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2807
2807
|
CustomerPortalFragment.model_rebuild()
|
|
2808
2808
|
CustomerStatisticsFragment.model_rebuild()
|
|
2809
2809
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -4188,6 +4188,12 @@ class TestHookInput(BaseModel):
|
|
|
4188
4188
|
hook_event_type: EventLogType = Field(alias="hookEventType")
|
|
4189
4189
|
|
|
4190
4190
|
|
|
4191
|
+
class TestWorkflowInput(BaseModel):
|
|
4192
|
+
endpoint_url: str = Field(alias="endpointUrl")
|
|
4193
|
+
environment_id: Optional[str] = Field(alias="environmentId", default=None)
|
|
4194
|
+
hook_event_type: EventLogType = Field(alias="hookEventType")
|
|
4195
|
+
|
|
4196
|
+
|
|
4191
4197
|
class TiersModeFilterComparison(BaseModel):
|
|
4192
4198
|
eq: Optional[TiersMode] = None
|
|
4193
4199
|
gt: Optional[TiersMode] = None
|
|
@@ -106,7 +106,7 @@ stigg/_vendors/pydantic-2.6.4.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCe
|
|
|
106
106
|
stigg/_vendors/pydantic-2.6.4.dist-info/WHEEL,sha256=TJPnKdtrSue7xZ_AVGkp9YXcvDrobsjBds1du3Nx6dc,87
|
|
107
107
|
stigg/_vendors/pydantic-2.6.4.dist-info/licenses/LICENSE,sha256=qeGG88oWte74QxjnpwFyE1GgDLe4rjpDlLZ7SeNSnvM,1129
|
|
108
108
|
stigg/client.py,sha256=RWrVnxo9zHFXka8KJVE4sMgyek70ispQk0vqOINCvM0,8335
|
|
109
|
-
stigg/generated/__init__.py,sha256=
|
|
109
|
+
stigg/generated/__init__.py,sha256=a4IB1RgItZMf___9okR2WJBJLLRGVJ8_5KhvhYUtA1s,69632
|
|
110
110
|
stigg/generated/apply_subscription.py,sha256=Vbs-QZZxN16pUpt3Hp7Jvvcc5o_8xwJK9oTLQQjH0ZA,451
|
|
111
111
|
stigg/generated/archive_customer.py,sha256=3N3iBiT2Vvzfb0ckV3o57A6lmJ_ef7JNPaMX_Jtcg6c,396
|
|
112
112
|
stigg/generated/async_base_client.py,sha256=zqd6IhYxpalyA6KQkeGhXgSurC0vXSwSWmSlM2zZ0VM,12593
|
|
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=t6q4y-5cKBmgLTrf_2YWXkNvmclEjnvBos1Ycd0aomI,3521
|
|
|
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=SL2E_F_gvDFiuS6vkkPDmHaMPuqYubFUt7xFJKeTyik,100917
|
|
127
127
|
stigg/generated/get_active_subscriptions.py,sha256=ngZ9jr8vzGI59wT8FhUFl46a8j9waoNjeZ1_lrcu2ww,513
|
|
128
128
|
stigg/generated/get_active_subscriptions_list.py,sha256=Awi9al2MXxdt_y7ZnWYZh8U3R9XiX50c7TyO4WZxyhw,541
|
|
129
129
|
stigg/generated/get_checkout_state.py,sha256=SAOXGAND879dwb7R5mr5LPZuPVuMUDwNR5M4mgmHv6w,409
|
|
@@ -144,7 +144,7 @@ stigg/generated/grant_promotional_entitlements.py,sha256=72PRYuqecL-0SkWb7deygkh
|
|
|
144
144
|
stigg/generated/import_customer.py,sha256=yEtrEB7T-Aykv3AUl-rAQz2XL6hKL0j-7JL3h-xi87o,403
|
|
145
145
|
stigg/generated/import_customer_bulk.py,sha256=miLn2ScWlPOH1IipltY5Vgd-ZQ_BkBk9t3-EsLvU5ZQ,284
|
|
146
146
|
stigg/generated/import_subscriptions_bulk.py,sha256=QgitpZkjE7eBhP1o5W0PTVAbKOvz61dNoeBAWupIcgU,297
|
|
147
|
-
stigg/generated/input_types.py,sha256=
|
|
147
|
+
stigg/generated/input_types.py,sha256=1oIAWTbiczRjrn2E8sgIBS0l97_kJLJo050OzUtJua8,193867
|
|
148
148
|
stigg/generated/migrate_subscription_to_latest.py,sha256=qQDwH7EodYAeJFb62IIl-MAEB5MbthgCJ0v1RMxpdYk,516
|
|
149
149
|
stigg/generated/preview_next_invoice.py,sha256=MiQ4Gv7Ve1Hv60xhaQi7uj82aq0xLP2UB-gjvcQdOL8,478
|
|
150
150
|
stigg/generated/preview_subscription.py,sha256=Qo2vlFs7sFzqaE8J_e-EHTRfLvG46lko-dcJMxDSCR0,475
|
|
@@ -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.386.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.386.0.dist-info/METADATA,sha256=5uEXLBK1m8azNpX2PkRWmwY3zdMuAPivjAYtFdmmfb8,2258
|
|
165
|
+
stigg_api_client_v2-2.386.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.386.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|