stigg-api-client-v2 3.26.0__py3-none-any.whl → 3.27.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of stigg-api-client-v2 might be problematic. Click here for more details.
- stigg/generated/__init__.py +2 -0
- stigg/generated/fragments.py +327 -327
- stigg/generated/input_types.py +10 -1
- {stigg_api_client_v2-3.26.0.dist-info → stigg_api_client_v2-3.27.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-3.26.0.dist-info → stigg_api_client_v2-3.27.0.dist-info}/RECORD +7 -7
- {stigg_api_client_v2-3.26.0.dist-info → stigg_api_client_v2-3.27.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-3.26.0.dist-info → stigg_api_client_v2-3.27.0.dist-info}/WHEEL +0 -0
stigg/generated/__init__.py
CHANGED
|
@@ -906,6 +906,7 @@ from .input_types import (
|
|
|
906
906
|
UnArchiveFeatureGroupInput,
|
|
907
907
|
UnArchiveFeatureInput,
|
|
908
908
|
UnArchivePlanInput,
|
|
909
|
+
UnitsInput,
|
|
909
910
|
UnitTransformationInput,
|
|
910
911
|
UnlinkFeatureGroupFromPackageInput,
|
|
911
912
|
UpdateAccountInput,
|
|
@@ -1872,6 +1873,7 @@ __all__ = [
|
|
|
1872
1873
|
"UnarchiveEnvironmentInput",
|
|
1873
1874
|
"UnitTransformationInput",
|
|
1874
1875
|
"UnitTransformationRound",
|
|
1876
|
+
"UnitsInput",
|
|
1875
1877
|
"UnlinkFeatureGroupFromPackageInput",
|
|
1876
1878
|
"UpdateAccountInput",
|
|
1877
1879
|
"UpdateCouponInput",
|
stigg/generated/fragments.py
CHANGED
|
@@ -80,41 +80,29 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
80
80
|
currency: Currency
|
|
81
81
|
|
|
82
82
|
|
|
83
|
-
class
|
|
83
|
+
class OveragePriceFragment(BaseModel):
|
|
84
84
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
85
85
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
86
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
87
86
|
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
87
|
billing_country_code: Optional[str] = Field(
|
|
91
88
|
alias="billingCountryCode", default=None
|
|
92
89
|
)
|
|
93
|
-
price: Optional["
|
|
94
|
-
credit_rate: Optional["PriceFragmentCreditRate"] = Field(
|
|
95
|
-
alias="creditRate", default=None
|
|
96
|
-
)
|
|
90
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
97
91
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
98
|
-
tiers: Optional[List["
|
|
99
|
-
feature: Optional["
|
|
100
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
92
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
93
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
101
94
|
|
|
102
95
|
|
|
103
|
-
class
|
|
96
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
104
97
|
amount: float
|
|
105
98
|
currency: Currency
|
|
106
99
|
|
|
107
100
|
|
|
108
|
-
class
|
|
109
|
-
amount: float
|
|
110
|
-
custom_currency_id: Any = Field(alias="customCurrencyId")
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
class PriceFragmentTiers(PriceTierFragment):
|
|
101
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
114
102
|
pass
|
|
115
103
|
|
|
116
104
|
|
|
117
|
-
class
|
|
105
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
118
106
|
ref_id: str = Field(alias="refId")
|
|
119
107
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
120
108
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -124,29 +112,41 @@ class PriceFragmentFeature(BaseModel):
|
|
|
124
112
|
description: Optional[str] = Field(default=None)
|
|
125
113
|
|
|
126
114
|
|
|
127
|
-
class
|
|
115
|
+
class PriceFragment(BaseModel):
|
|
128
116
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
129
117
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
118
|
+
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
130
119
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
120
|
+
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
121
|
+
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
131
122
|
billing_country_code: Optional[str] = Field(
|
|
132
123
|
alias="billingCountryCode", default=None
|
|
133
124
|
)
|
|
134
|
-
price: Optional["
|
|
125
|
+
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
126
|
+
credit_rate: Optional["PriceFragmentCreditRate"] = Field(
|
|
127
|
+
alias="creditRate", default=None
|
|
128
|
+
)
|
|
135
129
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
136
|
-
tiers: Optional[List["
|
|
137
|
-
feature: Optional["
|
|
130
|
+
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
131
|
+
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
132
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
138
133
|
|
|
139
134
|
|
|
140
|
-
class
|
|
135
|
+
class PriceFragmentPrice(BaseModel):
|
|
141
136
|
amount: float
|
|
142
137
|
currency: Currency
|
|
143
138
|
|
|
144
139
|
|
|
145
|
-
class
|
|
140
|
+
class PriceFragmentCreditRate(BaseModel):
|
|
141
|
+
amount: float
|
|
142
|
+
custom_currency_id: Any = Field(alias="customCurrencyId")
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
class PriceFragmentTiers(PriceTierFragment):
|
|
146
146
|
pass
|
|
147
147
|
|
|
148
148
|
|
|
149
|
-
class
|
|
149
|
+
class PriceFragmentFeature(BaseModel):
|
|
150
150
|
ref_id: str = Field(alias="refId")
|
|
151
151
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
152
152
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -228,6 +228,73 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
228
228
|
pass
|
|
229
229
|
|
|
230
230
|
|
|
231
|
+
class SlimCustomerFragment(BaseModel):
|
|
232
|
+
id: Any
|
|
233
|
+
name: Optional[str] = Field(default=None)
|
|
234
|
+
email: Optional[str] = Field(default=None)
|
|
235
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
236
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
237
|
+
ref_id: str = Field(alias="refId")
|
|
238
|
+
customer_id: str = Field(alias="customerId")
|
|
239
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
240
|
+
additional_meta_data: Optional[Any] = Field(
|
|
241
|
+
alias="additionalMetaData", default=None
|
|
242
|
+
)
|
|
243
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
244
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
245
|
+
)
|
|
246
|
+
|
|
247
|
+
|
|
248
|
+
class CustomerResourceFragment(BaseModel):
|
|
249
|
+
resource_id: str = Field(alias="resourceId")
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
253
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
257
|
+
billing_id: str = Field(alias="billingId")
|
|
258
|
+
status: SubscriptionInvoiceStatus
|
|
259
|
+
created_at: Any = Field(alias="createdAt")
|
|
260
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
261
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
262
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
263
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
264
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
265
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
266
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
267
|
+
alias="billingReason", default=None
|
|
268
|
+
)
|
|
269
|
+
currency: Optional[str] = Field(default=None)
|
|
270
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
271
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
272
|
+
alias="subTotalExcludingTax", default=None
|
|
273
|
+
)
|
|
274
|
+
total: Optional[float] = Field(default=None)
|
|
275
|
+
total_excluding_tax: Optional[float] = Field(
|
|
276
|
+
alias="totalExcludingTax", default=None
|
|
277
|
+
)
|
|
278
|
+
tax: Optional[float] = Field(default=None)
|
|
279
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
280
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
class TotalPriceFragment(BaseModel):
|
|
284
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
285
|
+
total: "TotalPriceFragmentTotal"
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
289
|
+
amount: float
|
|
290
|
+
currency: Currency
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
294
|
+
amount: float
|
|
295
|
+
currency: Currency
|
|
296
|
+
|
|
297
|
+
|
|
231
298
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
232
299
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
233
300
|
alias="subscriptionScheduleType"
|
|
@@ -390,179 +457,22 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
390
457
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
391
458
|
|
|
392
459
|
|
|
393
|
-
class
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
class SubscriptionFutureUpdateData(BaseModel):
|
|
398
|
-
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
399
|
-
alias="subscriptionScheduleType"
|
|
400
|
-
)
|
|
401
|
-
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
402
|
-
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
403
|
-
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
404
|
-
alias="targetPackage", default=None
|
|
405
|
-
)
|
|
406
|
-
schedule_variables: Optional[
|
|
407
|
-
Annotated[
|
|
408
|
-
Union[
|
|
409
|
-
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
410
|
-
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
411
|
-
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
412
|
-
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
413
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
414
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
415
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
416
|
-
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
417
|
-
],
|
|
418
|
-
Field(discriminator="typename__"),
|
|
419
|
-
]
|
|
420
|
-
] = Field(alias="scheduleVariables", default=None)
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
424
|
-
id: Any
|
|
425
|
-
ref_id: str = Field(alias="refId")
|
|
460
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
461
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
426
462
|
display_name: str = Field(alias="displayName")
|
|
463
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
464
|
+
default=None
|
|
465
|
+
)
|
|
466
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
427
467
|
|
|
428
468
|
|
|
429
|
-
class
|
|
430
|
-
|
|
431
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
432
|
-
new_quantity: float = Field(alias="newQuantity")
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
436
|
-
BaseModel
|
|
437
|
-
):
|
|
438
|
-
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
439
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
440
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
444
|
-
BaseModel
|
|
445
|
-
):
|
|
446
|
-
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
447
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
451
|
-
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
455
|
-
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
456
|
-
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
457
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
458
|
-
billable_features: Optional[
|
|
459
|
-
List[
|
|
460
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
461
|
-
]
|
|
462
|
-
] = Field(alias="billableFeatures", default=None)
|
|
463
|
-
addons: Optional[
|
|
464
|
-
List[
|
|
465
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
466
|
-
]
|
|
467
|
-
] = Field(default=None)
|
|
468
|
-
price_overrides: Optional[
|
|
469
|
-
List[
|
|
470
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
471
|
-
]
|
|
472
|
-
] = Field(alias="priceOverrides", default=None)
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
476
|
-
BaseModel
|
|
477
|
-
):
|
|
478
|
-
feature_id: str = Field(alias="featureId")
|
|
479
|
-
quantity: float
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
483
|
-
BaseModel
|
|
484
|
-
):
|
|
485
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
486
|
-
quantity: float
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
490
|
-
BaseModel
|
|
491
|
-
):
|
|
492
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
493
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
494
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
498
|
-
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
499
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
500
|
-
change_type: PlanChangeType = Field(alias="changeType")
|
|
501
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
502
|
-
billable_features: Optional[
|
|
503
|
-
List[
|
|
504
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
505
|
-
]
|
|
506
|
-
] = Field(alias="billableFeatures", default=None)
|
|
507
|
-
addons: Optional[
|
|
508
|
-
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
509
|
-
] = Field(default=None)
|
|
510
|
-
price_overrides: Optional[
|
|
511
|
-
List[
|
|
512
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
513
|
-
]
|
|
514
|
-
] = Field(alias="priceOverrides", default=None)
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
518
|
-
BaseModel
|
|
519
|
-
):
|
|
520
|
-
feature_id: str = Field(alias="featureId")
|
|
521
|
-
quantity: float
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
525
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
526
|
-
quantity: float
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
530
|
-
BaseModel
|
|
531
|
-
):
|
|
532
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
533
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
534
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
538
|
-
BaseModel
|
|
539
|
-
):
|
|
540
|
-
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
541
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
542
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
546
|
-
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
547
|
-
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
548
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
469
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
470
|
+
pass
|
|
549
471
|
|
|
550
472
|
|
|
551
|
-
class
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
email: Optional[str] = Field(default=None)
|
|
555
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
556
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
557
|
-
ref_id: str = Field(alias="refId")
|
|
558
|
-
customer_id: str = Field(alias="customerId")
|
|
559
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
560
|
-
additional_meta_data: Optional[Any] = Field(
|
|
561
|
-
alias="additionalMetaData", default=None
|
|
562
|
-
)
|
|
563
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
564
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
565
|
-
)
|
|
473
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
474
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
475
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
566
476
|
|
|
567
477
|
|
|
568
478
|
class ProductFragment(BaseModel):
|
|
@@ -586,24 +496,6 @@ class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
|
586
496
|
display_name: str = Field(alias="displayName")
|
|
587
497
|
|
|
588
498
|
|
|
589
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
590
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
591
|
-
display_name: str = Field(alias="displayName")
|
|
592
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
593
|
-
default=None
|
|
594
|
-
)
|
|
595
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
599
|
-
pass
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
603
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
604
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
605
|
-
|
|
606
|
-
|
|
607
499
|
class PlanFragment(BaseModel):
|
|
608
500
|
id: Any
|
|
609
501
|
ref_id: str = Field(alias="refId")
|
|
@@ -656,79 +548,187 @@ class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
|
656
548
|
pass
|
|
657
549
|
|
|
658
550
|
|
|
659
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
660
|
-
pass
|
|
551
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
552
|
+
pass
|
|
553
|
+
|
|
554
|
+
|
|
555
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
556
|
+
pass
|
|
557
|
+
|
|
558
|
+
|
|
559
|
+
class PlanFragmentPrices(PriceFragment):
|
|
560
|
+
pass
|
|
561
|
+
|
|
562
|
+
|
|
563
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
564
|
+
pass
|
|
565
|
+
|
|
566
|
+
|
|
567
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
568
|
+
duration: float
|
|
569
|
+
units: TrialPeriodUnits
|
|
570
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
571
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
572
|
+
alias="trialEndBehavior", default=None
|
|
573
|
+
)
|
|
574
|
+
|
|
575
|
+
|
|
576
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
577
|
+
limit: float
|
|
578
|
+
|
|
579
|
+
|
|
580
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
581
|
+
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
582
|
+
alias="subscriptionScheduleType"
|
|
583
|
+
)
|
|
584
|
+
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
585
|
+
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
586
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
587
|
+
alias="targetPackage", default=None
|
|
588
|
+
)
|
|
589
|
+
schedule_variables: Optional[
|
|
590
|
+
Annotated[
|
|
591
|
+
Union[
|
|
592
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
593
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
594
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
595
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
596
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
597
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
598
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
599
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
600
|
+
],
|
|
601
|
+
Field(discriminator="typename__"),
|
|
602
|
+
]
|
|
603
|
+
] = Field(alias="scheduleVariables", default=None)
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
607
|
+
id: Any
|
|
608
|
+
ref_id: str = Field(alias="refId")
|
|
609
|
+
display_name: str = Field(alias="displayName")
|
|
610
|
+
|
|
611
|
+
|
|
612
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
613
|
+
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
614
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
615
|
+
new_quantity: float = Field(alias="newQuantity")
|
|
616
|
+
|
|
617
|
+
|
|
618
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
619
|
+
BaseModel
|
|
620
|
+
):
|
|
621
|
+
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
622
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
623
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
624
|
+
|
|
625
|
+
|
|
626
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
627
|
+
BaseModel
|
|
628
|
+
):
|
|
629
|
+
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
630
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
631
|
+
|
|
632
|
+
|
|
633
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
634
|
+
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
661
635
|
|
|
662
636
|
|
|
663
|
-
class
|
|
664
|
-
|
|
637
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
638
|
+
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
639
|
+
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
640
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
641
|
+
billable_features: Optional[
|
|
642
|
+
List[
|
|
643
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
644
|
+
]
|
|
645
|
+
] = Field(alias="billableFeatures", default=None)
|
|
646
|
+
addons: Optional[
|
|
647
|
+
List[
|
|
648
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
649
|
+
]
|
|
650
|
+
] = Field(default=None)
|
|
651
|
+
price_overrides: Optional[
|
|
652
|
+
List[
|
|
653
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
654
|
+
]
|
|
655
|
+
] = Field(alias="priceOverrides", default=None)
|
|
665
656
|
|
|
666
657
|
|
|
667
|
-
class
|
|
668
|
-
|
|
658
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
659
|
+
BaseModel
|
|
660
|
+
):
|
|
661
|
+
feature_id: str = Field(alias="featureId")
|
|
662
|
+
quantity: float
|
|
669
663
|
|
|
670
664
|
|
|
671
|
-
class
|
|
672
|
-
|
|
665
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
666
|
+
BaseModel
|
|
667
|
+
):
|
|
668
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
669
|
+
quantity: float
|
|
673
670
|
|
|
674
671
|
|
|
675
|
-
class
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
)
|
|
672
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
673
|
+
BaseModel
|
|
674
|
+
):
|
|
675
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
676
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
677
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
682
678
|
|
|
683
679
|
|
|
684
|
-
class
|
|
685
|
-
|
|
680
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
681
|
+
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
682
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
683
|
+
change_type: PlanChangeType = Field(alias="changeType")
|
|
684
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
685
|
+
billable_features: Optional[
|
|
686
|
+
List[
|
|
687
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
688
|
+
]
|
|
689
|
+
] = Field(alias="billableFeatures", default=None)
|
|
690
|
+
addons: Optional[
|
|
691
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
692
|
+
] = Field(default=None)
|
|
693
|
+
price_overrides: Optional[
|
|
694
|
+
List[
|
|
695
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
696
|
+
]
|
|
697
|
+
] = Field(alias="priceOverrides", default=None)
|
|
686
698
|
|
|
687
699
|
|
|
688
|
-
class
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
694
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
695
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
696
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
697
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
698
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
699
|
-
alias="billingReason", default=None
|
|
700
|
-
)
|
|
701
|
-
currency: Optional[str] = Field(default=None)
|
|
702
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
703
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
704
|
-
alias="subTotalExcludingTax", default=None
|
|
705
|
-
)
|
|
706
|
-
total: Optional[float] = Field(default=None)
|
|
707
|
-
total_excluding_tax: Optional[float] = Field(
|
|
708
|
-
alias="totalExcludingTax", default=None
|
|
709
|
-
)
|
|
710
|
-
tax: Optional[float] = Field(default=None)
|
|
711
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
712
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
700
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
701
|
+
BaseModel
|
|
702
|
+
):
|
|
703
|
+
feature_id: str = Field(alias="featureId")
|
|
704
|
+
quantity: float
|
|
713
705
|
|
|
714
706
|
|
|
715
|
-
class
|
|
716
|
-
|
|
707
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
708
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
709
|
+
quantity: float
|
|
717
710
|
|
|
718
711
|
|
|
719
|
-
class
|
|
720
|
-
|
|
721
|
-
|
|
712
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
713
|
+
BaseModel
|
|
714
|
+
):
|
|
715
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
716
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
717
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
722
718
|
|
|
723
719
|
|
|
724
|
-
class
|
|
725
|
-
|
|
726
|
-
|
|
720
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
721
|
+
BaseModel
|
|
722
|
+
):
|
|
723
|
+
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
724
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
725
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
727
726
|
|
|
728
727
|
|
|
729
|
-
class
|
|
730
|
-
|
|
731
|
-
|
|
728
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
729
|
+
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
730
|
+
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
731
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
732
732
|
|
|
733
733
|
|
|
734
734
|
class SubscriptionFragment(BaseModel):
|
|
@@ -1271,6 +1271,16 @@ 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
|
+
|
|
1274
1284
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1275
1285
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1276
1286
|
alias="subscriptionScheduleType"
|
|
@@ -1440,13 +1450,6 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1440
1450
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1441
1451
|
|
|
1442
1452
|
|
|
1443
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1444
|
-
addon_id: str = Field(alias="addonId")
|
|
1445
|
-
description: Optional[str] = Field(default=None)
|
|
1446
|
-
display_name: str = Field(alias="displayName")
|
|
1447
|
-
quantity: int
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
1453
|
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1451
1454
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1452
1455
|
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
@@ -1482,6 +1485,13 @@ class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
|
1482
1485
|
)
|
|
1483
1486
|
|
|
1484
1487
|
|
|
1488
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1489
|
+
addon_id: str = Field(alias="addonId")
|
|
1490
|
+
description: Optional[str] = Field(default=None)
|
|
1491
|
+
display_name: str = Field(alias="displayName")
|
|
1492
|
+
quantity: int
|
|
1493
|
+
|
|
1494
|
+
|
|
1485
1495
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1486
1496
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1487
1497
|
plan_id: str = Field(alias="planId")
|
|
@@ -1586,16 +1596,6 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1586
1596
|
pass
|
|
1587
1597
|
|
|
1588
1598
|
|
|
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")
|
|
@@ -2873,20 +2873,20 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2873
2873
|
|
|
2874
2874
|
AddonDependencyFragment.model_rebuild()
|
|
2875
2875
|
PriceTierFragment.model_rebuild()
|
|
2876
|
-
PriceFragment.model_rebuild()
|
|
2877
2876
|
OveragePriceFragment.model_rebuild()
|
|
2877
|
+
PriceFragment.model_rebuild()
|
|
2878
2878
|
PackageEntitlementFragment.model_rebuild()
|
|
2879
2879
|
AddonFragment.model_rebuild()
|
|
2880
|
-
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2881
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2882
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2883
2880
|
SlimCustomerFragment.model_rebuild()
|
|
2884
|
-
ProductFragment.model_rebuild()
|
|
2885
|
-
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2886
|
-
PlanFragment.model_rebuild()
|
|
2887
|
-
SubscriptionInvoiceFragment.model_rebuild()
|
|
2888
2881
|
CustomerResourceFragment.model_rebuild()
|
|
2882
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2883
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2889
2884
|
TotalPriceFragment.model_rebuild()
|
|
2885
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2886
|
+
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2887
|
+
ProductFragment.model_rebuild()
|
|
2888
|
+
PlanFragment.model_rebuild()
|
|
2889
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2890
2890
|
SubscriptionFragment.model_rebuild()
|
|
2891
2891
|
FeatureFragment.model_rebuild()
|
|
2892
2892
|
EntitlementFragment.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()
|
|
2904
2905
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2905
|
-
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2906
2906
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2907
|
+
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2907
2908
|
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
|
@@ -835,9 +835,11 @@ class CustomCurrencyInput(BaseModel):
|
|
|
835
835
|
alias="additionalMetaData", default=None
|
|
836
836
|
)
|
|
837
837
|
currency_id: str = Field(alias="currencyId")
|
|
838
|
+
description: Optional[str] = None
|
|
838
839
|
display_name: str = Field(alias="displayName")
|
|
839
840
|
environment_id: Optional[Any] = Field(alias="environmentId", default=None)
|
|
840
|
-
symbol: str
|
|
841
|
+
symbol: Optional[str] = None
|
|
842
|
+
units: Optional["UnitsInput"] = None
|
|
841
843
|
|
|
842
844
|
|
|
843
845
|
class CustomerBillingInfo(BaseModel):
|
|
@@ -4535,6 +4537,11 @@ class UnitTransformationInput(BaseModel):
|
|
|
4535
4537
|
round: Optional[UnitTransformationRound] = UnitTransformationRound.UP
|
|
4536
4538
|
|
|
4537
4539
|
|
|
4540
|
+
class UnitsInput(BaseModel):
|
|
4541
|
+
plural: str
|
|
4542
|
+
singular: str
|
|
4543
|
+
|
|
4544
|
+
|
|
4538
4545
|
class UnlinkFeatureGroupFromPackageInput(BaseModel):
|
|
4539
4546
|
environment_id: Optional[Any] = Field(alias="environmentId", default=None)
|
|
4540
4547
|
feature_group_id: Any = Field(alias="featureGroupId")
|
|
@@ -4589,9 +4596,11 @@ class UpdateCustomCurrencyInput(BaseModel):
|
|
|
4589
4596
|
alias="additionalMetaData", default=None
|
|
4590
4597
|
)
|
|
4591
4598
|
currency_id: str = Field(alias="currencyId")
|
|
4599
|
+
description: Optional[str] = None
|
|
4592
4600
|
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
4593
4601
|
environment_id: Optional[Any] = Field(alias="environmentId", default=None)
|
|
4594
4602
|
symbol: Optional[str] = None
|
|
4603
|
+
units: Optional["UnitsInput"] = None
|
|
4595
4604
|
|
|
4596
4605
|
|
|
4597
4606
|
class UpdateCustomerInput(BaseModel):
|
|
@@ -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=kGdKmvYH3Hh7QIivvckTahB7_-fRucPg98OadpSQQAQ,72853
|
|
110
110
|
stigg/generated/apply_subscription.py,sha256=Vbs-QZZxN16pUpt3Hp7Jvvcc5o_8xwJK9oTLQQjH0ZA,451
|
|
111
111
|
stigg/generated/archive_customer.py,sha256=3N3iBiT2Vvzfb0ckV3o57A6lmJ_ef7JNPaMX_Jtcg6c,396
|
|
112
112
|
stigg/generated/async_base_client.py,sha256=zqd6IhYxpalyA6KQkeGhXgSurC0vXSwSWmSlM2zZ0VM,12593
|
|
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=asjaGM369pxIj2wWuFtgq6mA-p_9U-otD9cP2baB-mQ,3774
|
|
|
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=24-8EHq3vKnCfnpad_fW-JkTzDCQVnMenArCtUGVpAI,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=8Qpl0PT8pyK_bsG5U4bR-pgqY375JDUpdxGWJjSXves,205685
|
|
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.27.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
165
|
+
stigg_api_client_v2-3.27.0.dist-info/METADATA,sha256=lpMD4OxzYkb1FMfwR2qAnQ0BnhwPORjqdU3lrB375rY,2257
|
|
166
|
+
stigg_api_client_v2-3.27.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
167
|
+
stigg_api_client_v2-3.27.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|