stigg-api-client-v2 2.487.0__py3-none-any.whl → 2.491.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of stigg-api-client-v2 might be problematic. Click here for more details.
- stigg/generated/enums.py +1 -0
- stigg/generated/fragments.py +238 -238
- stigg/generated/input_types.py +3 -0
- {stigg_api_client_v2-2.487.0.dist-info → stigg_api_client_v2-2.491.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.487.0.dist-info → stigg_api_client_v2-2.491.0.dist-info}/RECORD +7 -7
- {stigg_api_client_v2-2.487.0.dist-info → stigg_api_client_v2-2.491.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.487.0.dist-info → stigg_api_client_v2-2.491.0.dist-info}/WHEEL +0 -0
stigg/generated/enums.py
CHANGED
|
@@ -456,6 +456,7 @@ class ErrorCode(str, Enum):
|
|
|
456
456
|
DuplicateProductValidationError = "DuplicateProductValidationError"
|
|
457
457
|
DuplicatedEntityNotAllowed = "DuplicatedEntityNotAllowed"
|
|
458
458
|
EditAllowedOnDraftPackageOnlyError = "EditAllowedOnDraftPackageOnlyError"
|
|
459
|
+
EntitlementBelongsToFeatureGroupError = "EntitlementBelongsToFeatureGroupError"
|
|
459
460
|
EntitlementLimitExceededError = "EntitlementLimitExceededError"
|
|
460
461
|
EntitlementUsageOutOfRangeError = "EntitlementUsageOutOfRangeError"
|
|
461
462
|
EntitlementsMustBelongToSamePackage = "EntitlementsMustBelongToSamePackage"
|
stigg/generated/fragments.py
CHANGED
|
@@ -80,6 +80,42 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
80
80
|
currency: Currency
|
|
81
81
|
|
|
82
82
|
|
|
83
|
+
class PriceFragment(BaseModel):
|
|
84
|
+
billing_model: BillingModel = Field(alias="billingModel")
|
|
85
|
+
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
86
|
+
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
87
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
88
|
+
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
89
|
+
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
90
|
+
billing_country_code: Optional[str] = Field(
|
|
91
|
+
alias="billingCountryCode", default=None
|
|
92
|
+
)
|
|
93
|
+
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
94
|
+
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
95
|
+
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
96
|
+
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
97
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
class PriceFragmentPrice(BaseModel):
|
|
101
|
+
amount: float
|
|
102
|
+
currency: Currency
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
class PriceFragmentTiers(PriceTierFragment):
|
|
106
|
+
pass
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
class PriceFragmentFeature(BaseModel):
|
|
110
|
+
ref_id: str = Field(alias="refId")
|
|
111
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
112
|
+
feature_units_plural: Optional[str] = Field(
|
|
113
|
+
alias="featureUnitsPlural", default=None
|
|
114
|
+
)
|
|
115
|
+
display_name: str = Field(alias="displayName")
|
|
116
|
+
description: Optional[str] = Field(default=None)
|
|
117
|
+
|
|
118
|
+
|
|
83
119
|
class OveragePriceFragment(BaseModel):
|
|
84
120
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
85
121
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -146,42 +182,6 @@ class PackageEntitlementFragmentFeature(BaseModel):
|
|
|
146
182
|
)
|
|
147
183
|
|
|
148
184
|
|
|
149
|
-
class PriceFragment(BaseModel):
|
|
150
|
-
billing_model: BillingModel = Field(alias="billingModel")
|
|
151
|
-
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
152
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
153
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
154
|
-
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
155
|
-
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
156
|
-
billing_country_code: Optional[str] = Field(
|
|
157
|
-
alias="billingCountryCode", default=None
|
|
158
|
-
)
|
|
159
|
-
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
160
|
-
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
161
|
-
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
162
|
-
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
163
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
class PriceFragmentPrice(BaseModel):
|
|
167
|
-
amount: float
|
|
168
|
-
currency: Currency
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
class PriceFragmentTiers(PriceTierFragment):
|
|
172
|
-
pass
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
class PriceFragmentFeature(BaseModel):
|
|
176
|
-
ref_id: str = Field(alias="refId")
|
|
177
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
178
|
-
feature_units_plural: Optional[str] = Field(
|
|
179
|
-
alias="featureUnitsPlural", default=None
|
|
180
|
-
)
|
|
181
|
-
display_name: str = Field(alias="displayName")
|
|
182
|
-
description: Optional[str] = Field(default=None)
|
|
183
|
-
|
|
184
|
-
|
|
185
185
|
class AddonFragment(BaseModel):
|
|
186
186
|
id: Any
|
|
187
187
|
ref_id: str = Field(alias="refId")
|
|
@@ -305,25 +305,40 @@ class EntitlementFragmentFeature(FeatureFragment):
|
|
|
305
305
|
pass
|
|
306
306
|
|
|
307
307
|
|
|
308
|
-
class
|
|
308
|
+
class SlimCustomerFragment(BaseModel):
|
|
309
|
+
id: Any
|
|
310
|
+
name: Optional[str] = Field(default=None)
|
|
311
|
+
email: Optional[str] = Field(default=None)
|
|
312
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
313
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
309
314
|
ref_id: str = Field(alias="refId")
|
|
310
|
-
|
|
311
|
-
|
|
315
|
+
customer_id: str = Field(alias="customerId")
|
|
316
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
312
317
|
additional_meta_data: Optional[Any] = Field(
|
|
313
318
|
alias="additionalMetaData", default=None
|
|
314
319
|
)
|
|
315
|
-
|
|
320
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
321
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
322
|
+
)
|
|
316
323
|
|
|
317
324
|
|
|
318
|
-
class
|
|
319
|
-
|
|
320
|
-
alias="downgradePlan", default=None
|
|
321
|
-
)
|
|
325
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
326
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
322
327
|
|
|
323
328
|
|
|
324
|
-
class
|
|
325
|
-
|
|
326
|
-
|
|
329
|
+
class TotalPriceFragment(BaseModel):
|
|
330
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
331
|
+
total: "TotalPriceFragmentTotal"
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
335
|
+
amount: float
|
|
336
|
+
currency: Currency
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
340
|
+
amount: float
|
|
341
|
+
currency: Currency
|
|
327
342
|
|
|
328
343
|
|
|
329
344
|
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
@@ -344,6 +359,27 @@ class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
|
344
359
|
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
345
360
|
|
|
346
361
|
|
|
362
|
+
class ProductFragment(BaseModel):
|
|
363
|
+
ref_id: str = Field(alias="refId")
|
|
364
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
365
|
+
description: Optional[str] = Field(default=None)
|
|
366
|
+
additional_meta_data: Optional[Any] = Field(
|
|
367
|
+
alias="additionalMetaData", default=None
|
|
368
|
+
)
|
|
369
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
373
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
374
|
+
alias="downgradePlan", default=None
|
|
375
|
+
)
|
|
376
|
+
|
|
377
|
+
|
|
378
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
379
|
+
ref_id: str = Field(alias="refId")
|
|
380
|
+
display_name: str = Field(alias="displayName")
|
|
381
|
+
|
|
382
|
+
|
|
347
383
|
class PlanFragment(BaseModel):
|
|
348
384
|
id: Any
|
|
349
385
|
ref_id: str = Field(alias="refId")
|
|
@@ -425,93 +461,45 @@ class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
|
425
461
|
limit: float
|
|
426
462
|
|
|
427
463
|
|
|
428
|
-
class
|
|
429
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
class SlimCustomerFragment(BaseModel):
|
|
433
|
-
id: Any
|
|
434
|
-
name: Optional[str] = Field(default=None)
|
|
435
|
-
email: Optional[str] = Field(default=None)
|
|
436
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
437
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
438
|
-
ref_id: str = Field(alias="refId")
|
|
439
|
-
customer_id: str = Field(alias="customerId")
|
|
440
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
441
|
-
additional_meta_data: Optional[Any] = Field(
|
|
442
|
-
alias="additionalMetaData", default=None
|
|
443
|
-
)
|
|
444
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
445
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
446
|
-
)
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
class SubscriptionInvoiceFragment(BaseModel):
|
|
450
|
-
billing_id: str = Field(alias="billingId")
|
|
451
|
-
status: SubscriptionInvoiceStatus
|
|
452
|
-
created_at: Any = Field(alias="createdAt")
|
|
453
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
454
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
455
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
456
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
457
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
458
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
459
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
460
|
-
alias="billingReason", default=None
|
|
461
|
-
)
|
|
462
|
-
currency: Optional[str] = Field(default=None)
|
|
463
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
464
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
465
|
-
alias="subTotalExcludingTax", default=None
|
|
466
|
-
)
|
|
467
|
-
total: Optional[float] = Field(default=None)
|
|
468
|
-
total_excluding_tax: Optional[float] = Field(
|
|
469
|
-
alias="totalExcludingTax", default=None
|
|
470
|
-
)
|
|
471
|
-
tax: Optional[float] = Field(default=None)
|
|
472
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
473
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
class SubscriptionScheduledUpdateData(BaseModel):
|
|
464
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
477
465
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
478
466
|
alias="subscriptionScheduleType"
|
|
479
467
|
)
|
|
480
468
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
481
469
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
482
|
-
target_package: Optional["
|
|
470
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
483
471
|
alias="targetPackage", default=None
|
|
484
472
|
)
|
|
485
473
|
schedule_variables: Optional[
|
|
486
474
|
Annotated[
|
|
487
475
|
Union[
|
|
488
|
-
"
|
|
489
|
-
"
|
|
490
|
-
"
|
|
491
|
-
"
|
|
492
|
-
"
|
|
493
|
-
"
|
|
494
|
-
"
|
|
495
|
-
"
|
|
476
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
477
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
478
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
479
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
480
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
481
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
482
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
483
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
496
484
|
],
|
|
497
485
|
Field(discriminator="typename__"),
|
|
498
486
|
]
|
|
499
487
|
] = Field(alias="scheduleVariables", default=None)
|
|
500
488
|
|
|
501
489
|
|
|
502
|
-
class
|
|
490
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
503
491
|
id: Any
|
|
504
492
|
ref_id: str = Field(alias="refId")
|
|
505
493
|
display_name: str = Field(alias="displayName")
|
|
506
494
|
|
|
507
495
|
|
|
508
|
-
class
|
|
496
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
509
497
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
510
498
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
511
499
|
new_quantity: float = Field(alias="newQuantity")
|
|
512
500
|
|
|
513
501
|
|
|
514
|
-
class
|
|
502
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
515
503
|
BaseModel
|
|
516
504
|
):
|
|
517
505
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -519,55 +507,53 @@ class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVa
|
|
|
519
507
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
520
508
|
|
|
521
509
|
|
|
522
|
-
class
|
|
510
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
523
511
|
BaseModel
|
|
524
512
|
):
|
|
525
513
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
526
514
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
527
515
|
|
|
528
516
|
|
|
529
|
-
class
|
|
517
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
530
518
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
531
519
|
|
|
532
520
|
|
|
533
|
-
class
|
|
534
|
-
BaseModel
|
|
535
|
-
):
|
|
521
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
536
522
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
537
523
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
538
524
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
539
525
|
billable_features: Optional[
|
|
540
526
|
List[
|
|
541
|
-
"
|
|
527
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
542
528
|
]
|
|
543
529
|
] = Field(alias="billableFeatures", default=None)
|
|
544
530
|
addons: Optional[
|
|
545
531
|
List[
|
|
546
|
-
"
|
|
532
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
547
533
|
]
|
|
548
534
|
] = Field(default=None)
|
|
549
535
|
price_overrides: Optional[
|
|
550
536
|
List[
|
|
551
|
-
"
|
|
537
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
552
538
|
]
|
|
553
539
|
] = Field(alias="priceOverrides", default=None)
|
|
554
540
|
|
|
555
541
|
|
|
556
|
-
class
|
|
542
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
557
543
|
BaseModel
|
|
558
544
|
):
|
|
559
545
|
feature_id: str = Field(alias="featureId")
|
|
560
546
|
quantity: float
|
|
561
547
|
|
|
562
548
|
|
|
563
|
-
class
|
|
549
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
564
550
|
BaseModel
|
|
565
551
|
):
|
|
566
552
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
567
553
|
quantity: float
|
|
568
554
|
|
|
569
555
|
|
|
570
|
-
class
|
|
556
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
571
557
|
BaseModel
|
|
572
558
|
):
|
|
573
559
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -575,43 +561,39 @@ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPr
|
|
|
575
561
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
576
562
|
|
|
577
563
|
|
|
578
|
-
class
|
|
564
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
579
565
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
580
566
|
plan_ref_id: str = Field(alias="planRefId")
|
|
581
567
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
582
568
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
583
569
|
billable_features: Optional[
|
|
584
570
|
List[
|
|
585
|
-
"
|
|
571
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
586
572
|
]
|
|
587
573
|
] = Field(alias="billableFeatures", default=None)
|
|
588
574
|
addons: Optional[
|
|
589
|
-
List[
|
|
590
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
591
|
-
]
|
|
575
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
592
576
|
] = Field(default=None)
|
|
593
577
|
price_overrides: Optional[
|
|
594
578
|
List[
|
|
595
|
-
"
|
|
579
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
596
580
|
]
|
|
597
581
|
] = Field(alias="priceOverrides", default=None)
|
|
598
582
|
|
|
599
583
|
|
|
600
|
-
class
|
|
584
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
601
585
|
BaseModel
|
|
602
586
|
):
|
|
603
587
|
feature_id: str = Field(alias="featureId")
|
|
604
588
|
quantity: float
|
|
605
589
|
|
|
606
590
|
|
|
607
|
-
class
|
|
608
|
-
BaseModel
|
|
609
|
-
):
|
|
591
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
610
592
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
611
593
|
quantity: float
|
|
612
594
|
|
|
613
595
|
|
|
614
|
-
class
|
|
596
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
615
597
|
BaseModel
|
|
616
598
|
):
|
|
617
599
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -619,7 +601,7 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOv
|
|
|
619
601
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
620
602
|
|
|
621
603
|
|
|
622
|
-
class
|
|
604
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
623
605
|
BaseModel
|
|
624
606
|
):
|
|
625
607
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -627,53 +609,82 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVar
|
|
|
627
609
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
628
610
|
|
|
629
611
|
|
|
630
|
-
class
|
|
631
|
-
BaseModel
|
|
632
|
-
):
|
|
612
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
633
613
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
634
614
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
635
615
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
636
616
|
|
|
637
617
|
|
|
638
|
-
class
|
|
618
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
619
|
+
billing_id: str = Field(alias="billingId")
|
|
620
|
+
status: SubscriptionInvoiceStatus
|
|
621
|
+
created_at: Any = Field(alias="createdAt")
|
|
622
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
623
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
624
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
625
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
626
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
627
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
628
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
629
|
+
alias="billingReason", default=None
|
|
630
|
+
)
|
|
631
|
+
currency: Optional[str] = Field(default=None)
|
|
632
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
633
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
634
|
+
alias="subTotalExcludingTax", default=None
|
|
635
|
+
)
|
|
636
|
+
total: Optional[float] = Field(default=None)
|
|
637
|
+
total_excluding_tax: Optional[float] = Field(
|
|
638
|
+
alias="totalExcludingTax", default=None
|
|
639
|
+
)
|
|
640
|
+
tax: Optional[float] = Field(default=None)
|
|
641
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
642
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
643
|
+
|
|
644
|
+
|
|
645
|
+
class CustomerResourceFragment(BaseModel):
|
|
646
|
+
resource_id: str = Field(alias="resourceId")
|
|
647
|
+
|
|
648
|
+
|
|
649
|
+
class SubscriptionScheduledUpdateData(BaseModel):
|
|
639
650
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
640
651
|
alias="subscriptionScheduleType"
|
|
641
652
|
)
|
|
642
653
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
643
654
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
644
|
-
target_package: Optional["
|
|
655
|
+
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
645
656
|
alias="targetPackage", default=None
|
|
646
657
|
)
|
|
647
658
|
schedule_variables: Optional[
|
|
648
659
|
Annotated[
|
|
649
660
|
Union[
|
|
650
|
-
"
|
|
651
|
-
"
|
|
652
|
-
"
|
|
653
|
-
"
|
|
654
|
-
"
|
|
655
|
-
"
|
|
656
|
-
"
|
|
657
|
-
"
|
|
661
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
662
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
663
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
664
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
665
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
666
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
667
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
668
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
658
669
|
],
|
|
659
670
|
Field(discriminator="typename__"),
|
|
660
671
|
]
|
|
661
672
|
] = Field(alias="scheduleVariables", default=None)
|
|
662
673
|
|
|
663
674
|
|
|
664
|
-
class
|
|
675
|
+
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
665
676
|
id: Any
|
|
666
677
|
ref_id: str = Field(alias="refId")
|
|
667
678
|
display_name: str = Field(alias="displayName")
|
|
668
679
|
|
|
669
680
|
|
|
670
|
-
class
|
|
681
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
671
682
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
672
683
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
673
684
|
new_quantity: float = Field(alias="newQuantity")
|
|
674
685
|
|
|
675
686
|
|
|
676
|
-
class
|
|
687
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
677
688
|
BaseModel
|
|
678
689
|
):
|
|
679
690
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -681,53 +692,55 @@ class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVaria
|
|
|
681
692
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
682
693
|
|
|
683
694
|
|
|
684
|
-
class
|
|
695
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
685
696
|
BaseModel
|
|
686
697
|
):
|
|
687
698
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
688
699
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
689
700
|
|
|
690
701
|
|
|
691
|
-
class
|
|
702
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
692
703
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
693
704
|
|
|
694
705
|
|
|
695
|
-
class
|
|
706
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
707
|
+
BaseModel
|
|
708
|
+
):
|
|
696
709
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
697
710
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
698
711
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
699
712
|
billable_features: Optional[
|
|
700
713
|
List[
|
|
701
|
-
"
|
|
714
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
702
715
|
]
|
|
703
716
|
] = Field(alias="billableFeatures", default=None)
|
|
704
717
|
addons: Optional[
|
|
705
718
|
List[
|
|
706
|
-
"
|
|
719
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
707
720
|
]
|
|
708
721
|
] = Field(default=None)
|
|
709
722
|
price_overrides: Optional[
|
|
710
723
|
List[
|
|
711
|
-
"
|
|
724
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
712
725
|
]
|
|
713
726
|
] = Field(alias="priceOverrides", default=None)
|
|
714
727
|
|
|
715
728
|
|
|
716
|
-
class
|
|
729
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
717
730
|
BaseModel
|
|
718
731
|
):
|
|
719
732
|
feature_id: str = Field(alias="featureId")
|
|
720
733
|
quantity: float
|
|
721
734
|
|
|
722
735
|
|
|
723
|
-
class
|
|
736
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
724
737
|
BaseModel
|
|
725
738
|
):
|
|
726
739
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
727
740
|
quantity: float
|
|
728
741
|
|
|
729
742
|
|
|
730
|
-
class
|
|
743
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
731
744
|
BaseModel
|
|
732
745
|
):
|
|
733
746
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -735,39 +748,43 @@ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPrice
|
|
|
735
748
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
736
749
|
|
|
737
750
|
|
|
738
|
-
class
|
|
751
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
739
752
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
740
753
|
plan_ref_id: str = Field(alias="planRefId")
|
|
741
754
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
742
755
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
743
756
|
billable_features: Optional[
|
|
744
757
|
List[
|
|
745
|
-
"
|
|
758
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
746
759
|
]
|
|
747
760
|
] = Field(alias="billableFeatures", default=None)
|
|
748
761
|
addons: Optional[
|
|
749
|
-
List[
|
|
762
|
+
List[
|
|
763
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
764
|
+
]
|
|
750
765
|
] = Field(default=None)
|
|
751
766
|
price_overrides: Optional[
|
|
752
767
|
List[
|
|
753
|
-
"
|
|
768
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
754
769
|
]
|
|
755
770
|
] = Field(alias="priceOverrides", default=None)
|
|
756
771
|
|
|
757
772
|
|
|
758
|
-
class
|
|
773
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
759
774
|
BaseModel
|
|
760
775
|
):
|
|
761
776
|
feature_id: str = Field(alias="featureId")
|
|
762
777
|
quantity: float
|
|
763
778
|
|
|
764
779
|
|
|
765
|
-
class
|
|
780
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
781
|
+
BaseModel
|
|
782
|
+
):
|
|
766
783
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
767
784
|
quantity: float
|
|
768
785
|
|
|
769
786
|
|
|
770
|
-
class
|
|
787
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
771
788
|
BaseModel
|
|
772
789
|
):
|
|
773
790
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -775,7 +792,7 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverr
|
|
|
775
792
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
776
793
|
|
|
777
794
|
|
|
778
|
-
class
|
|
795
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
779
796
|
BaseModel
|
|
780
797
|
):
|
|
781
798
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -783,31 +800,14 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariab
|
|
|
783
800
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
784
801
|
|
|
785
802
|
|
|
786
|
-
class
|
|
803
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
804
|
+
BaseModel
|
|
805
|
+
):
|
|
787
806
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
788
807
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
789
808
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
790
809
|
|
|
791
810
|
|
|
792
|
-
class TotalPriceFragment(BaseModel):
|
|
793
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
794
|
-
total: "TotalPriceFragmentTotal"
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
798
|
-
amount: float
|
|
799
|
-
currency: Currency
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
803
|
-
amount: float
|
|
804
|
-
currency: Currency
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
class CustomerResourceFragment(BaseModel):
|
|
808
|
-
resource_id: str = Field(alias="resourceId")
|
|
809
|
-
|
|
810
|
-
|
|
811
811
|
class SubscriptionFragment(BaseModel):
|
|
812
812
|
id: Any
|
|
813
813
|
subscription_id: str = Field(alias="subscriptionId")
|
|
@@ -1263,6 +1263,50 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1263
1263
|
pass
|
|
1264
1264
|
|
|
1265
1265
|
|
|
1266
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1267
|
+
display_name: str = Field(alias="displayName")
|
|
1268
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1269
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1270
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1271
|
+
period: PromotionalEntitlementPeriod
|
|
1272
|
+
start_date: Any = Field(alias="startDate")
|
|
1273
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1274
|
+
|
|
1275
|
+
|
|
1276
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1277
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1278
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1279
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1280
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1281
|
+
default=None
|
|
1282
|
+
)
|
|
1283
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1284
|
+
default=None
|
|
1285
|
+
)
|
|
1286
|
+
|
|
1287
|
+
|
|
1288
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1289
|
+
amount: float
|
|
1290
|
+
currency: Currency
|
|
1291
|
+
|
|
1292
|
+
|
|
1293
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1294
|
+
id: Any
|
|
1295
|
+
ref_id: str = Field(alias="refId")
|
|
1296
|
+
display_name: str = Field(alias="displayName")
|
|
1297
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1298
|
+
feature_units_plural: Optional[str] = Field(
|
|
1299
|
+
alias="featureUnitsPlural", default=None
|
|
1300
|
+
)
|
|
1301
|
+
|
|
1302
|
+
|
|
1303
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1304
|
+
addon_id: str = Field(alias="addonId")
|
|
1305
|
+
description: Optional[str] = Field(default=None)
|
|
1306
|
+
display_name: str = Field(alias="displayName")
|
|
1307
|
+
quantity: int
|
|
1308
|
+
|
|
1309
|
+
|
|
1266
1310
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1267
1311
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1268
1312
|
alias="subscriptionScheduleType"
|
|
@@ -1432,40 +1476,6 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1432
1476
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1433
1477
|
|
|
1434
1478
|
|
|
1435
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1436
|
-
addon_id: str = Field(alias="addonId")
|
|
1437
|
-
description: Optional[str] = Field(default=None)
|
|
1438
|
-
display_name: str = Field(alias="displayName")
|
|
1439
|
-
quantity: int
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1443
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1444
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1445
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1446
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1447
|
-
default=None
|
|
1448
|
-
)
|
|
1449
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1450
|
-
default=None
|
|
1451
|
-
)
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1455
|
-
amount: float
|
|
1456
|
-
currency: Currency
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1460
|
-
id: Any
|
|
1461
|
-
ref_id: str = Field(alias="refId")
|
|
1462
|
-
display_name: str = Field(alias="displayName")
|
|
1463
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1464
|
-
feature_units_plural: Optional[str] = Field(
|
|
1465
|
-
alias="featureUnitsPlural", default=None
|
|
1466
|
-
)
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
1479
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1470
1480
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1471
1481
|
plan_id: str = Field(alias="planId")
|
|
@@ -1562,16 +1572,6 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1562
1572
|
pass
|
|
1563
1573
|
|
|
1564
1574
|
|
|
1565
|
-
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1566
|
-
display_name: str = Field(alias="displayName")
|
|
1567
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1568
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1569
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1570
|
-
period: PromotionalEntitlementPeriod
|
|
1571
|
-
start_date: Any = Field(alias="startDate")
|
|
1572
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
1575
|
class CustomerPortalFragment(BaseModel):
|
|
1576
1576
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1577
1577
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -2841,22 +2841,22 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2841
2841
|
|
|
2842
2842
|
AddonDependencyFragment.model_rebuild()
|
|
2843
2843
|
PriceTierFragment.model_rebuild()
|
|
2844
|
+
PriceFragment.model_rebuild()
|
|
2844
2845
|
OveragePriceFragment.model_rebuild()
|
|
2845
2846
|
PackageEntitlementFragment.model_rebuild()
|
|
2846
|
-
PriceFragment.model_rebuild()
|
|
2847
2847
|
AddonFragment.model_rebuild()
|
|
2848
2848
|
FeatureFragment.model_rebuild()
|
|
2849
2849
|
EntitlementFragment.model_rebuild()
|
|
2850
|
-
|
|
2850
|
+
SlimCustomerFragment.model_rebuild()
|
|
2851
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2852
|
+
TotalPriceFragment.model_rebuild()
|
|
2851
2853
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2854
|
+
ProductFragment.model_rebuild()
|
|
2852
2855
|
PlanFragment.model_rebuild()
|
|
2853
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2854
|
-
SlimCustomerFragment.model_rebuild()
|
|
2855
|
-
SubscriptionInvoiceFragment.model_rebuild()
|
|
2856
|
-
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2857
2856
|
SubscriptionFutureUpdateData.model_rebuild()
|
|
2858
|
-
|
|
2857
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2859
2858
|
CustomerResourceFragment.model_rebuild()
|
|
2859
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2860
2860
|
SubscriptionFragment.model_rebuild()
|
|
2861
2861
|
ApplySubscriptionFragment.model_rebuild()
|
|
2862
2862
|
FontVariantFragment.model_rebuild()
|
|
@@ -2869,11 +2869,11 @@ CheckoutStateFragment.model_rebuild()
|
|
|
2869
2869
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2870
2870
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2871
2871
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2872
|
-
|
|
2873
|
-
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2872
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2874
2873
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2874
|
+
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2875
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2875
2876
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2876
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2877
2877
|
CustomerPortalFragment.model_rebuild()
|
|
2878
2878
|
CustomerStatisticsFragment.model_rebuild()
|
|
2879
2879
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -1990,6 +1990,7 @@ class GetWorkflowTriggersInput(BaseModel):
|
|
|
1990
1990
|
|
|
1991
1991
|
class GrantPromotionalEntitlementInput(BaseModel):
|
|
1992
1992
|
custom_end_date: Optional[Any] = Field(alias="customEndDate", default=None)
|
|
1993
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
1993
1994
|
feature_id: str = Field(alias="featureId")
|
|
1994
1995
|
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1995
1996
|
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
@@ -3181,6 +3182,7 @@ class PromotionalEntitlementInput(BaseModel):
|
|
|
3181
3182
|
customer_id: str = Field(alias="customerId")
|
|
3182
3183
|
description: Optional[str] = None
|
|
3183
3184
|
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
3185
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
3184
3186
|
environment_id: Any = Field(alias="environmentId")
|
|
3185
3187
|
feature_id: str = Field(alias="featureId")
|
|
3186
3188
|
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
@@ -3234,6 +3236,7 @@ class PromotionalEntitlementStatusFilterComparison(BaseModel):
|
|
|
3234
3236
|
class PromotionalEntitlementUpdateInput(BaseModel):
|
|
3235
3237
|
description: Optional[str] = None
|
|
3236
3238
|
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
3239
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
3237
3240
|
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
3238
3241
|
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
3239
3242
|
is_visible: bool = Field(alias="isVisible")
|
|
@@ -119,11 +119,11 @@ stigg/generated/client.py,sha256=tGqbCewOFV2YP6igue7hQZghW3XraHyV0OXcoKfsssE,173
|
|
|
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=LNYmJArnO1NejmLy-MhcZzdxPIRXDuKv2cYXTMxoDDk,36766
|
|
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=wffyWMiq-qYPwODG-RVpVV1AvSkzAFzmsMQCperBIR4,103850
|
|
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
|
|
@@ -145,7 +145,7 @@ stigg/generated/grant_promotional_entitlements.py,sha256=72PRYuqecL-0SkWb7deygkh
|
|
|
145
145
|
stigg/generated/import_customer.py,sha256=yEtrEB7T-Aykv3AUl-rAQz2XL6hKL0j-7JL3h-xi87o,403
|
|
146
146
|
stigg/generated/import_customer_bulk.py,sha256=miLn2ScWlPOH1IipltY5Vgd-ZQ_BkBk9t3-EsLvU5ZQ,284
|
|
147
147
|
stigg/generated/import_subscriptions_bulk.py,sha256=QgitpZkjE7eBhP1o5W0PTVAbKOvz61dNoeBAWupIcgU,297
|
|
148
|
-
stigg/generated/input_types.py,sha256=
|
|
148
|
+
stigg/generated/input_types.py,sha256=KTbdT8_LEUUS-Bd9WN1MCzJQHTXWC2dE40slgjzYF-o,201523
|
|
149
149
|
stigg/generated/migrate_subscription_to_latest.py,sha256=qQDwH7EodYAeJFb62IIl-MAEB5MbthgCJ0v1RMxpdYk,516
|
|
150
150
|
stigg/generated/preview_next_invoice.py,sha256=MiQ4Gv7Ve1Hv60xhaQi7uj82aq0xLP2UB-gjvcQdOL8,478
|
|
151
151
|
stigg/generated/preview_subscription.py,sha256=Qo2vlFs7sFzqaE8J_e-EHTRfLvG46lko-dcJMxDSCR0,475
|
|
@@ -161,7 +161,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
|
|
|
161
161
|
stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
|
|
162
162
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
163
163
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
164
|
-
stigg_api_client_v2-2.
|
|
165
|
-
stigg_api_client_v2-2.
|
|
166
|
-
stigg_api_client_v2-2.
|
|
167
|
-
stigg_api_client_v2-2.
|
|
164
|
+
stigg_api_client_v2-2.491.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
165
|
+
stigg_api_client_v2-2.491.0.dist-info/METADATA,sha256=IcOIzIGgT85GZbQ9Ywq2_vd69ew_KIds6X7iU2JADqA,2258
|
|
166
|
+
stigg_api_client_v2-2.491.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
167
|
+
stigg_api_client_v2-2.491.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|