stigg-api-client-v2 2.487.0__py3-none-any.whl → 2.488.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/fragments.py +416 -416
- stigg/generated/input_types.py +3 -0
- {stigg_api_client_v2-2.487.0.dist-info → stigg_api_client_v2-2.488.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.487.0.dist-info → stigg_api_client_v2-2.488.0.dist-info}/RECORD +6 -6
- {stigg_api_client_v2-2.487.0.dist-info → stigg_api_client_v2-2.488.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.487.0.dist-info → stigg_api_client_v2-2.488.0.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -80,29 +80,33 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
80
80
|
currency: Currency
|
|
81
81
|
|
|
82
82
|
|
|
83
|
-
class
|
|
83
|
+
class PriceFragment(BaseModel):
|
|
84
84
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
85
85
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
86
|
+
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
86
87
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
88
|
+
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
89
|
+
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
87
90
|
billing_country_code: Optional[str] = Field(
|
|
88
91
|
alias="billingCountryCode", default=None
|
|
89
92
|
)
|
|
90
|
-
price: Optional["
|
|
93
|
+
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
91
94
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
92
|
-
tiers: Optional[List["
|
|
93
|
-
feature: Optional["
|
|
95
|
+
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
96
|
+
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
97
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
94
98
|
|
|
95
99
|
|
|
96
|
-
class
|
|
100
|
+
class PriceFragmentPrice(BaseModel):
|
|
97
101
|
amount: float
|
|
98
102
|
currency: Currency
|
|
99
103
|
|
|
100
104
|
|
|
101
|
-
class
|
|
105
|
+
class PriceFragmentTiers(PriceTierFragment):
|
|
102
106
|
pass
|
|
103
107
|
|
|
104
108
|
|
|
105
|
-
class
|
|
109
|
+
class PriceFragmentFeature(BaseModel):
|
|
106
110
|
ref_id: str = Field(alias="refId")
|
|
107
111
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
108
112
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -146,33 +150,29 @@ class PackageEntitlementFragmentFeature(BaseModel):
|
|
|
146
150
|
)
|
|
147
151
|
|
|
148
152
|
|
|
149
|
-
class
|
|
153
|
+
class OveragePriceFragment(BaseModel):
|
|
150
154
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
151
155
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
152
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
153
156
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
154
|
-
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
155
|
-
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
156
157
|
billing_country_code: Optional[str] = Field(
|
|
157
158
|
alias="billingCountryCode", default=None
|
|
158
159
|
)
|
|
159
|
-
price: Optional["
|
|
160
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
160
161
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
161
|
-
tiers: Optional[List["
|
|
162
|
-
feature: Optional["
|
|
163
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
162
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
163
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
164
164
|
|
|
165
165
|
|
|
166
|
-
class
|
|
166
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
167
167
|
amount: float
|
|
168
168
|
currency: Currency
|
|
169
169
|
|
|
170
170
|
|
|
171
|
-
class
|
|
171
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
172
172
|
pass
|
|
173
173
|
|
|
174
174
|
|
|
175
|
-
class
|
|
175
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
176
176
|
ref_id: str = Field(alias="refId")
|
|
177
177
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
178
178
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -220,232 +220,6 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
220
220
|
pass
|
|
221
221
|
|
|
222
222
|
|
|
223
|
-
class FeatureFragment(BaseModel):
|
|
224
|
-
typename__: str = Field(alias="__typename")
|
|
225
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
226
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
227
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
228
|
-
feature_units_plural: Optional[str] = Field(
|
|
229
|
-
alias="featureUnitsPlural", default=None
|
|
230
|
-
)
|
|
231
|
-
description: Optional[str] = Field(default=None)
|
|
232
|
-
display_name: str = Field(alias="displayName")
|
|
233
|
-
ref_id: str = Field(alias="refId")
|
|
234
|
-
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
235
|
-
alias="unitTransformation", default=None
|
|
236
|
-
)
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
class FeatureFragmentUnitTransformation(BaseModel):
|
|
240
|
-
divide: float
|
|
241
|
-
round: UnitTransformationRound
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
class EntitlementFragment(BaseModel):
|
|
245
|
-
typename__: str = Field(alias="__typename")
|
|
246
|
-
is_granted: bool = Field(alias="isGranted")
|
|
247
|
-
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
248
|
-
alias="accessDeniedReason", default=None
|
|
249
|
-
)
|
|
250
|
-
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
251
|
-
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
252
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
253
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
254
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
255
|
-
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
256
|
-
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
257
|
-
requested_values: Optional[List[str]] = Field(alias="requestedValues", default=None)
|
|
258
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
259
|
-
entitlement_updated_at: Optional[Any] = Field(
|
|
260
|
-
alias="entitlementUpdatedAt", default=None
|
|
261
|
-
)
|
|
262
|
-
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
263
|
-
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
264
|
-
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
265
|
-
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
266
|
-
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
267
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
268
|
-
alias="resetPeriod", default=None
|
|
269
|
-
)
|
|
270
|
-
reset_period_configuration: Optional[
|
|
271
|
-
Annotated[
|
|
272
|
-
Union[
|
|
273
|
-
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
274
|
-
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
275
|
-
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
276
|
-
],
|
|
277
|
-
Field(discriminator="typename__"),
|
|
278
|
-
]
|
|
279
|
-
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
280
|
-
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
284
|
-
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
285
|
-
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
286
|
-
alias="monthlyAccordingTo", default=None
|
|
287
|
-
)
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
291
|
-
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
292
|
-
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
293
|
-
alias="weeklyAccordingTo", default=None
|
|
294
|
-
)
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
298
|
-
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
299
|
-
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
300
|
-
alias="yearlyAccordingTo", default=None
|
|
301
|
-
)
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
class EntitlementFragmentFeature(FeatureFragment):
|
|
305
|
-
pass
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
class ProductFragment(BaseModel):
|
|
309
|
-
ref_id: str = Field(alias="refId")
|
|
310
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
311
|
-
description: Optional[str] = Field(default=None)
|
|
312
|
-
additional_meta_data: Optional[Any] = Field(
|
|
313
|
-
alias="additionalMetaData", default=None
|
|
314
|
-
)
|
|
315
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
319
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
320
|
-
alias="downgradePlan", default=None
|
|
321
|
-
)
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
325
|
-
ref_id: str = Field(alias="refId")
|
|
326
|
-
display_name: str = Field(alias="displayName")
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
330
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
331
|
-
display_name: str = Field(alias="displayName")
|
|
332
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
333
|
-
default=None
|
|
334
|
-
)
|
|
335
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
339
|
-
pass
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
343
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
344
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
class PlanFragment(BaseModel):
|
|
348
|
-
id: Any
|
|
349
|
-
ref_id: str = Field(alias="refId")
|
|
350
|
-
display_name: str = Field(alias="displayName")
|
|
351
|
-
description: Optional[str] = Field(default=None)
|
|
352
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
353
|
-
version_number: int = Field(alias="versionNumber")
|
|
354
|
-
additional_meta_data: Optional[Any] = Field(
|
|
355
|
-
alias="additionalMetaData", default=None
|
|
356
|
-
)
|
|
357
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
358
|
-
alias="hiddenFromWidgets", default=None
|
|
359
|
-
)
|
|
360
|
-
product: "PlanFragmentProduct"
|
|
361
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
362
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
363
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
364
|
-
alias="inheritedEntitlements", default=None
|
|
365
|
-
)
|
|
366
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
367
|
-
alias="compatibleAddons", default=None
|
|
368
|
-
)
|
|
369
|
-
compatible_package_groups: Optional[
|
|
370
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
371
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
372
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
373
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
374
|
-
alias="overagePrices", default=None
|
|
375
|
-
)
|
|
376
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
377
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
378
|
-
alias="defaultTrialConfig", default=None
|
|
379
|
-
)
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
class PlanFragmentProduct(ProductFragment):
|
|
383
|
-
pass
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
387
|
-
ref_id: str = Field(alias="refId")
|
|
388
|
-
display_name: str = Field(alias="displayName")
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
392
|
-
pass
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
396
|
-
pass
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
400
|
-
pass
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
404
|
-
pass
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
class PlanFragmentPrices(PriceFragment):
|
|
408
|
-
pass
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
412
|
-
pass
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
416
|
-
duration: float
|
|
417
|
-
units: TrialPeriodUnits
|
|
418
|
-
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
419
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
420
|
-
alias="trialEndBehavior", default=None
|
|
421
|
-
)
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
425
|
-
limit: float
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
429
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
class SlimCustomerFragment(BaseModel):
|
|
433
|
-
id: Any
|
|
434
|
-
name: Optional[str] = Field(default=None)
|
|
435
|
-
email: Optional[str] = Field(default=None)
|
|
436
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
437
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
438
|
-
ref_id: str = Field(alias="refId")
|
|
439
|
-
customer_id: str = Field(alias="customerId")
|
|
440
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
441
|
-
additional_meta_data: Optional[Any] = Field(
|
|
442
|
-
alias="additionalMetaData", default=None
|
|
443
|
-
)
|
|
444
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
445
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
446
|
-
)
|
|
447
|
-
|
|
448
|
-
|
|
449
223
|
class SubscriptionInvoiceFragment(BaseModel):
|
|
450
224
|
billing_id: str = Field(alias="billingId")
|
|
451
225
|
status: SubscriptionInvoiceStatus
|
|
@@ -473,45 +247,70 @@ class SubscriptionInvoiceFragment(BaseModel):
|
|
|
473
247
|
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
474
248
|
|
|
475
249
|
|
|
476
|
-
class
|
|
250
|
+
class SlimCustomerFragment(BaseModel):
|
|
251
|
+
id: Any
|
|
252
|
+
name: Optional[str] = Field(default=None)
|
|
253
|
+
email: Optional[str] = Field(default=None)
|
|
254
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
255
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
256
|
+
ref_id: str = Field(alias="refId")
|
|
257
|
+
customer_id: str = Field(alias="customerId")
|
|
258
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
259
|
+
additional_meta_data: Optional[Any] = Field(
|
|
260
|
+
alias="additionalMetaData", default=None
|
|
261
|
+
)
|
|
262
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
263
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
264
|
+
)
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
class CustomerResourceFragment(BaseModel):
|
|
268
|
+
resource_id: str = Field(alias="resourceId")
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
272
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
273
|
+
|
|
274
|
+
|
|
275
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
477
276
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
478
277
|
alias="subscriptionScheduleType"
|
|
479
278
|
)
|
|
480
279
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
481
280
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
482
|
-
target_package: Optional["
|
|
281
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
483
282
|
alias="targetPackage", default=None
|
|
484
283
|
)
|
|
485
284
|
schedule_variables: Optional[
|
|
486
285
|
Annotated[
|
|
487
286
|
Union[
|
|
488
|
-
"
|
|
489
|
-
"
|
|
490
|
-
"
|
|
491
|
-
"
|
|
492
|
-
"
|
|
493
|
-
"
|
|
494
|
-
"
|
|
495
|
-
"
|
|
287
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
288
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
289
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
290
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
291
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
292
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
293
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
294
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
496
295
|
],
|
|
497
296
|
Field(discriminator="typename__"),
|
|
498
297
|
]
|
|
499
298
|
] = Field(alias="scheduleVariables", default=None)
|
|
500
299
|
|
|
501
300
|
|
|
502
|
-
class
|
|
301
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
503
302
|
id: Any
|
|
504
303
|
ref_id: str = Field(alias="refId")
|
|
505
304
|
display_name: str = Field(alias="displayName")
|
|
506
305
|
|
|
507
306
|
|
|
508
|
-
class
|
|
307
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
509
308
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
510
309
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
511
310
|
new_quantity: float = Field(alias="newQuantity")
|
|
512
311
|
|
|
513
312
|
|
|
514
|
-
class
|
|
313
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
515
314
|
BaseModel
|
|
516
315
|
):
|
|
517
316
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -519,55 +318,53 @@ class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVa
|
|
|
519
318
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
520
319
|
|
|
521
320
|
|
|
522
|
-
class
|
|
321
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
523
322
|
BaseModel
|
|
524
323
|
):
|
|
525
324
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
526
325
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
527
326
|
|
|
528
327
|
|
|
529
|
-
class
|
|
328
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
530
329
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
531
330
|
|
|
532
331
|
|
|
533
|
-
class
|
|
534
|
-
BaseModel
|
|
535
|
-
):
|
|
332
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
536
333
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
537
334
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
538
335
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
539
336
|
billable_features: Optional[
|
|
540
337
|
List[
|
|
541
|
-
"
|
|
338
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
542
339
|
]
|
|
543
340
|
] = Field(alias="billableFeatures", default=None)
|
|
544
341
|
addons: Optional[
|
|
545
342
|
List[
|
|
546
|
-
"
|
|
343
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
547
344
|
]
|
|
548
345
|
] = Field(default=None)
|
|
549
346
|
price_overrides: Optional[
|
|
550
347
|
List[
|
|
551
|
-
"
|
|
348
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
552
349
|
]
|
|
553
350
|
] = Field(alias="priceOverrides", default=None)
|
|
554
351
|
|
|
555
352
|
|
|
556
|
-
class
|
|
353
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
557
354
|
BaseModel
|
|
558
355
|
):
|
|
559
356
|
feature_id: str = Field(alias="featureId")
|
|
560
357
|
quantity: float
|
|
561
358
|
|
|
562
359
|
|
|
563
|
-
class
|
|
360
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
564
361
|
BaseModel
|
|
565
362
|
):
|
|
566
363
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
567
364
|
quantity: float
|
|
568
365
|
|
|
569
366
|
|
|
570
|
-
class
|
|
367
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
571
368
|
BaseModel
|
|
572
369
|
):
|
|
573
370
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -575,43 +372,39 @@ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPr
|
|
|
575
372
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
576
373
|
|
|
577
374
|
|
|
578
|
-
class
|
|
375
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
579
376
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
580
377
|
plan_ref_id: str = Field(alias="planRefId")
|
|
581
378
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
582
379
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
583
380
|
billable_features: Optional[
|
|
584
381
|
List[
|
|
585
|
-
"
|
|
382
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
586
383
|
]
|
|
587
384
|
] = Field(alias="billableFeatures", default=None)
|
|
588
385
|
addons: Optional[
|
|
589
|
-
List[
|
|
590
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
591
|
-
]
|
|
386
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
592
387
|
] = Field(default=None)
|
|
593
388
|
price_overrides: Optional[
|
|
594
389
|
List[
|
|
595
|
-
"
|
|
390
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
596
391
|
]
|
|
597
392
|
] = Field(alias="priceOverrides", default=None)
|
|
598
393
|
|
|
599
394
|
|
|
600
|
-
class
|
|
395
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
601
396
|
BaseModel
|
|
602
397
|
):
|
|
603
398
|
feature_id: str = Field(alias="featureId")
|
|
604
399
|
quantity: float
|
|
605
400
|
|
|
606
401
|
|
|
607
|
-
class
|
|
608
|
-
BaseModel
|
|
609
|
-
):
|
|
402
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
610
403
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
611
404
|
quantity: float
|
|
612
405
|
|
|
613
406
|
|
|
614
|
-
class
|
|
407
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
615
408
|
BaseModel
|
|
616
409
|
):
|
|
617
410
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -619,7 +412,7 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOv
|
|
|
619
412
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
620
413
|
|
|
621
414
|
|
|
622
|
-
class
|
|
415
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
623
416
|
BaseModel
|
|
624
417
|
):
|
|
625
418
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -627,53 +420,51 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVar
|
|
|
627
420
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
628
421
|
|
|
629
422
|
|
|
630
|
-
class
|
|
631
|
-
BaseModel
|
|
632
|
-
):
|
|
423
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
633
424
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
634
425
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
635
426
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
636
427
|
|
|
637
428
|
|
|
638
|
-
class
|
|
429
|
+
class SubscriptionScheduledUpdateData(BaseModel):
|
|
639
430
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
640
431
|
alias="subscriptionScheduleType"
|
|
641
432
|
)
|
|
642
433
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
643
434
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
644
|
-
target_package: Optional["
|
|
435
|
+
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
645
436
|
alias="targetPackage", default=None
|
|
646
437
|
)
|
|
647
438
|
schedule_variables: Optional[
|
|
648
439
|
Annotated[
|
|
649
440
|
Union[
|
|
650
|
-
"
|
|
651
|
-
"
|
|
652
|
-
"
|
|
653
|
-
"
|
|
654
|
-
"
|
|
655
|
-
"
|
|
656
|
-
"
|
|
657
|
-
"
|
|
441
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
442
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
443
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
444
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
445
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
446
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
447
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
448
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
658
449
|
],
|
|
659
450
|
Field(discriminator="typename__"),
|
|
660
451
|
]
|
|
661
452
|
] = Field(alias="scheduleVariables", default=None)
|
|
662
453
|
|
|
663
454
|
|
|
664
|
-
class
|
|
455
|
+
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
665
456
|
id: Any
|
|
666
457
|
ref_id: str = Field(alias="refId")
|
|
667
458
|
display_name: str = Field(alias="displayName")
|
|
668
459
|
|
|
669
460
|
|
|
670
|
-
class
|
|
461
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
671
462
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
672
463
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
673
464
|
new_quantity: float = Field(alias="newQuantity")
|
|
674
465
|
|
|
675
466
|
|
|
676
|
-
class
|
|
467
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
677
468
|
BaseModel
|
|
678
469
|
):
|
|
679
470
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -681,53 +472,55 @@ class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVaria
|
|
|
681
472
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
682
473
|
|
|
683
474
|
|
|
684
|
-
class
|
|
475
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
685
476
|
BaseModel
|
|
686
477
|
):
|
|
687
478
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
688
479
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
689
480
|
|
|
690
481
|
|
|
691
|
-
class
|
|
482
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
692
483
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
693
484
|
|
|
694
485
|
|
|
695
|
-
class
|
|
486
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
487
|
+
BaseModel
|
|
488
|
+
):
|
|
696
489
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
697
490
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
698
491
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
699
492
|
billable_features: Optional[
|
|
700
493
|
List[
|
|
701
|
-
"
|
|
494
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
702
495
|
]
|
|
703
496
|
] = Field(alias="billableFeatures", default=None)
|
|
704
497
|
addons: Optional[
|
|
705
498
|
List[
|
|
706
|
-
"
|
|
499
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
707
500
|
]
|
|
708
501
|
] = Field(default=None)
|
|
709
502
|
price_overrides: Optional[
|
|
710
503
|
List[
|
|
711
|
-
"
|
|
504
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
712
505
|
]
|
|
713
506
|
] = Field(alias="priceOverrides", default=None)
|
|
714
507
|
|
|
715
508
|
|
|
716
|
-
class
|
|
509
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
717
510
|
BaseModel
|
|
718
511
|
):
|
|
719
512
|
feature_id: str = Field(alias="featureId")
|
|
720
513
|
quantity: float
|
|
721
514
|
|
|
722
515
|
|
|
723
|
-
class
|
|
516
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
724
517
|
BaseModel
|
|
725
518
|
):
|
|
726
519
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
727
520
|
quantity: float
|
|
728
521
|
|
|
729
522
|
|
|
730
|
-
class
|
|
523
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
731
524
|
BaseModel
|
|
732
525
|
):
|
|
733
526
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -735,39 +528,43 @@ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPrice
|
|
|
735
528
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
736
529
|
|
|
737
530
|
|
|
738
|
-
class
|
|
531
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
739
532
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
740
533
|
plan_ref_id: str = Field(alias="planRefId")
|
|
741
534
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
742
535
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
743
536
|
billable_features: Optional[
|
|
744
537
|
List[
|
|
745
|
-
"
|
|
538
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
746
539
|
]
|
|
747
540
|
] = Field(alias="billableFeatures", default=None)
|
|
748
541
|
addons: Optional[
|
|
749
|
-
List[
|
|
542
|
+
List[
|
|
543
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
544
|
+
]
|
|
750
545
|
] = Field(default=None)
|
|
751
546
|
price_overrides: Optional[
|
|
752
547
|
List[
|
|
753
|
-
"
|
|
548
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
754
549
|
]
|
|
755
550
|
] = Field(alias="priceOverrides", default=None)
|
|
756
551
|
|
|
757
552
|
|
|
758
|
-
class
|
|
553
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
759
554
|
BaseModel
|
|
760
555
|
):
|
|
761
556
|
feature_id: str = Field(alias="featureId")
|
|
762
557
|
quantity: float
|
|
763
558
|
|
|
764
559
|
|
|
765
|
-
class
|
|
560
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
561
|
+
BaseModel
|
|
562
|
+
):
|
|
766
563
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
767
564
|
quantity: float
|
|
768
565
|
|
|
769
566
|
|
|
770
|
-
class
|
|
567
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
771
568
|
BaseModel
|
|
772
569
|
):
|
|
773
570
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -775,7 +572,7 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverr
|
|
|
775
572
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
776
573
|
|
|
777
574
|
|
|
778
|
-
class
|
|
575
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
779
576
|
BaseModel
|
|
780
577
|
):
|
|
781
578
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -783,7 +580,9 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariab
|
|
|
783
580
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
784
581
|
|
|
785
582
|
|
|
786
|
-
class
|
|
583
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
584
|
+
BaseModel
|
|
585
|
+
):
|
|
787
586
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
788
587
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
789
588
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
@@ -804,8 +603,124 @@ class TotalPriceFragmentTotal(BaseModel):
|
|
|
804
603
|
currency: Currency
|
|
805
604
|
|
|
806
605
|
|
|
807
|
-
class
|
|
808
|
-
|
|
606
|
+
class ProductFragment(BaseModel):
|
|
607
|
+
ref_id: str = Field(alias="refId")
|
|
608
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
609
|
+
description: Optional[str] = Field(default=None)
|
|
610
|
+
additional_meta_data: Optional[Any] = Field(
|
|
611
|
+
alias="additionalMetaData", default=None
|
|
612
|
+
)
|
|
613
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
614
|
+
|
|
615
|
+
|
|
616
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
617
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
618
|
+
alias="downgradePlan", default=None
|
|
619
|
+
)
|
|
620
|
+
|
|
621
|
+
|
|
622
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
623
|
+
ref_id: str = Field(alias="refId")
|
|
624
|
+
display_name: str = Field(alias="displayName")
|
|
625
|
+
|
|
626
|
+
|
|
627
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
628
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
629
|
+
display_name: str = Field(alias="displayName")
|
|
630
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
631
|
+
default=None
|
|
632
|
+
)
|
|
633
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
634
|
+
|
|
635
|
+
|
|
636
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
637
|
+
pass
|
|
638
|
+
|
|
639
|
+
|
|
640
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
641
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
642
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
643
|
+
|
|
644
|
+
|
|
645
|
+
class PlanFragment(BaseModel):
|
|
646
|
+
id: Any
|
|
647
|
+
ref_id: str = Field(alias="refId")
|
|
648
|
+
display_name: str = Field(alias="displayName")
|
|
649
|
+
description: Optional[str] = Field(default=None)
|
|
650
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
651
|
+
version_number: int = Field(alias="versionNumber")
|
|
652
|
+
additional_meta_data: Optional[Any] = Field(
|
|
653
|
+
alias="additionalMetaData", default=None
|
|
654
|
+
)
|
|
655
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
656
|
+
alias="hiddenFromWidgets", default=None
|
|
657
|
+
)
|
|
658
|
+
product: "PlanFragmentProduct"
|
|
659
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
660
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
661
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
662
|
+
alias="inheritedEntitlements", default=None
|
|
663
|
+
)
|
|
664
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
665
|
+
alias="compatibleAddons", default=None
|
|
666
|
+
)
|
|
667
|
+
compatible_package_groups: Optional[
|
|
668
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
669
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
670
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
671
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
672
|
+
alias="overagePrices", default=None
|
|
673
|
+
)
|
|
674
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
675
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
676
|
+
alias="defaultTrialConfig", default=None
|
|
677
|
+
)
|
|
678
|
+
|
|
679
|
+
|
|
680
|
+
class PlanFragmentProduct(ProductFragment):
|
|
681
|
+
pass
|
|
682
|
+
|
|
683
|
+
|
|
684
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
685
|
+
ref_id: str = Field(alias="refId")
|
|
686
|
+
display_name: str = Field(alias="displayName")
|
|
687
|
+
|
|
688
|
+
|
|
689
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
690
|
+
pass
|
|
691
|
+
|
|
692
|
+
|
|
693
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
694
|
+
pass
|
|
695
|
+
|
|
696
|
+
|
|
697
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
698
|
+
pass
|
|
699
|
+
|
|
700
|
+
|
|
701
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
702
|
+
pass
|
|
703
|
+
|
|
704
|
+
|
|
705
|
+
class PlanFragmentPrices(PriceFragment):
|
|
706
|
+
pass
|
|
707
|
+
|
|
708
|
+
|
|
709
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
710
|
+
pass
|
|
711
|
+
|
|
712
|
+
|
|
713
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
714
|
+
duration: float
|
|
715
|
+
units: TrialPeriodUnits
|
|
716
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
717
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
718
|
+
alias="trialEndBehavior", default=None
|
|
719
|
+
)
|
|
720
|
+
|
|
721
|
+
|
|
722
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
723
|
+
limit: float
|
|
809
724
|
|
|
810
725
|
|
|
811
726
|
class SubscriptionFragment(BaseModel):
|
|
@@ -891,29 +806,114 @@ class SubscriptionFragmentTotalPrice(TotalPriceFragment):
|
|
|
891
806
|
pass
|
|
892
807
|
|
|
893
808
|
|
|
894
|
-
class SubscriptionFragmentPlan(PlanFragment):
|
|
895
|
-
pass
|
|
809
|
+
class SubscriptionFragmentPlan(PlanFragment):
|
|
810
|
+
pass
|
|
811
|
+
|
|
812
|
+
|
|
813
|
+
class SubscriptionFragmentAddons(BaseModel):
|
|
814
|
+
id: Any
|
|
815
|
+
quantity: float
|
|
816
|
+
addon: "SubscriptionFragmentAddonsAddon"
|
|
817
|
+
|
|
818
|
+
|
|
819
|
+
class SubscriptionFragmentAddonsAddon(AddonFragment):
|
|
820
|
+
pass
|
|
821
|
+
|
|
822
|
+
|
|
823
|
+
class SubscriptionFragmentScheduledUpdates(SubscriptionScheduledUpdateData):
|
|
824
|
+
pass
|
|
825
|
+
|
|
826
|
+
|
|
827
|
+
class SubscriptionFragmentFutureUpdates(SubscriptionFutureUpdateData):
|
|
828
|
+
pass
|
|
829
|
+
|
|
830
|
+
|
|
831
|
+
class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragment):
|
|
832
|
+
pass
|
|
833
|
+
|
|
834
|
+
|
|
835
|
+
class FeatureFragment(BaseModel):
|
|
836
|
+
typename__: str = Field(alias="__typename")
|
|
837
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
838
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
839
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
840
|
+
feature_units_plural: Optional[str] = Field(
|
|
841
|
+
alias="featureUnitsPlural", default=None
|
|
842
|
+
)
|
|
843
|
+
description: Optional[str] = Field(default=None)
|
|
844
|
+
display_name: str = Field(alias="displayName")
|
|
845
|
+
ref_id: str = Field(alias="refId")
|
|
846
|
+
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
847
|
+
alias="unitTransformation", default=None
|
|
848
|
+
)
|
|
849
|
+
|
|
850
|
+
|
|
851
|
+
class FeatureFragmentUnitTransformation(BaseModel):
|
|
852
|
+
divide: float
|
|
853
|
+
round: UnitTransformationRound
|
|
896
854
|
|
|
897
855
|
|
|
898
|
-
class
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
856
|
+
class EntitlementFragment(BaseModel):
|
|
857
|
+
typename__: str = Field(alias="__typename")
|
|
858
|
+
is_granted: bool = Field(alias="isGranted")
|
|
859
|
+
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
860
|
+
alias="accessDeniedReason", default=None
|
|
861
|
+
)
|
|
862
|
+
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
863
|
+
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
864
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
865
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
866
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
867
|
+
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
868
|
+
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
869
|
+
requested_values: Optional[List[str]] = Field(alias="requestedValues", default=None)
|
|
870
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
871
|
+
entitlement_updated_at: Optional[Any] = Field(
|
|
872
|
+
alias="entitlementUpdatedAt", default=None
|
|
873
|
+
)
|
|
874
|
+
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
875
|
+
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
876
|
+
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
877
|
+
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
878
|
+
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
879
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
880
|
+
alias="resetPeriod", default=None
|
|
881
|
+
)
|
|
882
|
+
reset_period_configuration: Optional[
|
|
883
|
+
Annotated[
|
|
884
|
+
Union[
|
|
885
|
+
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
886
|
+
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
887
|
+
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
888
|
+
],
|
|
889
|
+
Field(discriminator="typename__"),
|
|
890
|
+
]
|
|
891
|
+
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
892
|
+
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
902
893
|
|
|
903
894
|
|
|
904
|
-
class
|
|
905
|
-
|
|
895
|
+
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
896
|
+
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
897
|
+
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
898
|
+
alias="monthlyAccordingTo", default=None
|
|
899
|
+
)
|
|
906
900
|
|
|
907
901
|
|
|
908
|
-
class
|
|
909
|
-
|
|
902
|
+
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
903
|
+
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
904
|
+
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
905
|
+
alias="weeklyAccordingTo", default=None
|
|
906
|
+
)
|
|
910
907
|
|
|
911
908
|
|
|
912
|
-
class
|
|
913
|
-
|
|
909
|
+
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
910
|
+
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
911
|
+
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
912
|
+
alias="yearlyAccordingTo", default=None
|
|
913
|
+
)
|
|
914
914
|
|
|
915
915
|
|
|
916
|
-
class
|
|
916
|
+
class EntitlementFragmentFeature(FeatureFragment):
|
|
917
917
|
pass
|
|
918
918
|
|
|
919
919
|
|
|
@@ -994,35 +994,6 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
994
994
|
)
|
|
995
995
|
|
|
996
996
|
|
|
997
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
998
|
-
status: PromotionalEntitlementStatus
|
|
999
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1000
|
-
feature_id: Any = Field(alias="featureId")
|
|
1001
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1002
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1003
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1004
|
-
alias="resetPeriod", default=None
|
|
1005
|
-
)
|
|
1006
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1007
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1008
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1012
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1013
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1014
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1015
|
-
feature_units_plural: Optional[str] = Field(
|
|
1016
|
-
alias="featureUnitsPlural", default=None
|
|
1017
|
-
)
|
|
1018
|
-
display_name: str = Field(alias="displayName")
|
|
1019
|
-
description: Optional[str] = Field(default=None)
|
|
1020
|
-
ref_id: str = Field(alias="refId")
|
|
1021
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1022
|
-
alias="additionalMetaData", default=None
|
|
1023
|
-
)
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
997
|
class CouponFragment(BaseModel):
|
|
1027
998
|
id: Any
|
|
1028
999
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1057,6 +1028,35 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1057
1028
|
status: SyncStatus
|
|
1058
1029
|
|
|
1059
1030
|
|
|
1031
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
1032
|
+
status: PromotionalEntitlementStatus
|
|
1033
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1034
|
+
feature_id: Any = Field(alias="featureId")
|
|
1035
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1036
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1037
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1038
|
+
alias="resetPeriod", default=None
|
|
1039
|
+
)
|
|
1040
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1041
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1042
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1043
|
+
|
|
1044
|
+
|
|
1045
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1046
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1047
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1048
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1049
|
+
feature_units_plural: Optional[str] = Field(
|
|
1050
|
+
alias="featureUnitsPlural", default=None
|
|
1051
|
+
)
|
|
1052
|
+
display_name: str = Field(alias="displayName")
|
|
1053
|
+
description: Optional[str] = Field(default=None)
|
|
1054
|
+
ref_id: str = Field(alias="refId")
|
|
1055
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1056
|
+
alias="additionalMetaData", default=None
|
|
1057
|
+
)
|
|
1058
|
+
|
|
1059
|
+
|
|
1060
1060
|
class CustomerFragment(SlimCustomerFragment):
|
|
1061
1061
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1062
1062
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1263,6 +1263,50 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1263
1263
|
pass
|
|
1264
1264
|
|
|
1265
1265
|
|
|
1266
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1267
|
+
display_name: str = Field(alias="displayName")
|
|
1268
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1269
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1270
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1271
|
+
period: PromotionalEntitlementPeriod
|
|
1272
|
+
start_date: Any = Field(alias="startDate")
|
|
1273
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1274
|
+
|
|
1275
|
+
|
|
1276
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1277
|
+
addon_id: str = Field(alias="addonId")
|
|
1278
|
+
description: Optional[str] = Field(default=None)
|
|
1279
|
+
display_name: str = Field(alias="displayName")
|
|
1280
|
+
quantity: int
|
|
1281
|
+
|
|
1282
|
+
|
|
1283
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1284
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1285
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1286
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1287
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1288
|
+
default=None
|
|
1289
|
+
)
|
|
1290
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1291
|
+
default=None
|
|
1292
|
+
)
|
|
1293
|
+
|
|
1294
|
+
|
|
1295
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1296
|
+
amount: float
|
|
1297
|
+
currency: Currency
|
|
1298
|
+
|
|
1299
|
+
|
|
1300
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1301
|
+
id: Any
|
|
1302
|
+
ref_id: str = Field(alias="refId")
|
|
1303
|
+
display_name: str = Field(alias="displayName")
|
|
1304
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1305
|
+
feature_units_plural: Optional[str] = Field(
|
|
1306
|
+
alias="featureUnitsPlural", default=None
|
|
1307
|
+
)
|
|
1308
|
+
|
|
1309
|
+
|
|
1266
1310
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1267
1311
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1268
1312
|
alias="subscriptionScheduleType"
|
|
@@ -1432,40 +1476,6 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1432
1476
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1433
1477
|
|
|
1434
1478
|
|
|
1435
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1436
|
-
addon_id: str = Field(alias="addonId")
|
|
1437
|
-
description: Optional[str] = Field(default=None)
|
|
1438
|
-
display_name: str = Field(alias="displayName")
|
|
1439
|
-
quantity: int
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1443
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1444
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1445
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1446
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1447
|
-
default=None
|
|
1448
|
-
)
|
|
1449
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1450
|
-
default=None
|
|
1451
|
-
)
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1455
|
-
amount: float
|
|
1456
|
-
currency: Currency
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1460
|
-
id: Any
|
|
1461
|
-
ref_id: str = Field(alias="refId")
|
|
1462
|
-
display_name: str = Field(alias="displayName")
|
|
1463
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1464
|
-
feature_units_plural: Optional[str] = Field(
|
|
1465
|
-
alias="featureUnitsPlural", default=None
|
|
1466
|
-
)
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
1479
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1470
1480
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1471
1481
|
plan_id: str = Field(alias="planId")
|
|
@@ -1562,16 +1572,6 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1562
1572
|
pass
|
|
1563
1573
|
|
|
1564
1574
|
|
|
1565
|
-
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1566
|
-
display_name: str = Field(alias="displayName")
|
|
1567
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1568
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1569
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1570
|
-
period: PromotionalEntitlementPeriod
|
|
1571
|
-
start_date: Any = Field(alias="startDate")
|
|
1572
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
1575
|
class CustomerPortalFragment(BaseModel):
|
|
1576
1576
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1577
1577
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -2841,39 +2841,39 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2841
2841
|
|
|
2842
2842
|
AddonDependencyFragment.model_rebuild()
|
|
2843
2843
|
PriceTierFragment.model_rebuild()
|
|
2844
|
-
OveragePriceFragment.model_rebuild()
|
|
2845
|
-
PackageEntitlementFragment.model_rebuild()
|
|
2846
2844
|
PriceFragment.model_rebuild()
|
|
2845
|
+
PackageEntitlementFragment.model_rebuild()
|
|
2846
|
+
OveragePriceFragment.model_rebuild()
|
|
2847
2847
|
AddonFragment.model_rebuild()
|
|
2848
|
-
FeatureFragment.model_rebuild()
|
|
2849
|
-
EntitlementFragment.model_rebuild()
|
|
2850
|
-
ProductFragment.model_rebuild()
|
|
2851
|
-
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2852
|
-
PlanFragment.model_rebuild()
|
|
2853
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2854
|
-
SlimCustomerFragment.model_rebuild()
|
|
2855
2848
|
SubscriptionInvoiceFragment.model_rebuild()
|
|
2856
|
-
|
|
2849
|
+
SlimCustomerFragment.model_rebuild()
|
|
2850
|
+
CustomerResourceFragment.model_rebuild()
|
|
2851
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2857
2852
|
SubscriptionFutureUpdateData.model_rebuild()
|
|
2853
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2858
2854
|
TotalPriceFragment.model_rebuild()
|
|
2859
|
-
|
|
2855
|
+
ProductFragment.model_rebuild()
|
|
2856
|
+
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2857
|
+
PlanFragment.model_rebuild()
|
|
2860
2858
|
SubscriptionFragment.model_rebuild()
|
|
2859
|
+
FeatureFragment.model_rebuild()
|
|
2860
|
+
EntitlementFragment.model_rebuild()
|
|
2861
2861
|
ApplySubscriptionFragment.model_rebuild()
|
|
2862
2862
|
FontVariantFragment.model_rebuild()
|
|
2863
2863
|
TypographyConfigurationFragment.model_rebuild()
|
|
2864
2864
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2865
|
-
PromotionalEntitlementFragment.model_rebuild()
|
|
2866
2865
|
CouponFragment.model_rebuild()
|
|
2866
|
+
PromotionalEntitlementFragment.model_rebuild()
|
|
2867
2867
|
CustomerFragment.model_rebuild()
|
|
2868
2868
|
CheckoutStateFragment.model_rebuild()
|
|
2869
2869
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2870
2870
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2871
2871
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2872
|
-
|
|
2872
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2873
2873
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2874
2874
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2875
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2875
2876
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2876
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2877
2877
|
CustomerPortalFragment.model_rebuild()
|
|
2878
2878
|
CustomerStatisticsFragment.model_rebuild()
|
|
2879
2879
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -1990,6 +1990,7 @@ class GetWorkflowTriggersInput(BaseModel):
|
|
|
1990
1990
|
|
|
1991
1991
|
class GrantPromotionalEntitlementInput(BaseModel):
|
|
1992
1992
|
custom_end_date: Optional[Any] = Field(alias="customEndDate", default=None)
|
|
1993
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
1993
1994
|
feature_id: str = Field(alias="featureId")
|
|
1994
1995
|
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1995
1996
|
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
@@ -3181,6 +3182,7 @@ class PromotionalEntitlementInput(BaseModel):
|
|
|
3181
3182
|
customer_id: str = Field(alias="customerId")
|
|
3182
3183
|
description: Optional[str] = None
|
|
3183
3184
|
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
3185
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
3184
3186
|
environment_id: Any = Field(alias="environmentId")
|
|
3185
3187
|
feature_id: str = Field(alias="featureId")
|
|
3186
3188
|
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
@@ -3234,6 +3236,7 @@ class PromotionalEntitlementStatusFilterComparison(BaseModel):
|
|
|
3234
3236
|
class PromotionalEntitlementUpdateInput(BaseModel):
|
|
3235
3237
|
description: Optional[str] = None
|
|
3236
3238
|
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
3239
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
3237
3240
|
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
3238
3241
|
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
3239
3242
|
is_visible: bool = Field(alias="isVisible")
|
|
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=UPo_2u9GdUtupXMrqY5cBtlP-lgUyKOU5GF1_jPr7g4,3668
|
|
|
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=rTvpDwJW0judE4Su8QWbze2Jo6sX_JlbRcwK48hl7SY,103850
|
|
127
127
|
stigg/generated/get_active_subscriptions.py,sha256=ngZ9jr8vzGI59wT8FhUFl46a8j9waoNjeZ1_lrcu2ww,513
|
|
128
128
|
stigg/generated/get_active_subscriptions_list.py,sha256=Awi9al2MXxdt_y7ZnWYZh8U3R9XiX50c7TyO4WZxyhw,541
|
|
129
129
|
stigg/generated/get_checkout_state.py,sha256=SAOXGAND879dwb7R5mr5LPZuPVuMUDwNR5M4mgmHv6w,409
|
|
@@ -145,7 +145,7 @@ stigg/generated/grant_promotional_entitlements.py,sha256=72PRYuqecL-0SkWb7deygkh
|
|
|
145
145
|
stigg/generated/import_customer.py,sha256=yEtrEB7T-Aykv3AUl-rAQz2XL6hKL0j-7JL3h-xi87o,403
|
|
146
146
|
stigg/generated/import_customer_bulk.py,sha256=miLn2ScWlPOH1IipltY5Vgd-ZQ_BkBk9t3-EsLvU5ZQ,284
|
|
147
147
|
stigg/generated/import_subscriptions_bulk.py,sha256=QgitpZkjE7eBhP1o5W0PTVAbKOvz61dNoeBAWupIcgU,297
|
|
148
|
-
stigg/generated/input_types.py,sha256=
|
|
148
|
+
stigg/generated/input_types.py,sha256=KTbdT8_LEUUS-Bd9WN1MCzJQHTXWC2dE40slgjzYF-o,201523
|
|
149
149
|
stigg/generated/migrate_subscription_to_latest.py,sha256=qQDwH7EodYAeJFb62IIl-MAEB5MbthgCJ0v1RMxpdYk,516
|
|
150
150
|
stigg/generated/preview_next_invoice.py,sha256=MiQ4Gv7Ve1Hv60xhaQi7uj82aq0xLP2UB-gjvcQdOL8,478
|
|
151
151
|
stigg/generated/preview_subscription.py,sha256=Qo2vlFs7sFzqaE8J_e-EHTRfLvG46lko-dcJMxDSCR0,475
|
|
@@ -161,7 +161,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
|
|
|
161
161
|
stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
|
|
162
162
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
163
163
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
164
|
-
stigg_api_client_v2-2.
|
|
165
|
-
stigg_api_client_v2-2.
|
|
166
|
-
stigg_api_client_v2-2.
|
|
167
|
-
stigg_api_client_v2-2.
|
|
164
|
+
stigg_api_client_v2-2.488.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
165
|
+
stigg_api_client_v2-2.488.0.dist-info/METADATA,sha256=gp9vJ-aL5o4S0SzexTcbS1IYsRgy5ImniWjfyLXWOqE,2258
|
|
166
|
+
stigg_api_client_v2-2.488.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
167
|
+
stigg_api_client_v2-2.488.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|