stigg-api-client-v2 2.475.1__py3-none-any.whl → 2.478.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 +443 -443
- {stigg_api_client_v2-2.475.1.dist-info → stigg_api_client_v2-2.478.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.475.1.dist-info → stigg_api_client_v2-2.478.0.dist-info}/RECORD +5 -5
- {stigg_api_client_v2-2.475.1.dist-info → stigg_api_client_v2-2.478.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.475.1.dist-info → stigg_api_client_v2-2.478.0.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -116,38 +116,6 @@ class PriceFragmentFeature(BaseModel):
|
|
|
116
116
|
description: Optional[str] = Field(default=None)
|
|
117
117
|
|
|
118
118
|
|
|
119
|
-
class OveragePriceFragment(BaseModel):
|
|
120
|
-
billing_model: BillingModel = Field(alias="billingModel")
|
|
121
|
-
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
122
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
123
|
-
billing_country_code: Optional[str] = Field(
|
|
124
|
-
alias="billingCountryCode", default=None
|
|
125
|
-
)
|
|
126
|
-
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
127
|
-
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
128
|
-
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
129
|
-
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
class OveragePriceFragmentPrice(BaseModel):
|
|
133
|
-
amount: float
|
|
134
|
-
currency: Currency
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
138
|
-
pass
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
class OveragePriceFragmentFeature(BaseModel):
|
|
142
|
-
ref_id: str = Field(alias="refId")
|
|
143
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
144
|
-
feature_units_plural: Optional[str] = Field(
|
|
145
|
-
alias="featureUnitsPlural", default=None
|
|
146
|
-
)
|
|
147
|
-
display_name: str = Field(alias="displayName")
|
|
148
|
-
description: Optional[str] = Field(default=None)
|
|
149
|
-
|
|
150
|
-
|
|
151
119
|
class PackageEntitlementFragment(BaseModel):
|
|
152
120
|
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
153
121
|
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
@@ -181,6 +149,38 @@ class PackageEntitlementFragmentFeature(BaseModel):
|
|
|
181
149
|
)
|
|
182
150
|
|
|
183
151
|
|
|
152
|
+
class OveragePriceFragment(BaseModel):
|
|
153
|
+
billing_model: BillingModel = Field(alias="billingModel")
|
|
154
|
+
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
155
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
156
|
+
billing_country_code: Optional[str] = Field(
|
|
157
|
+
alias="billingCountryCode", default=None
|
|
158
|
+
)
|
|
159
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
160
|
+
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
161
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
162
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
166
|
+
amount: float
|
|
167
|
+
currency: Currency
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
171
|
+
pass
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
175
|
+
ref_id: str = Field(alias="refId")
|
|
176
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
177
|
+
feature_units_plural: Optional[str] = Field(
|
|
178
|
+
alias="featureUnitsPlural", default=None
|
|
179
|
+
)
|
|
180
|
+
display_name: str = Field(alias="displayName")
|
|
181
|
+
description: Optional[str] = Field(default=None)
|
|
182
|
+
|
|
183
|
+
|
|
184
184
|
class AddonFragment(BaseModel):
|
|
185
185
|
id: Any
|
|
186
186
|
ref_id: str = Field(alias="refId")
|
|
@@ -219,130 +219,197 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
219
219
|
pass
|
|
220
220
|
|
|
221
221
|
|
|
222
|
-
class
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
222
|
+
class SlimCustomerFragment(BaseModel):
|
|
223
|
+
id: Any
|
|
224
|
+
name: Optional[str] = Field(default=None)
|
|
225
|
+
email: Optional[str] = Field(default=None)
|
|
226
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
227
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
228
|
+
ref_id: str = Field(alias="refId")
|
|
229
|
+
customer_id: str = Field(alias="customerId")
|
|
230
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
231
|
+
additional_meta_data: Optional[Any] = Field(
|
|
232
|
+
alias="additionalMetaData", default=None
|
|
229
233
|
)
|
|
234
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
235
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
236
|
+
)
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
class TotalPriceFragment(BaseModel):
|
|
240
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
241
|
+
total: "TotalPriceFragmentTotal"
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
245
|
+
amount: float
|
|
246
|
+
currency: Currency
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
250
|
+
amount: float
|
|
251
|
+
currency: Currency
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
class ProductFragment(BaseModel):
|
|
255
|
+
ref_id: str = Field(alias="refId")
|
|
256
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
230
257
|
description: Optional[str] = Field(default=None)
|
|
231
|
-
|
|
258
|
+
additional_meta_data: Optional[Any] = Field(
|
|
259
|
+
alias="additionalMetaData", default=None
|
|
260
|
+
)
|
|
261
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
265
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
266
|
+
alias="downgradePlan", default=None
|
|
267
|
+
)
|
|
268
|
+
|
|
269
|
+
|
|
270
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
232
271
|
ref_id: str = Field(alias="refId")
|
|
233
|
-
|
|
234
|
-
|
|
272
|
+
display_name: str = Field(alias="displayName")
|
|
273
|
+
|
|
274
|
+
|
|
275
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
276
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
277
|
+
display_name: str = Field(alias="displayName")
|
|
278
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
279
|
+
default=None
|
|
235
280
|
)
|
|
281
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
236
282
|
|
|
237
283
|
|
|
238
|
-
class
|
|
239
|
-
|
|
240
|
-
round: UnitTransformationRound
|
|
284
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
285
|
+
pass
|
|
241
286
|
|
|
242
287
|
|
|
243
|
-
class
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
288
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
289
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
290
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
class PlanFragment(BaseModel):
|
|
294
|
+
id: Any
|
|
295
|
+
ref_id: str = Field(alias="refId")
|
|
296
|
+
display_name: str = Field(alias="displayName")
|
|
297
|
+
description: Optional[str] = Field(default=None)
|
|
298
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
299
|
+
version_number: int = Field(alias="versionNumber")
|
|
300
|
+
additional_meta_data: Optional[Any] = Field(
|
|
301
|
+
alias="additionalMetaData", default=None
|
|
248
302
|
)
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
252
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
253
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
254
|
-
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
255
|
-
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
256
|
-
requested_values: Optional[List[str]] = Field(alias="requestedValues", default=None)
|
|
257
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
258
|
-
entitlement_updated_at: Optional[Any] = Field(
|
|
259
|
-
alias="entitlementUpdatedAt", default=None
|
|
303
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
304
|
+
alias="hiddenFromWidgets", default=None
|
|
260
305
|
)
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
306
|
+
product: "PlanFragmentProduct"
|
|
307
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
308
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
309
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
310
|
+
alias="inheritedEntitlements", default=None
|
|
311
|
+
)
|
|
312
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
313
|
+
alias="compatibleAddons", default=None
|
|
314
|
+
)
|
|
315
|
+
compatible_package_groups: Optional[
|
|
316
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
317
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
318
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
319
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
320
|
+
alias="overagePrices", default=None
|
|
321
|
+
)
|
|
322
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
323
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
324
|
+
alias="defaultTrialConfig", default=None
|
|
268
325
|
)
|
|
269
|
-
reset_period_configuration: Optional[
|
|
270
|
-
Annotated[
|
|
271
|
-
Union[
|
|
272
|
-
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
273
|
-
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
274
|
-
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
275
|
-
],
|
|
276
|
-
Field(discriminator="typename__"),
|
|
277
|
-
]
|
|
278
|
-
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
279
|
-
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
280
326
|
|
|
281
327
|
|
|
282
|
-
class
|
|
283
|
-
|
|
284
|
-
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
285
|
-
alias="monthlyAccordingTo", default=None
|
|
286
|
-
)
|
|
328
|
+
class PlanFragmentProduct(ProductFragment):
|
|
329
|
+
pass
|
|
287
330
|
|
|
288
331
|
|
|
289
|
-
class
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
alias="weeklyAccordingTo", default=None
|
|
293
|
-
)
|
|
332
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
333
|
+
ref_id: str = Field(alias="refId")
|
|
334
|
+
display_name: str = Field(alias="displayName")
|
|
294
335
|
|
|
295
336
|
|
|
296
|
-
class
|
|
297
|
-
|
|
298
|
-
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
299
|
-
alias="yearlyAccordingTo", default=None
|
|
300
|
-
)
|
|
337
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
338
|
+
pass
|
|
301
339
|
|
|
302
340
|
|
|
303
|
-
class
|
|
341
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
304
342
|
pass
|
|
305
343
|
|
|
306
344
|
|
|
307
|
-
class
|
|
345
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
346
|
+
pass
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
350
|
+
pass
|
|
351
|
+
|
|
352
|
+
|
|
353
|
+
class PlanFragmentPrices(PriceFragment):
|
|
354
|
+
pass
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
358
|
+
pass
|
|
359
|
+
|
|
360
|
+
|
|
361
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
362
|
+
duration: float
|
|
363
|
+
units: TrialPeriodUnits
|
|
364
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
365
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
366
|
+
alias="trialEndBehavior", default=None
|
|
367
|
+
)
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
371
|
+
limit: float
|
|
372
|
+
|
|
373
|
+
|
|
374
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
308
375
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
309
376
|
alias="subscriptionScheduleType"
|
|
310
377
|
)
|
|
311
378
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
312
379
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
313
|
-
target_package: Optional["
|
|
380
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
314
381
|
alias="targetPackage", default=None
|
|
315
382
|
)
|
|
316
383
|
schedule_variables: Optional[
|
|
317
384
|
Annotated[
|
|
318
385
|
Union[
|
|
319
|
-
"
|
|
320
|
-
"
|
|
321
|
-
"
|
|
322
|
-
"
|
|
323
|
-
"
|
|
324
|
-
"
|
|
325
|
-
"
|
|
326
|
-
"
|
|
386
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
387
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
388
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
389
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
390
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
391
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
392
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
393
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
327
394
|
],
|
|
328
395
|
Field(discriminator="typename__"),
|
|
329
396
|
]
|
|
330
397
|
] = Field(alias="scheduleVariables", default=None)
|
|
331
398
|
|
|
332
399
|
|
|
333
|
-
class
|
|
400
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
334
401
|
id: Any
|
|
335
402
|
ref_id: str = Field(alias="refId")
|
|
336
403
|
display_name: str = Field(alias="displayName")
|
|
337
404
|
|
|
338
405
|
|
|
339
|
-
class
|
|
406
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
340
407
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
341
408
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
342
409
|
new_quantity: float = Field(alias="newQuantity")
|
|
343
410
|
|
|
344
411
|
|
|
345
|
-
class
|
|
412
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
346
413
|
BaseModel
|
|
347
414
|
):
|
|
348
415
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -350,55 +417,53 @@ class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVa
|
|
|
350
417
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
351
418
|
|
|
352
419
|
|
|
353
|
-
class
|
|
420
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
354
421
|
BaseModel
|
|
355
422
|
):
|
|
356
423
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
357
424
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
358
425
|
|
|
359
426
|
|
|
360
|
-
class
|
|
427
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
361
428
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
362
429
|
|
|
363
430
|
|
|
364
|
-
class
|
|
365
|
-
BaseModel
|
|
366
|
-
):
|
|
431
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
367
432
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
368
433
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
369
434
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
370
435
|
billable_features: Optional[
|
|
371
436
|
List[
|
|
372
|
-
"
|
|
437
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
373
438
|
]
|
|
374
439
|
] = Field(alias="billableFeatures", default=None)
|
|
375
440
|
addons: Optional[
|
|
376
441
|
List[
|
|
377
|
-
"
|
|
442
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
378
443
|
]
|
|
379
444
|
] = Field(default=None)
|
|
380
445
|
price_overrides: Optional[
|
|
381
446
|
List[
|
|
382
|
-
"
|
|
447
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
383
448
|
]
|
|
384
449
|
] = Field(alias="priceOverrides", default=None)
|
|
385
450
|
|
|
386
451
|
|
|
387
|
-
class
|
|
452
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
388
453
|
BaseModel
|
|
389
454
|
):
|
|
390
455
|
feature_id: str = Field(alias="featureId")
|
|
391
456
|
quantity: float
|
|
392
457
|
|
|
393
458
|
|
|
394
|
-
class
|
|
459
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
395
460
|
BaseModel
|
|
396
461
|
):
|
|
397
462
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
398
463
|
quantity: float
|
|
399
464
|
|
|
400
465
|
|
|
401
|
-
class
|
|
466
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
402
467
|
BaseModel
|
|
403
468
|
):
|
|
404
469
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -406,43 +471,39 @@ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPr
|
|
|
406
471
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
407
472
|
|
|
408
473
|
|
|
409
|
-
class
|
|
474
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
410
475
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
411
476
|
plan_ref_id: str = Field(alias="planRefId")
|
|
412
477
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
413
478
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
414
479
|
billable_features: Optional[
|
|
415
480
|
List[
|
|
416
|
-
"
|
|
481
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
417
482
|
]
|
|
418
483
|
] = Field(alias="billableFeatures", default=None)
|
|
419
484
|
addons: Optional[
|
|
420
|
-
List[
|
|
421
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
422
|
-
]
|
|
485
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
423
486
|
] = Field(default=None)
|
|
424
487
|
price_overrides: Optional[
|
|
425
488
|
List[
|
|
426
|
-
"
|
|
489
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
427
490
|
]
|
|
428
491
|
] = Field(alias="priceOverrides", default=None)
|
|
429
492
|
|
|
430
493
|
|
|
431
|
-
class
|
|
494
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
432
495
|
BaseModel
|
|
433
496
|
):
|
|
434
497
|
feature_id: str = Field(alias="featureId")
|
|
435
498
|
quantity: float
|
|
436
499
|
|
|
437
500
|
|
|
438
|
-
class
|
|
439
|
-
BaseModel
|
|
440
|
-
):
|
|
501
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
441
502
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
442
503
|
quantity: float
|
|
443
504
|
|
|
444
505
|
|
|
445
|
-
class
|
|
506
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
446
507
|
BaseModel
|
|
447
508
|
):
|
|
448
509
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -450,7 +511,7 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOv
|
|
|
450
511
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
451
512
|
|
|
452
513
|
|
|
453
|
-
class
|
|
514
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
454
515
|
BaseModel
|
|
455
516
|
):
|
|
456
517
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -458,9 +519,7 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVar
|
|
|
458
519
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
459
520
|
|
|
460
521
|
|
|
461
|
-
class
|
|
462
|
-
BaseModel
|
|
463
|
-
):
|
|
522
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
464
523
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
465
524
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
466
525
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
@@ -470,45 +529,45 @@ class CustomerResourceFragment(BaseModel):
|
|
|
470
529
|
resource_id: str = Field(alias="resourceId")
|
|
471
530
|
|
|
472
531
|
|
|
473
|
-
class
|
|
532
|
+
class SubscriptionScheduledUpdateData(BaseModel):
|
|
474
533
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
475
534
|
alias="subscriptionScheduleType"
|
|
476
535
|
)
|
|
477
536
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
478
537
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
479
|
-
target_package: Optional["
|
|
538
|
+
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
480
539
|
alias="targetPackage", default=None
|
|
481
540
|
)
|
|
482
541
|
schedule_variables: Optional[
|
|
483
542
|
Annotated[
|
|
484
543
|
Union[
|
|
485
|
-
"
|
|
486
|
-
"
|
|
487
|
-
"
|
|
488
|
-
"
|
|
489
|
-
"
|
|
490
|
-
"
|
|
491
|
-
"
|
|
492
|
-
"
|
|
544
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
545
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
546
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
547
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
548
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
549
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
550
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
551
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
493
552
|
],
|
|
494
553
|
Field(discriminator="typename__"),
|
|
495
554
|
]
|
|
496
555
|
] = Field(alias="scheduleVariables", default=None)
|
|
497
556
|
|
|
498
557
|
|
|
499
|
-
class
|
|
558
|
+
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
500
559
|
id: Any
|
|
501
560
|
ref_id: str = Field(alias="refId")
|
|
502
561
|
display_name: str = Field(alias="displayName")
|
|
503
562
|
|
|
504
563
|
|
|
505
|
-
class
|
|
564
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
506
565
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
507
566
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
508
567
|
new_quantity: float = Field(alias="newQuantity")
|
|
509
568
|
|
|
510
569
|
|
|
511
|
-
class
|
|
570
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
512
571
|
BaseModel
|
|
513
572
|
):
|
|
514
573
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -516,53 +575,55 @@ class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVaria
|
|
|
516
575
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
517
576
|
|
|
518
577
|
|
|
519
|
-
class
|
|
578
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
520
579
|
BaseModel
|
|
521
580
|
):
|
|
522
581
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
523
582
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
524
583
|
|
|
525
584
|
|
|
526
|
-
class
|
|
585
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
527
586
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
528
587
|
|
|
529
588
|
|
|
530
|
-
class
|
|
589
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
590
|
+
BaseModel
|
|
591
|
+
):
|
|
531
592
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
532
593
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
533
594
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
534
595
|
billable_features: Optional[
|
|
535
596
|
List[
|
|
536
|
-
"
|
|
597
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
537
598
|
]
|
|
538
599
|
] = Field(alias="billableFeatures", default=None)
|
|
539
600
|
addons: Optional[
|
|
540
601
|
List[
|
|
541
|
-
"
|
|
602
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
542
603
|
]
|
|
543
604
|
] = Field(default=None)
|
|
544
605
|
price_overrides: Optional[
|
|
545
606
|
List[
|
|
546
|
-
"
|
|
607
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
547
608
|
]
|
|
548
609
|
] = Field(alias="priceOverrides", default=None)
|
|
549
610
|
|
|
550
611
|
|
|
551
|
-
class
|
|
612
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
552
613
|
BaseModel
|
|
553
614
|
):
|
|
554
615
|
feature_id: str = Field(alias="featureId")
|
|
555
616
|
quantity: float
|
|
556
617
|
|
|
557
618
|
|
|
558
|
-
class
|
|
619
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
559
620
|
BaseModel
|
|
560
621
|
):
|
|
561
622
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
562
623
|
quantity: float
|
|
563
624
|
|
|
564
625
|
|
|
565
|
-
class
|
|
626
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
566
627
|
BaseModel
|
|
567
628
|
):
|
|
568
629
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -570,39 +631,43 @@ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPrice
|
|
|
570
631
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
571
632
|
|
|
572
633
|
|
|
573
|
-
class
|
|
634
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
574
635
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
575
636
|
plan_ref_id: str = Field(alias="planRefId")
|
|
576
637
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
577
638
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
578
639
|
billable_features: Optional[
|
|
579
640
|
List[
|
|
580
|
-
"
|
|
641
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
581
642
|
]
|
|
582
643
|
] = Field(alias="billableFeatures", default=None)
|
|
583
644
|
addons: Optional[
|
|
584
|
-
List[
|
|
645
|
+
List[
|
|
646
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
647
|
+
]
|
|
585
648
|
] = Field(default=None)
|
|
586
649
|
price_overrides: Optional[
|
|
587
650
|
List[
|
|
588
|
-
"
|
|
651
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
589
652
|
]
|
|
590
653
|
] = Field(alias="priceOverrides", default=None)
|
|
591
654
|
|
|
592
655
|
|
|
593
|
-
class
|
|
656
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
594
657
|
BaseModel
|
|
595
658
|
):
|
|
596
659
|
feature_id: str = Field(alias="featureId")
|
|
597
660
|
quantity: float
|
|
598
661
|
|
|
599
662
|
|
|
600
|
-
class
|
|
663
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
664
|
+
BaseModel
|
|
665
|
+
):
|
|
601
666
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
602
667
|
quantity: float
|
|
603
668
|
|
|
604
669
|
|
|
605
|
-
class
|
|
670
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
606
671
|
BaseModel
|
|
607
672
|
):
|
|
608
673
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -610,7 +675,7 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverr
|
|
|
610
675
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
611
676
|
|
|
612
677
|
|
|
613
|
-
class
|
|
678
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
614
679
|
BaseModel
|
|
615
680
|
):
|
|
616
681
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -618,130 +683,16 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariab
|
|
|
618
683
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
619
684
|
|
|
620
685
|
|
|
621
|
-
class
|
|
686
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
687
|
+
BaseModel
|
|
688
|
+
):
|
|
622
689
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
623
690
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
624
691
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
625
692
|
|
|
626
693
|
|
|
627
|
-
class
|
|
628
|
-
|
|
629
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
630
|
-
description: Optional[str] = Field(default=None)
|
|
631
|
-
additional_meta_data: Optional[Any] = Field(
|
|
632
|
-
alias="additionalMetaData", default=None
|
|
633
|
-
)
|
|
634
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
638
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
639
|
-
alias="downgradePlan", default=None
|
|
640
|
-
)
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
644
|
-
ref_id: str = Field(alias="refId")
|
|
645
|
-
display_name: str = Field(alias="displayName")
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
649
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
650
|
-
display_name: str = Field(alias="displayName")
|
|
651
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
652
|
-
default=None
|
|
653
|
-
)
|
|
654
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
658
|
-
pass
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
662
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
663
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
class PlanFragment(BaseModel):
|
|
667
|
-
id: Any
|
|
668
|
-
ref_id: str = Field(alias="refId")
|
|
669
|
-
display_name: str = Field(alias="displayName")
|
|
670
|
-
description: Optional[str] = Field(default=None)
|
|
671
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
672
|
-
version_number: int = Field(alias="versionNumber")
|
|
673
|
-
additional_meta_data: Optional[Any] = Field(
|
|
674
|
-
alias="additionalMetaData", default=None
|
|
675
|
-
)
|
|
676
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
677
|
-
alias="hiddenFromWidgets", default=None
|
|
678
|
-
)
|
|
679
|
-
product: "PlanFragmentProduct"
|
|
680
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
681
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
682
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
683
|
-
alias="inheritedEntitlements", default=None
|
|
684
|
-
)
|
|
685
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
686
|
-
alias="compatibleAddons", default=None
|
|
687
|
-
)
|
|
688
|
-
compatible_package_groups: Optional[
|
|
689
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
690
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
691
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
692
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
693
|
-
alias="overagePrices", default=None
|
|
694
|
-
)
|
|
695
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
696
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
697
|
-
alias="defaultTrialConfig", default=None
|
|
698
|
-
)
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
class PlanFragmentProduct(ProductFragment):
|
|
702
|
-
pass
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
706
|
-
ref_id: str = Field(alias="refId")
|
|
707
|
-
display_name: str = Field(alias="displayName")
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
711
|
-
pass
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
715
|
-
pass
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
719
|
-
pass
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
723
|
-
pass
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
class PlanFragmentPrices(PriceFragment):
|
|
727
|
-
pass
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
731
|
-
pass
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
735
|
-
duration: float
|
|
736
|
-
units: TrialPeriodUnits
|
|
737
|
-
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
738
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
739
|
-
alias="trialEndBehavior", default=None
|
|
740
|
-
)
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
744
|
-
limit: float
|
|
694
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
695
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
745
696
|
|
|
746
697
|
|
|
747
698
|
class SubscriptionInvoiceFragment(BaseModel):
|
|
@@ -771,42 +722,6 @@ class SubscriptionInvoiceFragment(BaseModel):
|
|
|
771
722
|
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
772
723
|
|
|
773
724
|
|
|
774
|
-
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
775
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
class SlimCustomerFragment(BaseModel):
|
|
779
|
-
id: Any
|
|
780
|
-
name: Optional[str] = Field(default=None)
|
|
781
|
-
email: Optional[str] = Field(default=None)
|
|
782
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
783
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
784
|
-
ref_id: str = Field(alias="refId")
|
|
785
|
-
customer_id: str = Field(alias="customerId")
|
|
786
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
787
|
-
additional_meta_data: Optional[Any] = Field(
|
|
788
|
-
alias="additionalMetaData", default=None
|
|
789
|
-
)
|
|
790
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
791
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
792
|
-
)
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
class TotalPriceFragment(BaseModel):
|
|
796
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
797
|
-
total: "TotalPriceFragmentTotal"
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
801
|
-
amount: float
|
|
802
|
-
currency: Currency
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
806
|
-
amount: float
|
|
807
|
-
currency: Currency
|
|
808
|
-
|
|
809
|
-
|
|
810
725
|
class SubscriptionFragment(BaseModel):
|
|
811
726
|
id: Any
|
|
812
727
|
subscription_id: str = Field(alias="subscriptionId")
|
|
@@ -904,15 +819,100 @@ class SubscriptionFragmentAddonsAddon(AddonFragment):
|
|
|
904
819
|
pass
|
|
905
820
|
|
|
906
821
|
|
|
907
|
-
class SubscriptionFragmentScheduledUpdates(SubscriptionScheduledUpdateData):
|
|
908
|
-
pass
|
|
822
|
+
class SubscriptionFragmentScheduledUpdates(SubscriptionScheduledUpdateData):
|
|
823
|
+
pass
|
|
824
|
+
|
|
825
|
+
|
|
826
|
+
class SubscriptionFragmentFutureUpdates(SubscriptionFutureUpdateData):
|
|
827
|
+
pass
|
|
828
|
+
|
|
829
|
+
|
|
830
|
+
class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragment):
|
|
831
|
+
pass
|
|
832
|
+
|
|
833
|
+
|
|
834
|
+
class FeatureFragment(BaseModel):
|
|
835
|
+
typename__: str = Field(alias="__typename")
|
|
836
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
837
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
838
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
839
|
+
feature_units_plural: Optional[str] = Field(
|
|
840
|
+
alias="featureUnitsPlural", default=None
|
|
841
|
+
)
|
|
842
|
+
description: Optional[str] = Field(default=None)
|
|
843
|
+
display_name: str = Field(alias="displayName")
|
|
844
|
+
ref_id: str = Field(alias="refId")
|
|
845
|
+
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
846
|
+
alias="unitTransformation", default=None
|
|
847
|
+
)
|
|
848
|
+
|
|
849
|
+
|
|
850
|
+
class FeatureFragmentUnitTransformation(BaseModel):
|
|
851
|
+
divide: float
|
|
852
|
+
round: UnitTransformationRound
|
|
853
|
+
|
|
854
|
+
|
|
855
|
+
class EntitlementFragment(BaseModel):
|
|
856
|
+
typename__: str = Field(alias="__typename")
|
|
857
|
+
is_granted: bool = Field(alias="isGranted")
|
|
858
|
+
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
859
|
+
alias="accessDeniedReason", default=None
|
|
860
|
+
)
|
|
861
|
+
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
862
|
+
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
863
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
864
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
865
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
866
|
+
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
867
|
+
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
868
|
+
requested_values: Optional[List[str]] = Field(alias="requestedValues", default=None)
|
|
869
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
870
|
+
entitlement_updated_at: Optional[Any] = Field(
|
|
871
|
+
alias="entitlementUpdatedAt", default=None
|
|
872
|
+
)
|
|
873
|
+
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
874
|
+
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
875
|
+
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
876
|
+
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
877
|
+
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
878
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
879
|
+
alias="resetPeriod", default=None
|
|
880
|
+
)
|
|
881
|
+
reset_period_configuration: Optional[
|
|
882
|
+
Annotated[
|
|
883
|
+
Union[
|
|
884
|
+
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
885
|
+
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
886
|
+
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
887
|
+
],
|
|
888
|
+
Field(discriminator="typename__"),
|
|
889
|
+
]
|
|
890
|
+
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
891
|
+
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
892
|
+
|
|
893
|
+
|
|
894
|
+
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
895
|
+
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
896
|
+
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
897
|
+
alias="monthlyAccordingTo", default=None
|
|
898
|
+
)
|
|
899
|
+
|
|
900
|
+
|
|
901
|
+
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
902
|
+
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
903
|
+
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
904
|
+
alias="weeklyAccordingTo", default=None
|
|
905
|
+
)
|
|
909
906
|
|
|
910
907
|
|
|
911
|
-
class
|
|
912
|
-
|
|
908
|
+
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
909
|
+
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
910
|
+
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
911
|
+
alias="yearlyAccordingTo", default=None
|
|
912
|
+
)
|
|
913
913
|
|
|
914
914
|
|
|
915
|
-
class
|
|
915
|
+
class EntitlementFragmentFeature(FeatureFragment):
|
|
916
916
|
pass
|
|
917
917
|
|
|
918
918
|
|
|
@@ -993,35 +993,6 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
993
993
|
)
|
|
994
994
|
|
|
995
995
|
|
|
996
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
997
|
-
status: PromotionalEntitlementStatus
|
|
998
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
999
|
-
feature_id: Any = Field(alias="featureId")
|
|
1000
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1001
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1002
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1003
|
-
alias="resetPeriod", default=None
|
|
1004
|
-
)
|
|
1005
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1006
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1007
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1011
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1012
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1013
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1014
|
-
feature_units_plural: Optional[str] = Field(
|
|
1015
|
-
alias="featureUnitsPlural", default=None
|
|
1016
|
-
)
|
|
1017
|
-
display_name: str = Field(alias="displayName")
|
|
1018
|
-
description: Optional[str] = Field(default=None)
|
|
1019
|
-
ref_id: str = Field(alias="refId")
|
|
1020
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1021
|
-
alias="additionalMetaData", default=None
|
|
1022
|
-
)
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
996
|
class CouponFragment(BaseModel):
|
|
1026
997
|
id: Any
|
|
1027
998
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1056,6 +1027,35 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1056
1027
|
status: SyncStatus
|
|
1057
1028
|
|
|
1058
1029
|
|
|
1030
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
1031
|
+
status: PromotionalEntitlementStatus
|
|
1032
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1033
|
+
feature_id: Any = Field(alias="featureId")
|
|
1034
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1035
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1036
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1037
|
+
alias="resetPeriod", default=None
|
|
1038
|
+
)
|
|
1039
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1040
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1041
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1042
|
+
|
|
1043
|
+
|
|
1044
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1045
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1046
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1047
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1048
|
+
feature_units_plural: Optional[str] = Field(
|
|
1049
|
+
alias="featureUnitsPlural", default=None
|
|
1050
|
+
)
|
|
1051
|
+
display_name: str = Field(alias="displayName")
|
|
1052
|
+
description: Optional[str] = Field(default=None)
|
|
1053
|
+
ref_id: str = Field(alias="refId")
|
|
1054
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1055
|
+
alias="additionalMetaData", default=None
|
|
1056
|
+
)
|
|
1057
|
+
|
|
1058
|
+
|
|
1059
1059
|
class CustomerFragment(SlimCustomerFragment):
|
|
1060
1060
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1061
1061
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1262,50 +1262,6 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1262
1262
|
pass
|
|
1263
1263
|
|
|
1264
1264
|
|
|
1265
|
-
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1266
|
-
display_name: str = Field(alias="displayName")
|
|
1267
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1268
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1269
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1270
|
-
period: PromotionalEntitlementPeriod
|
|
1271
|
-
start_date: Any = Field(alias="startDate")
|
|
1272
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1276
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1277
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1278
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1279
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1280
|
-
default=None
|
|
1281
|
-
)
|
|
1282
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1283
|
-
default=None
|
|
1284
|
-
)
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1288
|
-
amount: float
|
|
1289
|
-
currency: Currency
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1293
|
-
id: Any
|
|
1294
|
-
ref_id: str = Field(alias="refId")
|
|
1295
|
-
display_name: str = Field(alias="displayName")
|
|
1296
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1297
|
-
feature_units_plural: Optional[str] = Field(
|
|
1298
|
-
alias="featureUnitsPlural", default=None
|
|
1299
|
-
)
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1303
|
-
addon_id: str = Field(alias="addonId")
|
|
1304
|
-
description: Optional[str] = Field(default=None)
|
|
1305
|
-
display_name: str = Field(alias="displayName")
|
|
1306
|
-
quantity: int
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
1265
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1310
1266
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1311
1267
|
alias="subscriptionScheduleType"
|
|
@@ -1475,6 +1431,40 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1475
1431
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1476
1432
|
|
|
1477
1433
|
|
|
1434
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1435
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1436
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1437
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1438
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1439
|
+
default=None
|
|
1440
|
+
)
|
|
1441
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1442
|
+
default=None
|
|
1443
|
+
)
|
|
1444
|
+
|
|
1445
|
+
|
|
1446
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1447
|
+
amount: float
|
|
1448
|
+
currency: Currency
|
|
1449
|
+
|
|
1450
|
+
|
|
1451
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1452
|
+
id: Any
|
|
1453
|
+
ref_id: str = Field(alias="refId")
|
|
1454
|
+
display_name: str = Field(alias="displayName")
|
|
1455
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1456
|
+
feature_units_plural: Optional[str] = Field(
|
|
1457
|
+
alias="featureUnitsPlural", default=None
|
|
1458
|
+
)
|
|
1459
|
+
|
|
1460
|
+
|
|
1461
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1462
|
+
addon_id: str = Field(alias="addonId")
|
|
1463
|
+
description: Optional[str] = Field(default=None)
|
|
1464
|
+
display_name: str = Field(alias="displayName")
|
|
1465
|
+
quantity: int
|
|
1466
|
+
|
|
1467
|
+
|
|
1478
1468
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1479
1469
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1480
1470
|
plan_id: str = Field(alias="planId")
|
|
@@ -1571,6 +1561,16 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1571
1561
|
pass
|
|
1572
1562
|
|
|
1573
1563
|
|
|
1564
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1565
|
+
display_name: str = Field(alias="displayName")
|
|
1566
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1567
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1568
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1569
|
+
period: PromotionalEntitlementPeriod
|
|
1570
|
+
start_date: Any = Field(alias="startDate")
|
|
1571
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1572
|
+
|
|
1573
|
+
|
|
1574
1574
|
class CustomerPortalFragment(BaseModel):
|
|
1575
1575
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1576
1576
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -1798,6 +1798,39 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1798
1798
|
description: Optional[str] = Field(default=None)
|
|
1799
1799
|
|
|
1800
1800
|
|
|
1801
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1802
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1803
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1804
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1805
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1806
|
+
alias="resetPeriod", default=None
|
|
1807
|
+
)
|
|
1808
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1809
|
+
alias="hiddenFromWidgets", default=None
|
|
1810
|
+
)
|
|
1811
|
+
display_name_override: Optional[str] = Field(
|
|
1812
|
+
alias="displayNameOverride", default=None
|
|
1813
|
+
)
|
|
1814
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1815
|
+
default=None
|
|
1816
|
+
)
|
|
1817
|
+
|
|
1818
|
+
|
|
1819
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1820
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1821
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1822
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1823
|
+
feature_units_plural: Optional[str] = Field(
|
|
1824
|
+
alias="featureUnitsPlural", default=None
|
|
1825
|
+
)
|
|
1826
|
+
display_name: str = Field(alias="displayName")
|
|
1827
|
+
description: Optional[str] = Field(default=None)
|
|
1828
|
+
ref_id: str = Field(alias="refId")
|
|
1829
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1830
|
+
alias="additionalMetaData", default=None
|
|
1831
|
+
)
|
|
1832
|
+
|
|
1833
|
+
|
|
1801
1834
|
class MockPaywallPriceFragment(BaseModel):
|
|
1802
1835
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1803
1836
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1832,39 +1865,6 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1832
1865
|
display_name: str = Field(alias="displayName")
|
|
1833
1866
|
|
|
1834
1867
|
|
|
1835
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1836
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1837
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1838
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1839
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1840
|
-
alias="resetPeriod", default=None
|
|
1841
|
-
)
|
|
1842
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1843
|
-
alias="hiddenFromWidgets", default=None
|
|
1844
|
-
)
|
|
1845
|
-
display_name_override: Optional[str] = Field(
|
|
1846
|
-
alias="displayNameOverride", default=None
|
|
1847
|
-
)
|
|
1848
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1849
|
-
default=None
|
|
1850
|
-
)
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1854
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1855
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1856
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1857
|
-
feature_units_plural: Optional[str] = Field(
|
|
1858
|
-
alias="featureUnitsPlural", default=None
|
|
1859
|
-
)
|
|
1860
|
-
display_name: str = Field(alias="displayName")
|
|
1861
|
-
description: Optional[str] = Field(default=None)
|
|
1862
|
-
ref_id: str = Field(alias="refId")
|
|
1863
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1864
|
-
alias="additionalMetaData", default=None
|
|
1865
|
-
)
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
1868
|
class MockPaywallAddonFragment(BaseModel):
|
|
1869
1869
|
ref_id: str = Field(alias="refId")
|
|
1870
1870
|
display_name: str = Field(alias="displayName")
|
|
@@ -2838,38 +2838,38 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2838
2838
|
AddonDependencyFragment.model_rebuild()
|
|
2839
2839
|
PriceTierFragment.model_rebuild()
|
|
2840
2840
|
PriceFragment.model_rebuild()
|
|
2841
|
-
OveragePriceFragment.model_rebuild()
|
|
2842
2841
|
PackageEntitlementFragment.model_rebuild()
|
|
2842
|
+
OveragePriceFragment.model_rebuild()
|
|
2843
2843
|
AddonFragment.model_rebuild()
|
|
2844
|
-
|
|
2845
|
-
|
|
2846
|
-
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2847
|
-
CustomerResourceFragment.model_rebuild()
|
|
2848
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2844
|
+
SlimCustomerFragment.model_rebuild()
|
|
2845
|
+
TotalPriceFragment.model_rebuild()
|
|
2849
2846
|
ProductFragment.model_rebuild()
|
|
2850
2847
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2851
2848
|
PlanFragment.model_rebuild()
|
|
2852
|
-
|
|
2849
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2850
|
+
CustomerResourceFragment.model_rebuild()
|
|
2851
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2853
2852
|
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2854
|
-
|
|
2855
|
-
TotalPriceFragment.model_rebuild()
|
|
2853
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2856
2854
|
SubscriptionFragment.model_rebuild()
|
|
2855
|
+
FeatureFragment.model_rebuild()
|
|
2856
|
+
EntitlementFragment.model_rebuild()
|
|
2857
2857
|
ApplySubscriptionFragment.model_rebuild()
|
|
2858
2858
|
FontVariantFragment.model_rebuild()
|
|
2859
2859
|
TypographyConfigurationFragment.model_rebuild()
|
|
2860
2860
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2861
|
-
PromotionalEntitlementFragment.model_rebuild()
|
|
2862
2861
|
CouponFragment.model_rebuild()
|
|
2862
|
+
PromotionalEntitlementFragment.model_rebuild()
|
|
2863
2863
|
CustomerFragment.model_rebuild()
|
|
2864
2864
|
CheckoutStateFragment.model_rebuild()
|
|
2865
2865
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2866
2866
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2867
2867
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2868
|
-
|
|
2868
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2869
2869
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2870
2870
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2871
|
-
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2872
2871
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2872
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2873
2873
|
CustomerPortalFragment.model_rebuild()
|
|
2874
2874
|
CustomerStatisticsFragment.model_rebuild()
|
|
2875
2875
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
|
@@ -2879,8 +2879,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
2879
2879
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
2880
2880
|
LayoutConfigurationFragment.model_rebuild()
|
|
2881
2881
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
2882
|
-
MockPaywallPriceFragment.model_rebuild()
|
|
2883
2882
|
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2883
|
+
MockPaywallPriceFragment.model_rebuild()
|
|
2884
2884
|
MockPaywallAddonFragment.model_rebuild()
|
|
2885
2885
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2886
2886
|
MockPaywallPlanFragment.model_rebuild()
|
|
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=oBfmlp2nHkpkNzYzCrfjUlNxhMQwC4uys5UidfwhSgw,3631
|
|
|
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=qkLUsnzhVfjc6QesmZ8YSn1jTOfMH9kJP9sgWaDRnFk,103522
|
|
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
|
|
@@ -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.478.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
165
|
+
stigg_api_client_v2-2.478.0.dist-info/METADATA,sha256=Lyj4OvRPvz1dKvhVcjSQx8DEpJ7T206VIMewEQSctv4,2258
|
|
166
|
+
stigg_api_client_v2-2.478.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
167
|
+
stigg_api_client_v2-2.478.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|