stigg-api-client-v2 3.22.2__py3-none-any.whl → 3.23.1__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/enums.py +1 -0
- stigg/generated/fragments.py +272 -272
- stigg/generated/input_types.py +6 -0
- {stigg_api_client_v2-3.22.2.dist-info → stigg_api_client_v2-3.23.1.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-3.22.2.dist-info → stigg_api_client_v2-3.23.1.dist-info}/RECORD +8 -8
- {stigg_api_client_v2-3.22.2.dist-info → stigg_api_client_v2-3.23.1.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-3.22.2.dist-info → stigg_api_client_v2-3.23.1.dist-info}/WHEEL +0 -0
stigg/generated/__init__.py
CHANGED
|
@@ -752,6 +752,7 @@ from .input_types import (
|
|
|
752
752
|
IntFieldComparison,
|
|
753
753
|
IntFieldComparisonBetween,
|
|
754
754
|
InviteMembersInput,
|
|
755
|
+
LinkFeatureGroupToPackageInput,
|
|
755
756
|
ListAwsProductDimensionsInput,
|
|
756
757
|
ListAwsProductsInput,
|
|
757
758
|
MarkInvoiceAsPaidInput,
|
|
@@ -1411,6 +1412,7 @@ __all__ = [
|
|
|
1411
1412
|
"InviteMembersInput",
|
|
1412
1413
|
"InvoiceLineItemType",
|
|
1413
1414
|
"LayoutConfigurationFragment",
|
|
1415
|
+
"LinkFeatureGroupToPackageInput",
|
|
1414
1416
|
"ListAwsProductDimensionsInput",
|
|
1415
1417
|
"ListAwsProductsInput",
|
|
1416
1418
|
"MarkInvoiceAsPaidInput",
|
stigg/generated/enums.py
CHANGED
stigg/generated/fragments.py
CHANGED
|
@@ -60,40 +60,6 @@ class AddonDependencyFragment(BaseModel):
|
|
|
60
60
|
description: Optional[str] = Field(default=None)
|
|
61
61
|
|
|
62
62
|
|
|
63
|
-
class PackageEntitlementFragment(BaseModel):
|
|
64
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
65
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
66
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
67
|
-
feature_id: str = Field(alias="featureId")
|
|
68
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
69
|
-
alias="resetPeriod", default=None
|
|
70
|
-
)
|
|
71
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
72
|
-
alias="hiddenFromWidgets", default=None
|
|
73
|
-
)
|
|
74
|
-
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
75
|
-
display_name_override: Optional[str] = Field(
|
|
76
|
-
alias="displayNameOverride", default=None
|
|
77
|
-
)
|
|
78
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
79
|
-
feature: "PackageEntitlementFragmentFeature"
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
class PackageEntitlementFragmentFeature(BaseModel):
|
|
83
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
84
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
85
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
86
|
-
feature_units_plural: Optional[str] = Field(
|
|
87
|
-
alias="featureUnitsPlural", default=None
|
|
88
|
-
)
|
|
89
|
-
display_name: str = Field(alias="displayName")
|
|
90
|
-
description: Optional[str] = Field(default=None)
|
|
91
|
-
ref_id: str = Field(alias="refId")
|
|
92
|
-
additional_meta_data: Optional[Any] = Field(
|
|
93
|
-
alias="additionalMetaData", default=None
|
|
94
|
-
)
|
|
95
|
-
|
|
96
|
-
|
|
97
63
|
class PriceTierFragment(BaseModel):
|
|
98
64
|
up_to: Optional[float] = Field(alias="upTo", default=None)
|
|
99
65
|
unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
|
|
@@ -190,6 +156,40 @@ class OveragePriceFragmentFeature(BaseModel):
|
|
|
190
156
|
description: Optional[str] = Field(default=None)
|
|
191
157
|
|
|
192
158
|
|
|
159
|
+
class PackageEntitlementFragment(BaseModel):
|
|
160
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
161
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
162
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
163
|
+
feature_id: str = Field(alias="featureId")
|
|
164
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
165
|
+
alias="resetPeriod", default=None
|
|
166
|
+
)
|
|
167
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
168
|
+
alias="hiddenFromWidgets", default=None
|
|
169
|
+
)
|
|
170
|
+
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
171
|
+
display_name_override: Optional[str] = Field(
|
|
172
|
+
alias="displayNameOverride", default=None
|
|
173
|
+
)
|
|
174
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
175
|
+
feature: "PackageEntitlementFragmentFeature"
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
class PackageEntitlementFragmentFeature(BaseModel):
|
|
179
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
180
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
181
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
182
|
+
feature_units_plural: Optional[str] = Field(
|
|
183
|
+
alias="featureUnitsPlural", default=None
|
|
184
|
+
)
|
|
185
|
+
display_name: str = Field(alias="displayName")
|
|
186
|
+
description: Optional[str] = Field(default=None)
|
|
187
|
+
ref_id: str = Field(alias="refId")
|
|
188
|
+
additional_meta_data: Optional[Any] = Field(
|
|
189
|
+
alias="additionalMetaData", default=None
|
|
190
|
+
)
|
|
191
|
+
|
|
192
|
+
|
|
193
193
|
class AddonFragment(BaseModel):
|
|
194
194
|
id: Any
|
|
195
195
|
ref_id: str = Field(alias="refId")
|
|
@@ -228,91 +228,6 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
228
228
|
pass
|
|
229
229
|
|
|
230
230
|
|
|
231
|
-
class FeatureFragment(BaseModel):
|
|
232
|
-
typename__: str = Field(alias="__typename")
|
|
233
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
234
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
235
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
236
|
-
feature_units_plural: Optional[str] = Field(
|
|
237
|
-
alias="featureUnitsPlural", default=None
|
|
238
|
-
)
|
|
239
|
-
description: Optional[str] = Field(default=None)
|
|
240
|
-
display_name: str = Field(alias="displayName")
|
|
241
|
-
ref_id: str = Field(alias="refId")
|
|
242
|
-
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
243
|
-
alias="unitTransformation", default=None
|
|
244
|
-
)
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
class FeatureFragmentUnitTransformation(BaseModel):
|
|
248
|
-
divide: float
|
|
249
|
-
round: UnitTransformationRound
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
class EntitlementFragment(BaseModel):
|
|
253
|
-
typename__: str = Field(alias="__typename")
|
|
254
|
-
is_granted: bool = Field(alias="isGranted")
|
|
255
|
-
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
256
|
-
alias="accessDeniedReason", default=None
|
|
257
|
-
)
|
|
258
|
-
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
259
|
-
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
260
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
261
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
262
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
263
|
-
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
264
|
-
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
265
|
-
requested_values: Optional[List[str]] = Field(alias="requestedValues", default=None)
|
|
266
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
267
|
-
entitlement_updated_at: Optional[Any] = Field(
|
|
268
|
-
alias="entitlementUpdatedAt", default=None
|
|
269
|
-
)
|
|
270
|
-
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
271
|
-
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
272
|
-
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
273
|
-
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
274
|
-
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
275
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
276
|
-
alias="resetPeriod", default=None
|
|
277
|
-
)
|
|
278
|
-
reset_period_configuration: Optional[
|
|
279
|
-
Annotated[
|
|
280
|
-
Union[
|
|
281
|
-
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
282
|
-
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
283
|
-
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
284
|
-
],
|
|
285
|
-
Field(discriminator="typename__"),
|
|
286
|
-
]
|
|
287
|
-
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
288
|
-
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
292
|
-
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
293
|
-
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
294
|
-
alias="monthlyAccordingTo", default=None
|
|
295
|
-
)
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
299
|
-
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
300
|
-
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
301
|
-
alias="weeklyAccordingTo", default=None
|
|
302
|
-
)
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
306
|
-
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
307
|
-
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
308
|
-
alias="yearlyAccordingTo", default=None
|
|
309
|
-
)
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
class EntitlementFragmentFeature(FeatureFragment):
|
|
313
|
-
pass
|
|
314
|
-
|
|
315
|
-
|
|
316
231
|
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
317
232
|
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
318
233
|
|
|
@@ -468,45 +383,62 @@ class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
|
468
383
|
limit: float
|
|
469
384
|
|
|
470
385
|
|
|
471
|
-
class
|
|
386
|
+
class SlimCustomerFragment(BaseModel):
|
|
387
|
+
id: Any
|
|
388
|
+
name: Optional[str] = Field(default=None)
|
|
389
|
+
email: Optional[str] = Field(default=None)
|
|
390
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
391
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
392
|
+
ref_id: str = Field(alias="refId")
|
|
393
|
+
customer_id: str = Field(alias="customerId")
|
|
394
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
395
|
+
additional_meta_data: Optional[Any] = Field(
|
|
396
|
+
alias="additionalMetaData", default=None
|
|
397
|
+
)
|
|
398
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
399
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
400
|
+
)
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
class SubscriptionScheduledUpdateData(BaseModel):
|
|
472
404
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
473
405
|
alias="subscriptionScheduleType"
|
|
474
406
|
)
|
|
475
407
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
476
408
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
477
|
-
target_package: Optional["
|
|
409
|
+
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
478
410
|
alias="targetPackage", default=None
|
|
479
411
|
)
|
|
480
412
|
schedule_variables: Optional[
|
|
481
413
|
Annotated[
|
|
482
414
|
Union[
|
|
483
|
-
"
|
|
484
|
-
"
|
|
485
|
-
"
|
|
486
|
-
"
|
|
487
|
-
"
|
|
488
|
-
"
|
|
489
|
-
"
|
|
490
|
-
"
|
|
415
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
416
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
417
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
418
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
419
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
420
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
421
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
422
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
491
423
|
],
|
|
492
424
|
Field(discriminator="typename__"),
|
|
493
425
|
]
|
|
494
426
|
] = Field(alias="scheduleVariables", default=None)
|
|
495
427
|
|
|
496
428
|
|
|
497
|
-
class
|
|
429
|
+
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
498
430
|
id: Any
|
|
499
431
|
ref_id: str = Field(alias="refId")
|
|
500
432
|
display_name: str = Field(alias="displayName")
|
|
501
433
|
|
|
502
434
|
|
|
503
|
-
class
|
|
435
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
504
436
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
505
437
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
506
438
|
new_quantity: float = Field(alias="newQuantity")
|
|
507
439
|
|
|
508
440
|
|
|
509
|
-
class
|
|
441
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
510
442
|
BaseModel
|
|
511
443
|
):
|
|
512
444
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -514,53 +446,55 @@ class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVaria
|
|
|
514
446
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
515
447
|
|
|
516
448
|
|
|
517
|
-
class
|
|
449
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
518
450
|
BaseModel
|
|
519
451
|
):
|
|
520
452
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
521
453
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
522
454
|
|
|
523
455
|
|
|
524
|
-
class
|
|
456
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
525
457
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
526
458
|
|
|
527
459
|
|
|
528
|
-
class
|
|
460
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
461
|
+
BaseModel
|
|
462
|
+
):
|
|
529
463
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
530
464
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
531
465
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
532
466
|
billable_features: Optional[
|
|
533
467
|
List[
|
|
534
|
-
"
|
|
468
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
535
469
|
]
|
|
536
470
|
] = Field(alias="billableFeatures", default=None)
|
|
537
471
|
addons: Optional[
|
|
538
472
|
List[
|
|
539
|
-
"
|
|
473
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
540
474
|
]
|
|
541
475
|
] = Field(default=None)
|
|
542
476
|
price_overrides: Optional[
|
|
543
477
|
List[
|
|
544
|
-
"
|
|
478
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
545
479
|
]
|
|
546
480
|
] = Field(alias="priceOverrides", default=None)
|
|
547
481
|
|
|
548
482
|
|
|
549
|
-
class
|
|
483
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
550
484
|
BaseModel
|
|
551
485
|
):
|
|
552
486
|
feature_id: str = Field(alias="featureId")
|
|
553
487
|
quantity: float
|
|
554
488
|
|
|
555
489
|
|
|
556
|
-
class
|
|
490
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
557
491
|
BaseModel
|
|
558
492
|
):
|
|
559
493
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
560
494
|
quantity: float
|
|
561
495
|
|
|
562
496
|
|
|
563
|
-
class
|
|
497
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
564
498
|
BaseModel
|
|
565
499
|
):
|
|
566
500
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -568,39 +502,43 @@ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPrice
|
|
|
568
502
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
569
503
|
|
|
570
504
|
|
|
571
|
-
class
|
|
505
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
572
506
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
573
507
|
plan_ref_id: str = Field(alias="planRefId")
|
|
574
508
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
575
509
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
576
510
|
billable_features: Optional[
|
|
577
511
|
List[
|
|
578
|
-
"
|
|
512
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
579
513
|
]
|
|
580
514
|
] = Field(alias="billableFeatures", default=None)
|
|
581
515
|
addons: Optional[
|
|
582
|
-
List[
|
|
516
|
+
List[
|
|
517
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
518
|
+
]
|
|
583
519
|
] = Field(default=None)
|
|
584
520
|
price_overrides: Optional[
|
|
585
521
|
List[
|
|
586
|
-
"
|
|
522
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
587
523
|
]
|
|
588
524
|
] = Field(alias="priceOverrides", default=None)
|
|
589
525
|
|
|
590
526
|
|
|
591
|
-
class
|
|
527
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
592
528
|
BaseModel
|
|
593
529
|
):
|
|
594
530
|
feature_id: str = Field(alias="featureId")
|
|
595
531
|
quantity: float
|
|
596
532
|
|
|
597
533
|
|
|
598
|
-
class
|
|
534
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
535
|
+
BaseModel
|
|
536
|
+
):
|
|
599
537
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
600
538
|
quantity: float
|
|
601
539
|
|
|
602
540
|
|
|
603
|
-
class
|
|
541
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
604
542
|
BaseModel
|
|
605
543
|
):
|
|
606
544
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -608,7 +546,7 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverr
|
|
|
608
546
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
609
547
|
|
|
610
548
|
|
|
611
|
-
class
|
|
549
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
612
550
|
BaseModel
|
|
613
551
|
):
|
|
614
552
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -616,83 +554,53 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariab
|
|
|
616
554
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
617
555
|
|
|
618
556
|
|
|
619
|
-
class
|
|
557
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
558
|
+
BaseModel
|
|
559
|
+
):
|
|
620
560
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
621
561
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
622
562
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
623
563
|
|
|
624
564
|
|
|
625
|
-
class
|
|
626
|
-
id: Any
|
|
627
|
-
name: Optional[str] = Field(default=None)
|
|
628
|
-
email: Optional[str] = Field(default=None)
|
|
629
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
630
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
631
|
-
ref_id: str = Field(alias="refId")
|
|
632
|
-
customer_id: str = Field(alias="customerId")
|
|
633
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
634
|
-
additional_meta_data: Optional[Any] = Field(
|
|
635
|
-
alias="additionalMetaData", default=None
|
|
636
|
-
)
|
|
637
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
638
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
639
|
-
)
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
class TotalPriceFragment(BaseModel):
|
|
643
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
644
|
-
total: "TotalPriceFragmentTotal"
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
648
|
-
amount: float
|
|
649
|
-
currency: Currency
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
653
|
-
amount: float
|
|
654
|
-
currency: Currency
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
class SubscriptionScheduledUpdateData(BaseModel):
|
|
565
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
658
566
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
659
567
|
alias="subscriptionScheduleType"
|
|
660
568
|
)
|
|
661
569
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
662
570
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
663
|
-
target_package: Optional["
|
|
571
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
664
572
|
alias="targetPackage", default=None
|
|
665
573
|
)
|
|
666
574
|
schedule_variables: Optional[
|
|
667
575
|
Annotated[
|
|
668
576
|
Union[
|
|
669
|
-
"
|
|
670
|
-
"
|
|
671
|
-
"
|
|
672
|
-
"
|
|
673
|
-
"
|
|
674
|
-
"
|
|
675
|
-
"
|
|
676
|
-
"
|
|
577
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
578
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
579
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
580
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
581
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
582
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
583
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
584
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
677
585
|
],
|
|
678
586
|
Field(discriminator="typename__"),
|
|
679
587
|
]
|
|
680
588
|
] = Field(alias="scheduleVariables", default=None)
|
|
681
589
|
|
|
682
590
|
|
|
683
|
-
class
|
|
591
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
684
592
|
id: Any
|
|
685
593
|
ref_id: str = Field(alias="refId")
|
|
686
594
|
display_name: str = Field(alias="displayName")
|
|
687
595
|
|
|
688
596
|
|
|
689
|
-
class
|
|
597
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
690
598
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
691
599
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
692
600
|
new_quantity: float = Field(alias="newQuantity")
|
|
693
601
|
|
|
694
602
|
|
|
695
|
-
class
|
|
603
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
696
604
|
BaseModel
|
|
697
605
|
):
|
|
698
606
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -700,55 +608,53 @@ class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVa
|
|
|
700
608
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
701
609
|
|
|
702
610
|
|
|
703
|
-
class
|
|
611
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
704
612
|
BaseModel
|
|
705
613
|
):
|
|
706
614
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
707
615
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
708
616
|
|
|
709
617
|
|
|
710
|
-
class
|
|
618
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
711
619
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
712
620
|
|
|
713
621
|
|
|
714
|
-
class
|
|
715
|
-
BaseModel
|
|
716
|
-
):
|
|
622
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
717
623
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
718
624
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
719
625
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
720
626
|
billable_features: Optional[
|
|
721
627
|
List[
|
|
722
|
-
"
|
|
628
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
723
629
|
]
|
|
724
630
|
] = Field(alias="billableFeatures", default=None)
|
|
725
631
|
addons: Optional[
|
|
726
632
|
List[
|
|
727
|
-
"
|
|
633
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
728
634
|
]
|
|
729
635
|
] = Field(default=None)
|
|
730
636
|
price_overrides: Optional[
|
|
731
637
|
List[
|
|
732
|
-
"
|
|
638
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
733
639
|
]
|
|
734
640
|
] = Field(alias="priceOverrides", default=None)
|
|
735
641
|
|
|
736
642
|
|
|
737
|
-
class
|
|
643
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
738
644
|
BaseModel
|
|
739
645
|
):
|
|
740
646
|
feature_id: str = Field(alias="featureId")
|
|
741
647
|
quantity: float
|
|
742
648
|
|
|
743
649
|
|
|
744
|
-
class
|
|
650
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
745
651
|
BaseModel
|
|
746
652
|
):
|
|
747
653
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
748
654
|
quantity: float
|
|
749
655
|
|
|
750
656
|
|
|
751
|
-
class
|
|
657
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
752
658
|
BaseModel
|
|
753
659
|
):
|
|
754
660
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -756,43 +662,39 @@ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPr
|
|
|
756
662
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
757
663
|
|
|
758
664
|
|
|
759
|
-
class
|
|
665
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
760
666
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
761
667
|
plan_ref_id: str = Field(alias="planRefId")
|
|
762
668
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
763
669
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
764
670
|
billable_features: Optional[
|
|
765
671
|
List[
|
|
766
|
-
"
|
|
672
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
767
673
|
]
|
|
768
674
|
] = Field(alias="billableFeatures", default=None)
|
|
769
675
|
addons: Optional[
|
|
770
|
-
List[
|
|
771
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
772
|
-
]
|
|
676
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
773
677
|
] = Field(default=None)
|
|
774
678
|
price_overrides: Optional[
|
|
775
679
|
List[
|
|
776
|
-
"
|
|
680
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
777
681
|
]
|
|
778
682
|
] = Field(alias="priceOverrides", default=None)
|
|
779
683
|
|
|
780
684
|
|
|
781
|
-
class
|
|
685
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
782
686
|
BaseModel
|
|
783
687
|
):
|
|
784
688
|
feature_id: str = Field(alias="featureId")
|
|
785
689
|
quantity: float
|
|
786
690
|
|
|
787
691
|
|
|
788
|
-
class
|
|
789
|
-
BaseModel
|
|
790
|
-
):
|
|
692
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
791
693
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
792
694
|
quantity: float
|
|
793
695
|
|
|
794
696
|
|
|
795
|
-
class
|
|
697
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
796
698
|
BaseModel
|
|
797
699
|
):
|
|
798
700
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -800,7 +702,7 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOv
|
|
|
800
702
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
801
703
|
|
|
802
704
|
|
|
803
|
-
class
|
|
705
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
804
706
|
BaseModel
|
|
805
707
|
):
|
|
806
708
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -808,14 +710,27 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVar
|
|
|
808
710
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
809
711
|
|
|
810
712
|
|
|
811
|
-
class
|
|
812
|
-
BaseModel
|
|
813
|
-
):
|
|
713
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
814
714
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
815
715
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
816
716
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
817
717
|
|
|
818
718
|
|
|
719
|
+
class TotalPriceFragment(BaseModel):
|
|
720
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
721
|
+
total: "TotalPriceFragmentTotal"
|
|
722
|
+
|
|
723
|
+
|
|
724
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
725
|
+
amount: float
|
|
726
|
+
currency: Currency
|
|
727
|
+
|
|
728
|
+
|
|
729
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
730
|
+
amount: float
|
|
731
|
+
currency: Currency
|
|
732
|
+
|
|
733
|
+
|
|
819
734
|
class SubscriptionFragment(BaseModel):
|
|
820
735
|
id: Any
|
|
821
736
|
subscription_id: str = Field(alias="subscriptionId")
|
|
@@ -925,6 +840,91 @@ class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragm
|
|
|
925
840
|
pass
|
|
926
841
|
|
|
927
842
|
|
|
843
|
+
class FeatureFragment(BaseModel):
|
|
844
|
+
typename__: str = Field(alias="__typename")
|
|
845
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
846
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
847
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
848
|
+
feature_units_plural: Optional[str] = Field(
|
|
849
|
+
alias="featureUnitsPlural", default=None
|
|
850
|
+
)
|
|
851
|
+
description: Optional[str] = Field(default=None)
|
|
852
|
+
display_name: str = Field(alias="displayName")
|
|
853
|
+
ref_id: str = Field(alias="refId")
|
|
854
|
+
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
855
|
+
alias="unitTransformation", default=None
|
|
856
|
+
)
|
|
857
|
+
|
|
858
|
+
|
|
859
|
+
class FeatureFragmentUnitTransformation(BaseModel):
|
|
860
|
+
divide: float
|
|
861
|
+
round: UnitTransformationRound
|
|
862
|
+
|
|
863
|
+
|
|
864
|
+
class EntitlementFragment(BaseModel):
|
|
865
|
+
typename__: str = Field(alias="__typename")
|
|
866
|
+
is_granted: bool = Field(alias="isGranted")
|
|
867
|
+
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
868
|
+
alias="accessDeniedReason", default=None
|
|
869
|
+
)
|
|
870
|
+
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
871
|
+
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
872
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
873
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
874
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
875
|
+
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
876
|
+
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
877
|
+
requested_values: Optional[List[str]] = Field(alias="requestedValues", default=None)
|
|
878
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
879
|
+
entitlement_updated_at: Optional[Any] = Field(
|
|
880
|
+
alias="entitlementUpdatedAt", default=None
|
|
881
|
+
)
|
|
882
|
+
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
883
|
+
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
884
|
+
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
885
|
+
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
886
|
+
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
887
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
888
|
+
alias="resetPeriod", default=None
|
|
889
|
+
)
|
|
890
|
+
reset_period_configuration: Optional[
|
|
891
|
+
Annotated[
|
|
892
|
+
Union[
|
|
893
|
+
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
894
|
+
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
895
|
+
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
896
|
+
],
|
|
897
|
+
Field(discriminator="typename__"),
|
|
898
|
+
]
|
|
899
|
+
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
900
|
+
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
901
|
+
|
|
902
|
+
|
|
903
|
+
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
904
|
+
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
905
|
+
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
906
|
+
alias="monthlyAccordingTo", default=None
|
|
907
|
+
)
|
|
908
|
+
|
|
909
|
+
|
|
910
|
+
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
911
|
+
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
912
|
+
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
913
|
+
alias="weeklyAccordingTo", default=None
|
|
914
|
+
)
|
|
915
|
+
|
|
916
|
+
|
|
917
|
+
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
918
|
+
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
919
|
+
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
920
|
+
alias="yearlyAccordingTo", default=None
|
|
921
|
+
)
|
|
922
|
+
|
|
923
|
+
|
|
924
|
+
class EntitlementFragmentFeature(FeatureFragment):
|
|
925
|
+
pass
|
|
926
|
+
|
|
927
|
+
|
|
928
928
|
class ApplySubscriptionFragment(BaseModel):
|
|
929
929
|
subscription: Optional["ApplySubscriptionFragmentSubscription"] = Field(
|
|
930
930
|
default=None
|
|
@@ -1271,16 +1271,6 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1271
1271
|
pass
|
|
1272
1272
|
|
|
1273
1273
|
|
|
1274
|
-
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1275
|
-
display_name: str = Field(alias="displayName")
|
|
1276
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1277
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1278
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1279
|
-
period: PromotionalEntitlementPeriod
|
|
1280
|
-
start_date: Any = Field(alias="startDate")
|
|
1281
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
1274
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1285
1275
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1286
1276
|
alias="subscriptionScheduleType"
|
|
@@ -1596,6 +1586,16 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1596
1586
|
pass
|
|
1597
1587
|
|
|
1598
1588
|
|
|
1589
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1590
|
+
display_name: str = Field(alias="displayName")
|
|
1591
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1592
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1593
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1594
|
+
period: PromotionalEntitlementPeriod
|
|
1595
|
+
start_date: Any = Field(alias="startDate")
|
|
1596
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1597
|
+
|
|
1598
|
+
|
|
1599
1599
|
class CustomerPortalFragment(BaseModel):
|
|
1600
1600
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1601
1601
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -1823,6 +1823,40 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1823
1823
|
description: Optional[str] = Field(default=None)
|
|
1824
1824
|
|
|
1825
1825
|
|
|
1826
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1827
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1828
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1829
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1830
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1831
|
+
alias="resetPeriod", default=None
|
|
1832
|
+
)
|
|
1833
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1834
|
+
alias="hiddenFromWidgets", default=None
|
|
1835
|
+
)
|
|
1836
|
+
display_name_override: Optional[str] = Field(
|
|
1837
|
+
alias="displayNameOverride", default=None
|
|
1838
|
+
)
|
|
1839
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
1840
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1841
|
+
default=None
|
|
1842
|
+
)
|
|
1843
|
+
|
|
1844
|
+
|
|
1845
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1846
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1847
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1848
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1849
|
+
feature_units_plural: Optional[str] = Field(
|
|
1850
|
+
alias="featureUnitsPlural", default=None
|
|
1851
|
+
)
|
|
1852
|
+
display_name: str = Field(alias="displayName")
|
|
1853
|
+
description: Optional[str] = Field(default=None)
|
|
1854
|
+
ref_id: str = Field(alias="refId")
|
|
1855
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1856
|
+
alias="additionalMetaData", default=None
|
|
1857
|
+
)
|
|
1858
|
+
|
|
1859
|
+
|
|
1826
1860
|
class MockPaywallPriceFragment(BaseModel):
|
|
1827
1861
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1828
1862
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1865,40 +1899,6 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1865
1899
|
display_name: str = Field(alias="displayName")
|
|
1866
1900
|
|
|
1867
1901
|
|
|
1868
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1869
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1870
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1871
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1872
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1873
|
-
alias="resetPeriod", default=None
|
|
1874
|
-
)
|
|
1875
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1876
|
-
alias="hiddenFromWidgets", default=None
|
|
1877
|
-
)
|
|
1878
|
-
display_name_override: Optional[str] = Field(
|
|
1879
|
-
alias="displayNameOverride", default=None
|
|
1880
|
-
)
|
|
1881
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
1882
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1883
|
-
default=None
|
|
1884
|
-
)
|
|
1885
|
-
|
|
1886
|
-
|
|
1887
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1888
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1889
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1890
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1891
|
-
feature_units_plural: Optional[str] = Field(
|
|
1892
|
-
alias="featureUnitsPlural", default=None
|
|
1893
|
-
)
|
|
1894
|
-
display_name: str = Field(alias="displayName")
|
|
1895
|
-
description: Optional[str] = Field(default=None)
|
|
1896
|
-
ref_id: str = Field(alias="refId")
|
|
1897
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1898
|
-
alias="additionalMetaData", default=None
|
|
1899
|
-
)
|
|
1900
|
-
|
|
1901
|
-
|
|
1902
1902
|
class MockPaywallAddonFragment(BaseModel):
|
|
1903
1903
|
ref_id: str = Field(alias="refId")
|
|
1904
1904
|
display_name: str = Field(alias="displayName")
|
|
@@ -2872,24 +2872,24 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2872
2872
|
|
|
2873
2873
|
|
|
2874
2874
|
AddonDependencyFragment.model_rebuild()
|
|
2875
|
-
PackageEntitlementFragment.model_rebuild()
|
|
2876
2875
|
PriceTierFragment.model_rebuild()
|
|
2877
2876
|
PriceFragment.model_rebuild()
|
|
2878
2877
|
OveragePriceFragment.model_rebuild()
|
|
2878
|
+
PackageEntitlementFragment.model_rebuild()
|
|
2879
2879
|
AddonFragment.model_rebuild()
|
|
2880
|
-
FeatureFragment.model_rebuild()
|
|
2881
|
-
EntitlementFragment.model_rebuild()
|
|
2882
2880
|
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2883
2881
|
SubscriptionInvoiceFragment.model_rebuild()
|
|
2884
2882
|
CustomerResourceFragment.model_rebuild()
|
|
2885
2883
|
ProductFragment.model_rebuild()
|
|
2886
2884
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2887
2885
|
PlanFragment.model_rebuild()
|
|
2888
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2889
2886
|
SlimCustomerFragment.model_rebuild()
|
|
2890
|
-
TotalPriceFragment.model_rebuild()
|
|
2891
2887
|
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2888
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2889
|
+
TotalPriceFragment.model_rebuild()
|
|
2892
2890
|
SubscriptionFragment.model_rebuild()
|
|
2891
|
+
FeatureFragment.model_rebuild()
|
|
2892
|
+
EntitlementFragment.model_rebuild()
|
|
2893
2893
|
ApplySubscriptionFragment.model_rebuild()
|
|
2894
2894
|
FontVariantFragment.model_rebuild()
|
|
2895
2895
|
TypographyConfigurationFragment.model_rebuild()
|
|
@@ -2901,11 +2901,11 @@ CheckoutStateFragment.model_rebuild()
|
|
|
2901
2901
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2902
2902
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2903
2903
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2904
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2905
2904
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2906
2905
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2907
2906
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2908
2907
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2908
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2909
2909
|
CustomerPortalFragment.model_rebuild()
|
|
2910
2910
|
CustomerStatisticsFragment.model_rebuild()
|
|
2911
2911
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
|
@@ -2915,8 +2915,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
2915
2915
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
2916
2916
|
LayoutConfigurationFragment.model_rebuild()
|
|
2917
2917
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
2918
|
-
MockPaywallPriceFragment.model_rebuild()
|
|
2919
2918
|
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2919
|
+
MockPaywallPriceFragment.model_rebuild()
|
|
2920
2920
|
MockPaywallAddonFragment.model_rebuild()
|
|
2921
2921
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2922
2922
|
MockPaywallPlanFragment.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -2285,6 +2285,12 @@ class InviteMembersInput(BaseModel):
|
|
|
2285
2285
|
)
|
|
2286
2286
|
|
|
2287
2287
|
|
|
2288
|
+
class LinkFeatureGroupToPackageInput(BaseModel):
|
|
2289
|
+
environment_id: Optional[Any] = Field(alias="environmentId", default=None)
|
|
2290
|
+
feature_group_id: Any = Field(alias="featureGroupId")
|
|
2291
|
+
package_id: Any = Field(alias="packageId")
|
|
2292
|
+
|
|
2293
|
+
|
|
2288
2294
|
class ListAwsProductDimensionsInput(BaseModel):
|
|
2289
2295
|
environment_id: Optional[Any] = Field(alias="environmentId", default=None)
|
|
2290
2296
|
product_id: str = Field(alias="productId")
|
|
@@ -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=S7XqNd-Wikfs1cG0lcwUcHFh7wUdHheVyuGirMB2f5g,72819
|
|
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
|
|
@@ -119,11 +119,11 @@ stigg/generated/client.py,sha256=WIS31TSPUg8gKGvs5aSEBG_RSv8f8yCD80oUqCLUCvI,174
|
|
|
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=asjaGM369pxIj2wWuFtgq6mA-p_9U-otD9cP2baB-mQ,37744
|
|
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=O2ffHRtXMVElaED9oYkXLAMkrBZZdLVPzdJ5RmX8RXk,104912
|
|
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=51Ay7XRKsvm57xErOQPBrZU-nG9fcc8TiBwR-UPPkmc,205445
|
|
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-3.
|
|
165
|
-
stigg_api_client_v2-3.
|
|
166
|
-
stigg_api_client_v2-3.
|
|
167
|
-
stigg_api_client_v2-3.
|
|
164
|
+
stigg_api_client_v2-3.23.1.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
165
|
+
stigg_api_client_v2-3.23.1.dist-info/METADATA,sha256=uhWduWKdTsP6M9Ek92jPuXqprQq2AXMpLqRWwboODOE,2257
|
|
166
|
+
stigg_api_client_v2-3.23.1.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
167
|
+
stigg_api_client_v2-3.23.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|