stigg-api-client-v2 2.303.2__py3-none-any.whl → 2.303.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of stigg-api-client-v2 might be problematic. Click here for more details.
- stigg/generated/fragments.py +265 -265
- {stigg_api_client_v2-2.303.2.dist-info → stigg_api_client_v2-2.303.3.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.303.2.dist-info → stigg_api_client_v2-2.303.3.dist-info}/RECORD +5 -5
- {stigg_api_client_v2-2.303.2.dist-info → stigg_api_client_v2-2.303.3.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.303.2.dist-info → stigg_api_client_v2-2.303.3.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -59,6 +59,39 @@ class AddonDependencyFragment(BaseModel):
|
|
|
59
59
|
description: Optional[str] = Field(default=None)
|
|
60
60
|
|
|
61
61
|
|
|
62
|
+
class PackageEntitlementFragment(BaseModel):
|
|
63
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
64
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
65
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
66
|
+
feature_id: str = Field(alias="featureId")
|
|
67
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
68
|
+
alias="resetPeriod", default=None
|
|
69
|
+
)
|
|
70
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
71
|
+
alias="hiddenFromWidgets", default=None
|
|
72
|
+
)
|
|
73
|
+
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
74
|
+
display_name_override: Optional[str] = Field(
|
|
75
|
+
alias="displayNameOverride", default=None
|
|
76
|
+
)
|
|
77
|
+
feature: "PackageEntitlementFragmentFeature"
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
class PackageEntitlementFragmentFeature(BaseModel):
|
|
81
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
82
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
83
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
84
|
+
feature_units_plural: Optional[str] = Field(
|
|
85
|
+
alias="featureUnitsPlural", default=None
|
|
86
|
+
)
|
|
87
|
+
display_name: str = Field(alias="displayName")
|
|
88
|
+
description: Optional[str] = Field(default=None)
|
|
89
|
+
ref_id: str = Field(alias="refId")
|
|
90
|
+
additional_meta_data: Optional[Any] = Field(
|
|
91
|
+
alias="additionalMetaData", default=None
|
|
92
|
+
)
|
|
93
|
+
|
|
94
|
+
|
|
62
95
|
class PriceTierFragment(BaseModel):
|
|
63
96
|
up_to: Optional[float] = Field(alias="upTo", default=None)
|
|
64
97
|
unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
|
|
@@ -147,39 +180,6 @@ class PriceFragmentFeature(BaseModel):
|
|
|
147
180
|
description: Optional[str] = Field(default=None)
|
|
148
181
|
|
|
149
182
|
|
|
150
|
-
class PackageEntitlementFragment(BaseModel):
|
|
151
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
152
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
153
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
154
|
-
feature_id: str = Field(alias="featureId")
|
|
155
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
156
|
-
alias="resetPeriod", default=None
|
|
157
|
-
)
|
|
158
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
159
|
-
alias="hiddenFromWidgets", default=None
|
|
160
|
-
)
|
|
161
|
-
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
162
|
-
display_name_override: Optional[str] = Field(
|
|
163
|
-
alias="displayNameOverride", default=None
|
|
164
|
-
)
|
|
165
|
-
feature: "PackageEntitlementFragmentFeature"
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
class PackageEntitlementFragmentFeature(BaseModel):
|
|
169
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
170
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
171
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
172
|
-
feature_units_plural: Optional[str] = Field(
|
|
173
|
-
alias="featureUnitsPlural", default=None
|
|
174
|
-
)
|
|
175
|
-
display_name: str = Field(alias="displayName")
|
|
176
|
-
description: Optional[str] = Field(default=None)
|
|
177
|
-
ref_id: str = Field(alias="refId")
|
|
178
|
-
additional_meta_data: Optional[Any] = Field(
|
|
179
|
-
alias="additionalMetaData", default=None
|
|
180
|
-
)
|
|
181
|
-
|
|
182
|
-
|
|
183
183
|
class AddonFragment(BaseModel):
|
|
184
184
|
id: str
|
|
185
185
|
ref_id: str = Field(alias="refId")
|
|
@@ -298,6 +298,196 @@ class EntitlementFragmentFeature(FeatureFragment):
|
|
|
298
298
|
pass
|
|
299
299
|
|
|
300
300
|
|
|
301
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
302
|
+
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
303
|
+
alias="subscriptionScheduleType"
|
|
304
|
+
)
|
|
305
|
+
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
306
|
+
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
307
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
308
|
+
alias="targetPackage", default=None
|
|
309
|
+
)
|
|
310
|
+
schedule_variables: Optional[
|
|
311
|
+
Annotated[
|
|
312
|
+
Union[
|
|
313
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
314
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
315
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
316
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
317
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
318
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
319
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
320
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
321
|
+
],
|
|
322
|
+
Field(discriminator="typename__"),
|
|
323
|
+
]
|
|
324
|
+
] = Field(alias="scheduleVariables", default=None)
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
328
|
+
id: str
|
|
329
|
+
ref_id: str = Field(alias="refId")
|
|
330
|
+
display_name: str = Field(alias="displayName")
|
|
331
|
+
|
|
332
|
+
|
|
333
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
334
|
+
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
335
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
336
|
+
new_quantity: float = Field(alias="newQuantity")
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
340
|
+
BaseModel
|
|
341
|
+
):
|
|
342
|
+
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
343
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
344
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
348
|
+
BaseModel
|
|
349
|
+
):
|
|
350
|
+
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
351
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
355
|
+
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
359
|
+
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
360
|
+
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
361
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
362
|
+
billable_features: Optional[
|
|
363
|
+
List[
|
|
364
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
365
|
+
]
|
|
366
|
+
] = Field(alias="billableFeatures", default=None)
|
|
367
|
+
addons: Optional[
|
|
368
|
+
List[
|
|
369
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
370
|
+
]
|
|
371
|
+
] = Field(default=None)
|
|
372
|
+
price_overrides: Optional[
|
|
373
|
+
List[
|
|
374
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
375
|
+
]
|
|
376
|
+
] = Field(alias="priceOverrides", default=None)
|
|
377
|
+
|
|
378
|
+
|
|
379
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
380
|
+
BaseModel
|
|
381
|
+
):
|
|
382
|
+
feature_id: str = Field(alias="featureId")
|
|
383
|
+
quantity: float
|
|
384
|
+
|
|
385
|
+
|
|
386
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
387
|
+
BaseModel
|
|
388
|
+
):
|
|
389
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
390
|
+
quantity: float
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
394
|
+
BaseModel
|
|
395
|
+
):
|
|
396
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
397
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
398
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
399
|
+
|
|
400
|
+
|
|
401
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
402
|
+
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
403
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
404
|
+
change_type: PlanChangeType = Field(alias="changeType")
|
|
405
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
406
|
+
billable_features: Optional[
|
|
407
|
+
List[
|
|
408
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
409
|
+
]
|
|
410
|
+
] = Field(alias="billableFeatures", default=None)
|
|
411
|
+
addons: Optional[
|
|
412
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
413
|
+
] = Field(default=None)
|
|
414
|
+
price_overrides: Optional[
|
|
415
|
+
List[
|
|
416
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
417
|
+
]
|
|
418
|
+
] = Field(alias="priceOverrides", default=None)
|
|
419
|
+
|
|
420
|
+
|
|
421
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
422
|
+
BaseModel
|
|
423
|
+
):
|
|
424
|
+
feature_id: str = Field(alias="featureId")
|
|
425
|
+
quantity: float
|
|
426
|
+
|
|
427
|
+
|
|
428
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
429
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
430
|
+
quantity: float
|
|
431
|
+
|
|
432
|
+
|
|
433
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
434
|
+
BaseModel
|
|
435
|
+
):
|
|
436
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
437
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
438
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
442
|
+
BaseModel
|
|
443
|
+
):
|
|
444
|
+
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
445
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
446
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
447
|
+
|
|
448
|
+
|
|
449
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
450
|
+
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
451
|
+
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
452
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
456
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
class TotalPriceFragment(BaseModel):
|
|
460
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
461
|
+
total: "TotalPriceFragmentTotal"
|
|
462
|
+
|
|
463
|
+
|
|
464
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
465
|
+
amount: float
|
|
466
|
+
currency: Currency
|
|
467
|
+
|
|
468
|
+
|
|
469
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
470
|
+
amount: float
|
|
471
|
+
currency: Currency
|
|
472
|
+
|
|
473
|
+
|
|
474
|
+
class SlimCustomerFragment(BaseModel):
|
|
475
|
+
id: str
|
|
476
|
+
name: Optional[str] = Field(default=None)
|
|
477
|
+
email: Optional[str] = Field(default=None)
|
|
478
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
479
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
480
|
+
ref_id: str = Field(alias="refId")
|
|
481
|
+
customer_id: str = Field(alias="customerId")
|
|
482
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
483
|
+
additional_meta_data: Optional[Any] = Field(
|
|
484
|
+
alias="additionalMetaData", default=None
|
|
485
|
+
)
|
|
486
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
487
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
488
|
+
)
|
|
489
|
+
|
|
490
|
+
|
|
301
491
|
class SubscriptionInvoiceFragment(BaseModel):
|
|
302
492
|
billing_id: str = Field(alias="billingId")
|
|
303
493
|
status: SubscriptionInvoiceStatus
|
|
@@ -319,24 +509,9 @@ class SubscriptionInvoiceFragment(BaseModel):
|
|
|
319
509
|
total: Optional[float] = Field(default=None)
|
|
320
510
|
total_excluding_tax: Optional[float] = Field(
|
|
321
511
|
alias="totalExcludingTax", default=None
|
|
322
|
-
)
|
|
323
|
-
tax: Optional[float] = Field(default=None)
|
|
324
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
class TotalPriceFragment(BaseModel):
|
|
328
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
329
|
-
total: "TotalPriceFragmentTotal"
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
333
|
-
amount: float
|
|
334
|
-
currency: Currency
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
338
|
-
amount: float
|
|
339
|
-
currency: Currency
|
|
512
|
+
)
|
|
513
|
+
tax: Optional[float] = Field(default=None)
|
|
514
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
340
515
|
|
|
341
516
|
|
|
342
517
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
@@ -505,23 +680,6 @@ class CustomerResourceFragment(BaseModel):
|
|
|
505
680
|
resource_id: str = Field(alias="resourceId")
|
|
506
681
|
|
|
507
682
|
|
|
508
|
-
class SlimCustomerFragment(BaseModel):
|
|
509
|
-
id: str
|
|
510
|
-
name: Optional[str] = Field(default=None)
|
|
511
|
-
email: Optional[str] = Field(default=None)
|
|
512
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
513
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
514
|
-
ref_id: str = Field(alias="refId")
|
|
515
|
-
customer_id: str = Field(alias="customerId")
|
|
516
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
517
|
-
additional_meta_data: Optional[Any] = Field(
|
|
518
|
-
alias="additionalMetaData", default=None
|
|
519
|
-
)
|
|
520
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
521
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
522
|
-
)
|
|
523
|
-
|
|
524
|
-
|
|
525
683
|
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
526
684
|
package_group_id: str = Field(alias="packageGroupId")
|
|
527
685
|
display_name: str = Field(alias="displayName")
|
|
@@ -642,164 +800,6 @@ class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
|
642
800
|
limit: float
|
|
643
801
|
|
|
644
802
|
|
|
645
|
-
class SubscriptionFutureUpdateData(BaseModel):
|
|
646
|
-
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
647
|
-
alias="subscriptionScheduleType"
|
|
648
|
-
)
|
|
649
|
-
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
650
|
-
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
651
|
-
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
652
|
-
alias="targetPackage", default=None
|
|
653
|
-
)
|
|
654
|
-
schedule_variables: Optional[
|
|
655
|
-
Annotated[
|
|
656
|
-
Union[
|
|
657
|
-
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
658
|
-
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
659
|
-
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
660
|
-
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
661
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
662
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
663
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
664
|
-
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
665
|
-
],
|
|
666
|
-
Field(discriminator="typename__"),
|
|
667
|
-
]
|
|
668
|
-
] = Field(alias="scheduleVariables", default=None)
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
672
|
-
id: str
|
|
673
|
-
ref_id: str = Field(alias="refId")
|
|
674
|
-
display_name: str = Field(alias="displayName")
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
678
|
-
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
679
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
680
|
-
new_quantity: float = Field(alias="newQuantity")
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
684
|
-
BaseModel
|
|
685
|
-
):
|
|
686
|
-
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
687
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
688
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
692
|
-
BaseModel
|
|
693
|
-
):
|
|
694
|
-
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
695
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
699
|
-
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
703
|
-
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
704
|
-
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
705
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
706
|
-
billable_features: Optional[
|
|
707
|
-
List[
|
|
708
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
709
|
-
]
|
|
710
|
-
] = Field(alias="billableFeatures", default=None)
|
|
711
|
-
addons: Optional[
|
|
712
|
-
List[
|
|
713
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
714
|
-
]
|
|
715
|
-
] = Field(default=None)
|
|
716
|
-
price_overrides: Optional[
|
|
717
|
-
List[
|
|
718
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
719
|
-
]
|
|
720
|
-
] = Field(alias="priceOverrides", default=None)
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
724
|
-
BaseModel
|
|
725
|
-
):
|
|
726
|
-
feature_id: str = Field(alias="featureId")
|
|
727
|
-
quantity: float
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
731
|
-
BaseModel
|
|
732
|
-
):
|
|
733
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
734
|
-
quantity: float
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
738
|
-
BaseModel
|
|
739
|
-
):
|
|
740
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
741
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
742
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
746
|
-
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
747
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
748
|
-
change_type: PlanChangeType = Field(alias="changeType")
|
|
749
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
750
|
-
billable_features: Optional[
|
|
751
|
-
List[
|
|
752
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
753
|
-
]
|
|
754
|
-
] = Field(alias="billableFeatures", default=None)
|
|
755
|
-
addons: Optional[
|
|
756
|
-
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
757
|
-
] = Field(default=None)
|
|
758
|
-
price_overrides: Optional[
|
|
759
|
-
List[
|
|
760
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
761
|
-
]
|
|
762
|
-
] = Field(alias="priceOverrides", default=None)
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
766
|
-
BaseModel
|
|
767
|
-
):
|
|
768
|
-
feature_id: str = Field(alias="featureId")
|
|
769
|
-
quantity: float
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
773
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
774
|
-
quantity: float
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
778
|
-
BaseModel
|
|
779
|
-
):
|
|
780
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
781
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
782
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
786
|
-
BaseModel
|
|
787
|
-
):
|
|
788
|
-
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
789
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
790
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
794
|
-
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
795
|
-
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
796
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
800
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
801
|
-
|
|
802
|
-
|
|
803
803
|
class SubscriptionFragment(BaseModel):
|
|
804
804
|
id: str
|
|
805
805
|
subscription_id: str = Field(alias="subscriptionId")
|
|
@@ -1785,39 +1785,6 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1785
1785
|
description: Optional[str] = Field(default=None)
|
|
1786
1786
|
|
|
1787
1787
|
|
|
1788
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1789
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1790
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1791
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1792
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1793
|
-
alias="resetPeriod", default=None
|
|
1794
|
-
)
|
|
1795
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1796
|
-
alias="hiddenFromWidgets", default=None
|
|
1797
|
-
)
|
|
1798
|
-
display_name_override: Optional[str] = Field(
|
|
1799
|
-
alias="displayNameOverride", default=None
|
|
1800
|
-
)
|
|
1801
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1802
|
-
default=None
|
|
1803
|
-
)
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1807
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1808
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1809
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1810
|
-
feature_units_plural: Optional[str] = Field(
|
|
1811
|
-
alias="featureUnitsPlural", default=None
|
|
1812
|
-
)
|
|
1813
|
-
display_name: str = Field(alias="displayName")
|
|
1814
|
-
description: Optional[str] = Field(default=None)
|
|
1815
|
-
ref_id: str = Field(alias="refId")
|
|
1816
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1817
|
-
alias="additionalMetaData", default=None
|
|
1818
|
-
)
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
1788
|
class MockPaywallPriceFragment(BaseModel):
|
|
1822
1789
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1823
1790
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1852,6 +1819,39 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1852
1819
|
display_name: str = Field(alias="displayName")
|
|
1853
1820
|
|
|
1854
1821
|
|
|
1822
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1823
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1824
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1825
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1826
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1827
|
+
alias="resetPeriod", default=None
|
|
1828
|
+
)
|
|
1829
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1830
|
+
alias="hiddenFromWidgets", default=None
|
|
1831
|
+
)
|
|
1832
|
+
display_name_override: Optional[str] = Field(
|
|
1833
|
+
alias="displayNameOverride", default=None
|
|
1834
|
+
)
|
|
1835
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1836
|
+
default=None
|
|
1837
|
+
)
|
|
1838
|
+
|
|
1839
|
+
|
|
1840
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1841
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1842
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1843
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1844
|
+
feature_units_plural: Optional[str] = Field(
|
|
1845
|
+
alias="featureUnitsPlural", default=None
|
|
1846
|
+
)
|
|
1847
|
+
display_name: str = Field(alias="displayName")
|
|
1848
|
+
description: Optional[str] = Field(default=None)
|
|
1849
|
+
ref_id: str = Field(alias="refId")
|
|
1850
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1851
|
+
alias="additionalMetaData", default=None
|
|
1852
|
+
)
|
|
1853
|
+
|
|
1854
|
+
|
|
1855
1855
|
class MockPaywallAddonFragment(BaseModel):
|
|
1856
1856
|
ref_id: str = Field(alias="refId")
|
|
1857
1857
|
display_name: str = Field(alias="displayName")
|
|
@@ -2762,23 +2762,23 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2762
2762
|
|
|
2763
2763
|
|
|
2764
2764
|
AddonDependencyFragment.model_rebuild()
|
|
2765
|
+
PackageEntitlementFragment.model_rebuild()
|
|
2765
2766
|
PriceTierFragment.model_rebuild()
|
|
2766
2767
|
OveragePriceFragment.model_rebuild()
|
|
2767
2768
|
PriceFragment.model_rebuild()
|
|
2768
|
-
PackageEntitlementFragment.model_rebuild()
|
|
2769
2769
|
AddonFragment.model_rebuild()
|
|
2770
2770
|
FeatureFragment.model_rebuild()
|
|
2771
2771
|
EntitlementFragment.model_rebuild()
|
|
2772
|
-
|
|
2772
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2773
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2773
2774
|
TotalPriceFragment.model_rebuild()
|
|
2775
|
+
SlimCustomerFragment.model_rebuild()
|
|
2776
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2774
2777
|
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2775
2778
|
CustomerResourceFragment.model_rebuild()
|
|
2776
|
-
SlimCustomerFragment.model_rebuild()
|
|
2777
2779
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2778
2780
|
ProductFragment.model_rebuild()
|
|
2779
2781
|
PlanFragment.model_rebuild()
|
|
2780
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2781
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2782
2782
|
SubscriptionFragment.model_rebuild()
|
|
2783
2783
|
ApplySubscriptionFragment.model_rebuild()
|
|
2784
2784
|
FontVariantFragment.model_rebuild()
|
|
@@ -2805,8 +2805,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
2805
2805
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
2806
2806
|
LayoutConfigurationFragment.model_rebuild()
|
|
2807
2807
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
2808
|
-
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2809
2808
|
MockPaywallPriceFragment.model_rebuild()
|
|
2809
|
+
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2810
2810
|
MockPaywallAddonFragment.model_rebuild()
|
|
2811
2811
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2812
2812
|
MockPaywallPlanFragment.model_rebuild()
|
|
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=pc9LCxX-JHp05iOwlZI6QCpzXH5kinzBRAvgTHMBXyE,3433
|
|
|
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=9UETuK1cF03sHgd9ZpYofwjiO2jvdGyJuJoR83Geo0g,100553
|
|
127
127
|
stigg/generated/get_active_subscriptions.py,sha256=ngZ9jr8vzGI59wT8FhUFl46a8j9waoNjeZ1_lrcu2ww,513
|
|
128
128
|
stigg/generated/get_active_subscriptions_list.py,sha256=Awi9al2MXxdt_y7ZnWYZh8U3R9XiX50c7TyO4WZxyhw,541
|
|
129
129
|
stigg/generated/get_checkout_state.py,sha256=SAOXGAND879dwb7R5mr5LPZuPVuMUDwNR5M4mgmHv6w,409
|
|
@@ -160,7 +160,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
|
|
|
160
160
|
stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
|
|
161
161
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
162
162
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
163
|
-
stigg_api_client_v2-2.303.
|
|
164
|
-
stigg_api_client_v2-2.303.
|
|
165
|
-
stigg_api_client_v2-2.303.
|
|
166
|
-
stigg_api_client_v2-2.303.
|
|
163
|
+
stigg_api_client_v2-2.303.3.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.303.3.dist-info/METADATA,sha256=KtZEvQ0gP4pq4kcolbncM9RC5fSYM7v5xwsOelCPMGw,2258
|
|
165
|
+
stigg_api_client_v2-2.303.3.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.303.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|