stigg-api-client-v2 2.475.0__py3-none-any.whl → 2.475.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of stigg-api-client-v2 might be problematic. Click here for more details.
- stigg/generated/fragments.py +458 -458
- {stigg_api_client_v2-2.475.0.dist-info → stigg_api_client_v2-2.475.1.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.475.0.dist-info → stigg_api_client_v2-2.475.1.dist-info}/RECORD +5 -5
- {stigg_api_client_v2-2.475.0.dist-info → stigg_api_client_v2-2.475.1.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.475.0.dist-info → stigg_api_client_v2-2.475.1.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(
|
|
@@ -112,33 +116,29 @@ class OveragePriceFragmentFeature(BaseModel):
|
|
|
112
116
|
description: Optional[str] = Field(default=None)
|
|
113
117
|
|
|
114
118
|
|
|
115
|
-
class
|
|
119
|
+
class OveragePriceFragment(BaseModel):
|
|
116
120
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
117
121
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
118
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
119
122
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
120
|
-
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
121
|
-
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
122
123
|
billing_country_code: Optional[str] = Field(
|
|
123
124
|
alias="billingCountryCode", default=None
|
|
124
125
|
)
|
|
125
|
-
price: Optional["
|
|
126
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
126
127
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
127
|
-
tiers: Optional[List["
|
|
128
|
-
feature: Optional["
|
|
129
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
128
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
129
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
130
130
|
|
|
131
131
|
|
|
132
|
-
class
|
|
132
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
133
133
|
amount: float
|
|
134
134
|
currency: Currency
|
|
135
135
|
|
|
136
136
|
|
|
137
|
-
class
|
|
137
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
138
138
|
pass
|
|
139
139
|
|
|
140
140
|
|
|
141
|
-
class
|
|
141
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
142
142
|
ref_id: str = Field(alias="refId")
|
|
143
143
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
144
144
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -219,66 +219,130 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
219
219
|
pass
|
|
220
220
|
|
|
221
221
|
|
|
222
|
-
class
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
222
|
+
class FeatureFragment(BaseModel):
|
|
223
|
+
typename__: str = Field(alias="__typename")
|
|
224
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
225
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
226
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
227
|
+
feature_units_plural: Optional[str] = Field(
|
|
228
|
+
alias="featureUnitsPlural", default=None
|
|
229
|
+
)
|
|
230
|
+
description: Optional[str] = Field(default=None)
|
|
231
|
+
display_name: str = Field(alias="displayName")
|
|
228
232
|
ref_id: str = Field(alias="refId")
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
additional_meta_data: Optional[Any] = Field(
|
|
232
|
-
alias="additionalMetaData", default=None
|
|
233
|
+
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
234
|
+
alias="unitTransformation", default=None
|
|
233
235
|
)
|
|
234
|
-
|
|
235
|
-
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
class FeatureFragmentUnitTransformation(BaseModel):
|
|
239
|
+
divide: float
|
|
240
|
+
round: UnitTransformationRound
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
class EntitlementFragment(BaseModel):
|
|
244
|
+
typename__: str = Field(alias="__typename")
|
|
245
|
+
is_granted: bool = Field(alias="isGranted")
|
|
246
|
+
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
247
|
+
alias="accessDeniedReason", default=None
|
|
248
|
+
)
|
|
249
|
+
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
250
|
+
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
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
|
|
260
|
+
)
|
|
261
|
+
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
262
|
+
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
263
|
+
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
264
|
+
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
265
|
+
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
266
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
267
|
+
alias="resetPeriod", default=None
|
|
268
|
+
)
|
|
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
|
+
|
|
281
|
+
|
|
282
|
+
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
283
|
+
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
284
|
+
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
285
|
+
alias="monthlyAccordingTo", default=None
|
|
236
286
|
)
|
|
237
287
|
|
|
238
288
|
|
|
239
|
-
class
|
|
240
|
-
|
|
289
|
+
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
290
|
+
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
291
|
+
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
292
|
+
alias="weeklyAccordingTo", default=None
|
|
293
|
+
)
|
|
241
294
|
|
|
242
295
|
|
|
243
|
-
class
|
|
296
|
+
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
297
|
+
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
298
|
+
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
299
|
+
alias="yearlyAccordingTo", default=None
|
|
300
|
+
)
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
class EntitlementFragmentFeature(FeatureFragment):
|
|
304
|
+
pass
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
class SubscriptionScheduledUpdateData(BaseModel):
|
|
244
308
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
245
309
|
alias="subscriptionScheduleType"
|
|
246
310
|
)
|
|
247
311
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
248
312
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
249
|
-
target_package: Optional["
|
|
313
|
+
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
250
314
|
alias="targetPackage", default=None
|
|
251
315
|
)
|
|
252
316
|
schedule_variables: Optional[
|
|
253
317
|
Annotated[
|
|
254
318
|
Union[
|
|
255
|
-
"
|
|
256
|
-
"
|
|
257
|
-
"
|
|
258
|
-
"
|
|
259
|
-
"
|
|
260
|
-
"
|
|
261
|
-
"
|
|
262
|
-
"
|
|
319
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
320
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
321
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
322
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
323
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
324
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
325
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
326
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
263
327
|
],
|
|
264
328
|
Field(discriminator="typename__"),
|
|
265
329
|
]
|
|
266
330
|
] = Field(alias="scheduleVariables", default=None)
|
|
267
331
|
|
|
268
332
|
|
|
269
|
-
class
|
|
333
|
+
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
270
334
|
id: Any
|
|
271
335
|
ref_id: str = Field(alias="refId")
|
|
272
336
|
display_name: str = Field(alias="displayName")
|
|
273
337
|
|
|
274
338
|
|
|
275
|
-
class
|
|
339
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
276
340
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
277
341
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
278
342
|
new_quantity: float = Field(alias="newQuantity")
|
|
279
343
|
|
|
280
344
|
|
|
281
|
-
class
|
|
345
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
282
346
|
BaseModel
|
|
283
347
|
):
|
|
284
348
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -286,53 +350,55 @@ class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVaria
|
|
|
286
350
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
287
351
|
|
|
288
352
|
|
|
289
|
-
class
|
|
353
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
290
354
|
BaseModel
|
|
291
355
|
):
|
|
292
356
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
293
357
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
294
358
|
|
|
295
359
|
|
|
296
|
-
class
|
|
360
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
297
361
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
298
362
|
|
|
299
363
|
|
|
300
|
-
class
|
|
364
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
365
|
+
BaseModel
|
|
366
|
+
):
|
|
301
367
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
302
368
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
303
369
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
304
370
|
billable_features: Optional[
|
|
305
371
|
List[
|
|
306
|
-
"
|
|
372
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
307
373
|
]
|
|
308
374
|
] = Field(alias="billableFeatures", default=None)
|
|
309
375
|
addons: Optional[
|
|
310
376
|
List[
|
|
311
|
-
"
|
|
377
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
312
378
|
]
|
|
313
379
|
] = Field(default=None)
|
|
314
380
|
price_overrides: Optional[
|
|
315
381
|
List[
|
|
316
|
-
"
|
|
382
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
317
383
|
]
|
|
318
384
|
] = Field(alias="priceOverrides", default=None)
|
|
319
385
|
|
|
320
386
|
|
|
321
|
-
class
|
|
387
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
322
388
|
BaseModel
|
|
323
389
|
):
|
|
324
390
|
feature_id: str = Field(alias="featureId")
|
|
325
391
|
quantity: float
|
|
326
392
|
|
|
327
393
|
|
|
328
|
-
class
|
|
394
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
329
395
|
BaseModel
|
|
330
396
|
):
|
|
331
397
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
332
398
|
quantity: float
|
|
333
399
|
|
|
334
400
|
|
|
335
|
-
class
|
|
401
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
336
402
|
BaseModel
|
|
337
403
|
):
|
|
338
404
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -340,39 +406,43 @@ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPrice
|
|
|
340
406
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
341
407
|
|
|
342
408
|
|
|
343
|
-
class
|
|
409
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
344
410
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
345
411
|
plan_ref_id: str = Field(alias="planRefId")
|
|
346
412
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
347
413
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
348
414
|
billable_features: Optional[
|
|
349
415
|
List[
|
|
350
|
-
"
|
|
416
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
351
417
|
]
|
|
352
418
|
] = Field(alias="billableFeatures", default=None)
|
|
353
419
|
addons: Optional[
|
|
354
|
-
List[
|
|
420
|
+
List[
|
|
421
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
422
|
+
]
|
|
355
423
|
] = Field(default=None)
|
|
356
424
|
price_overrides: Optional[
|
|
357
425
|
List[
|
|
358
|
-
"
|
|
426
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
359
427
|
]
|
|
360
428
|
] = Field(alias="priceOverrides", default=None)
|
|
361
429
|
|
|
362
430
|
|
|
363
|
-
class
|
|
431
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
364
432
|
BaseModel
|
|
365
433
|
):
|
|
366
434
|
feature_id: str = Field(alias="featureId")
|
|
367
435
|
quantity: float
|
|
368
436
|
|
|
369
437
|
|
|
370
|
-
class
|
|
438
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
439
|
+
BaseModel
|
|
440
|
+
):
|
|
371
441
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
372
442
|
quantity: float
|
|
373
443
|
|
|
374
444
|
|
|
375
|
-
class
|
|
445
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
376
446
|
BaseModel
|
|
377
447
|
):
|
|
378
448
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -380,7 +450,7 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverr
|
|
|
380
450
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
381
451
|
|
|
382
452
|
|
|
383
|
-
class
|
|
453
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
384
454
|
BaseModel
|
|
385
455
|
):
|
|
386
456
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -388,54 +458,195 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariab
|
|
|
388
458
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
389
459
|
|
|
390
460
|
|
|
391
|
-
class
|
|
461
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
462
|
+
BaseModel
|
|
463
|
+
):
|
|
392
464
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
393
465
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
394
466
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
395
467
|
|
|
396
468
|
|
|
397
|
-
class
|
|
398
|
-
|
|
399
|
-
total: "TotalPriceFragmentTotal"
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
403
|
-
amount: float
|
|
404
|
-
currency: Currency
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
408
|
-
amount: float
|
|
409
|
-
currency: Currency
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
413
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
469
|
+
class CustomerResourceFragment(BaseModel):
|
|
470
|
+
resource_id: str = Field(alias="resourceId")
|
|
414
471
|
|
|
415
472
|
|
|
416
|
-
class
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
description: Optional[str] = Field(default=None)
|
|
420
|
-
additional_meta_data: Optional[Any] = Field(
|
|
421
|
-
alias="additionalMetaData", default=None
|
|
473
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
474
|
+
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
475
|
+
alias="subscriptionScheduleType"
|
|
422
476
|
)
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
428
|
-
alias="downgradePlan", default=None
|
|
477
|
+
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
478
|
+
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
479
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
480
|
+
alias="targetPackage", default=None
|
|
429
481
|
)
|
|
482
|
+
schedule_variables: Optional[
|
|
483
|
+
Annotated[
|
|
484
|
+
Union[
|
|
485
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
486
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
487
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
488
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
489
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
490
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
491
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
492
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
493
|
+
],
|
|
494
|
+
Field(discriminator="typename__"),
|
|
495
|
+
]
|
|
496
|
+
] = Field(alias="scheduleVariables", default=None)
|
|
430
497
|
|
|
431
498
|
|
|
432
|
-
class
|
|
499
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
500
|
+
id: Any
|
|
433
501
|
ref_id: str = Field(alias="refId")
|
|
434
502
|
display_name: str = Field(alias="displayName")
|
|
435
503
|
|
|
436
504
|
|
|
437
|
-
class
|
|
438
|
-
|
|
505
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
506
|
+
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
507
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
508
|
+
new_quantity: float = Field(alias="newQuantity")
|
|
509
|
+
|
|
510
|
+
|
|
511
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
512
|
+
BaseModel
|
|
513
|
+
):
|
|
514
|
+
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
515
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
516
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
517
|
+
|
|
518
|
+
|
|
519
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
520
|
+
BaseModel
|
|
521
|
+
):
|
|
522
|
+
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
523
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
524
|
+
|
|
525
|
+
|
|
526
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
527
|
+
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
528
|
+
|
|
529
|
+
|
|
530
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
531
|
+
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
532
|
+
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
533
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
534
|
+
billable_features: Optional[
|
|
535
|
+
List[
|
|
536
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
537
|
+
]
|
|
538
|
+
] = Field(alias="billableFeatures", default=None)
|
|
539
|
+
addons: Optional[
|
|
540
|
+
List[
|
|
541
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
542
|
+
]
|
|
543
|
+
] = Field(default=None)
|
|
544
|
+
price_overrides: Optional[
|
|
545
|
+
List[
|
|
546
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
547
|
+
]
|
|
548
|
+
] = Field(alias="priceOverrides", default=None)
|
|
549
|
+
|
|
550
|
+
|
|
551
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
552
|
+
BaseModel
|
|
553
|
+
):
|
|
554
|
+
feature_id: str = Field(alias="featureId")
|
|
555
|
+
quantity: float
|
|
556
|
+
|
|
557
|
+
|
|
558
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
559
|
+
BaseModel
|
|
560
|
+
):
|
|
561
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
562
|
+
quantity: float
|
|
563
|
+
|
|
564
|
+
|
|
565
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
566
|
+
BaseModel
|
|
567
|
+
):
|
|
568
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
569
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
570
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
571
|
+
|
|
572
|
+
|
|
573
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
574
|
+
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
575
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
576
|
+
change_type: PlanChangeType = Field(alias="changeType")
|
|
577
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
578
|
+
billable_features: Optional[
|
|
579
|
+
List[
|
|
580
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
581
|
+
]
|
|
582
|
+
] = Field(alias="billableFeatures", default=None)
|
|
583
|
+
addons: Optional[
|
|
584
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
585
|
+
] = Field(default=None)
|
|
586
|
+
price_overrides: Optional[
|
|
587
|
+
List[
|
|
588
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
589
|
+
]
|
|
590
|
+
] = Field(alias="priceOverrides", default=None)
|
|
591
|
+
|
|
592
|
+
|
|
593
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
594
|
+
BaseModel
|
|
595
|
+
):
|
|
596
|
+
feature_id: str = Field(alias="featureId")
|
|
597
|
+
quantity: float
|
|
598
|
+
|
|
599
|
+
|
|
600
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
601
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
602
|
+
quantity: float
|
|
603
|
+
|
|
604
|
+
|
|
605
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
606
|
+
BaseModel
|
|
607
|
+
):
|
|
608
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
609
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
610
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
611
|
+
|
|
612
|
+
|
|
613
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
614
|
+
BaseModel
|
|
615
|
+
):
|
|
616
|
+
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
617
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
618
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
619
|
+
|
|
620
|
+
|
|
621
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
622
|
+
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
623
|
+
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
624
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
625
|
+
|
|
626
|
+
|
|
627
|
+
class ProductFragment(BaseModel):
|
|
628
|
+
ref_id: str = Field(alias="refId")
|
|
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")
|
|
439
650
|
display_name: str = Field(alias="displayName")
|
|
440
651
|
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
441
652
|
default=None
|
|
@@ -560,166 +771,40 @@ class SubscriptionInvoiceFragment(BaseModel):
|
|
|
560
771
|
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
561
772
|
|
|
562
773
|
|
|
563
|
-
class
|
|
564
|
-
|
|
565
|
-
alias="subscriptionScheduleType"
|
|
566
|
-
)
|
|
567
|
-
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
568
|
-
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
569
|
-
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
570
|
-
alias="targetPackage", default=None
|
|
571
|
-
)
|
|
572
|
-
schedule_variables: Optional[
|
|
573
|
-
Annotated[
|
|
574
|
-
Union[
|
|
575
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
576
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
577
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
578
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
579
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
580
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
581
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
582
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
583
|
-
],
|
|
584
|
-
Field(discriminator="typename__"),
|
|
585
|
-
]
|
|
586
|
-
] = Field(alias="scheduleVariables", default=None)
|
|
774
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
775
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
587
776
|
|
|
588
777
|
|
|
589
|
-
class
|
|
778
|
+
class SlimCustomerFragment(BaseModel):
|
|
590
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")
|
|
591
784
|
ref_id: str = Field(alias="refId")
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
602
|
-
BaseModel
|
|
603
|
-
):
|
|
604
|
-
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
605
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
606
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
610
|
-
BaseModel
|
|
611
|
-
):
|
|
612
|
-
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
613
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
617
|
-
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
621
|
-
BaseModel
|
|
622
|
-
):
|
|
623
|
-
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
624
|
-
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
625
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
626
|
-
billable_features: Optional[
|
|
627
|
-
List[
|
|
628
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
629
|
-
]
|
|
630
|
-
] = Field(alias="billableFeatures", default=None)
|
|
631
|
-
addons: Optional[
|
|
632
|
-
List[
|
|
633
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
634
|
-
]
|
|
635
|
-
] = Field(default=None)
|
|
636
|
-
price_overrides: Optional[
|
|
637
|
-
List[
|
|
638
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
639
|
-
]
|
|
640
|
-
] = Field(alias="priceOverrides", default=None)
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
644
|
-
BaseModel
|
|
645
|
-
):
|
|
646
|
-
feature_id: str = Field(alias="featureId")
|
|
647
|
-
quantity: float
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
651
|
-
BaseModel
|
|
652
|
-
):
|
|
653
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
654
|
-
quantity: float
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
658
|
-
BaseModel
|
|
659
|
-
):
|
|
660
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
661
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
662
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
666
|
-
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
667
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
668
|
-
change_type: PlanChangeType = Field(alias="changeType")
|
|
669
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
670
|
-
billable_features: Optional[
|
|
671
|
-
List[
|
|
672
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
673
|
-
]
|
|
674
|
-
] = Field(alias="billableFeatures", default=None)
|
|
675
|
-
addons: Optional[
|
|
676
|
-
List[
|
|
677
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
678
|
-
]
|
|
679
|
-
] = Field(default=None)
|
|
680
|
-
price_overrides: Optional[
|
|
681
|
-
List[
|
|
682
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
683
|
-
]
|
|
684
|
-
] = Field(alias="priceOverrides", default=None)
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
688
|
-
BaseModel
|
|
689
|
-
):
|
|
690
|
-
feature_id: str = Field(alias="featureId")
|
|
691
|
-
quantity: float
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
695
|
-
BaseModel
|
|
696
|
-
):
|
|
697
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
698
|
-
quantity: float
|
|
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
|
+
)
|
|
699
793
|
|
|
700
794
|
|
|
701
|
-
class
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
705
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
706
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
795
|
+
class TotalPriceFragment(BaseModel):
|
|
796
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
797
|
+
total: "TotalPriceFragmentTotal"
|
|
707
798
|
|
|
708
799
|
|
|
709
|
-
class
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
713
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
714
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
800
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
801
|
+
amount: float
|
|
802
|
+
currency: Currency
|
|
715
803
|
|
|
716
804
|
|
|
717
|
-
class
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
721
|
-
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
722
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
805
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
806
|
+
amount: float
|
|
807
|
+
currency: Currency
|
|
723
808
|
|
|
724
809
|
|
|
725
810
|
class SubscriptionFragment(BaseModel):
|
|
@@ -811,108 +896,23 @@ class SubscriptionFragmentPlan(PlanFragment):
|
|
|
811
896
|
|
|
812
897
|
class SubscriptionFragmentAddons(BaseModel):
|
|
813
898
|
id: Any
|
|
814
|
-
quantity: float
|
|
815
|
-
addon: "SubscriptionFragmentAddonsAddon"
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
class SubscriptionFragmentAddonsAddon(AddonFragment):
|
|
819
|
-
pass
|
|
820
|
-
|
|
821
|
-
|
|
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
|
+
quantity: float
|
|
900
|
+
addon: "SubscriptionFragmentAddonsAddon"
|
|
899
901
|
|
|
900
902
|
|
|
901
|
-
class
|
|
902
|
-
|
|
903
|
-
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
904
|
-
alias="weeklyAccordingTo", default=None
|
|
905
|
-
)
|
|
903
|
+
class SubscriptionFragmentAddonsAddon(AddonFragment):
|
|
904
|
+
pass
|
|
906
905
|
|
|
907
906
|
|
|
908
|
-
class
|
|
909
|
-
|
|
910
|
-
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
911
|
-
alias="yearlyAccordingTo", default=None
|
|
912
|
-
)
|
|
907
|
+
class SubscriptionFragmentScheduledUpdates(SubscriptionScheduledUpdateData):
|
|
908
|
+
pass
|
|
913
909
|
|
|
914
910
|
|
|
915
|
-
class
|
|
911
|
+
class SubscriptionFragmentFutureUpdates(SubscriptionFutureUpdateData):
|
|
912
|
+
pass
|
|
913
|
+
|
|
914
|
+
|
|
915
|
+
class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragment):
|
|
916
916
|
pass
|
|
917
917
|
|
|
918
918
|
|
|
@@ -993,6 +993,35 @@ 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
|
+
|
|
996
1025
|
class CouponFragment(BaseModel):
|
|
997
1026
|
id: Any
|
|
998
1027
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1027,35 +1056,6 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1027
1056
|
status: SyncStatus
|
|
1028
1057
|
|
|
1029
1058
|
|
|
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,6 +1262,50 @@ 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
|
+
|
|
1265
1309
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1266
1310
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1267
1311
|
alias="subscriptionScheduleType"
|
|
@@ -1431,40 +1475,6 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1431
1475
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1432
1476
|
|
|
1433
1477
|
|
|
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
|
-
|
|
1468
1478
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1469
1479
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1470
1480
|
plan_id: str = Field(alias="planId")
|
|
@@ -1561,16 +1571,6 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1561
1571
|
pass
|
|
1562
1572
|
|
|
1563
1573
|
|
|
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,39 +1798,6 @@ 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
|
-
|
|
1834
1801
|
class MockPaywallPriceFragment(BaseModel):
|
|
1835
1802
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1836
1803
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1865,6 +1832,39 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1865
1832
|
display_name: str = Field(alias="displayName")
|
|
1866
1833
|
|
|
1867
1834
|
|
|
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")
|
|
@@ -2837,39 +2837,39 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2837
2837
|
|
|
2838
2838
|
AddonDependencyFragment.model_rebuild()
|
|
2839
2839
|
PriceTierFragment.model_rebuild()
|
|
2840
|
-
OveragePriceFragment.model_rebuild()
|
|
2841
2840
|
PriceFragment.model_rebuild()
|
|
2841
|
+
OveragePriceFragment.model_rebuild()
|
|
2842
2842
|
PackageEntitlementFragment.model_rebuild()
|
|
2843
2843
|
AddonFragment.model_rebuild()
|
|
2844
|
-
|
|
2844
|
+
FeatureFragment.model_rebuild()
|
|
2845
|
+
EntitlementFragment.model_rebuild()
|
|
2846
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2845
2847
|
CustomerResourceFragment.model_rebuild()
|
|
2846
2848
|
SubscriptionFutureUpdateData.model_rebuild()
|
|
2847
|
-
TotalPriceFragment.model_rebuild()
|
|
2848
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2849
2849
|
ProductFragment.model_rebuild()
|
|
2850
2850
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2851
2851
|
PlanFragment.model_rebuild()
|
|
2852
2852
|
SubscriptionInvoiceFragment.model_rebuild()
|
|
2853
|
-
|
|
2853
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2854
|
+
SlimCustomerFragment.model_rebuild()
|
|
2855
|
+
TotalPriceFragment.model_rebuild()
|
|
2854
2856
|
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
|
-
CouponFragment.model_rebuild()
|
|
2862
2861
|
PromotionalEntitlementFragment.model_rebuild()
|
|
2862
|
+
CouponFragment.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
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2869
2869
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2870
2870
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2871
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2871
2872
|
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
|
-
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2883
2882
|
MockPaywallPriceFragment.model_rebuild()
|
|
2883
|
+
MockPaywallPackageEntitlementFragment.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=vObvaKHciEVMFXSfDcany6QTcAcOzFNx2-qsxvkvks0,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.475.
|
|
165
|
-
stigg_api_client_v2-2.475.
|
|
166
|
-
stigg_api_client_v2-2.475.
|
|
167
|
-
stigg_api_client_v2-2.475.
|
|
164
|
+
stigg_api_client_v2-2.475.1.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
165
|
+
stigg_api_client_v2-2.475.1.dist-info/METADATA,sha256=VncfB728EjlQcKJuRYNfeRipgKEOCsZuc2y05WsCA6k,2258
|
|
166
|
+
stigg_api_client_v2-2.475.1.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
167
|
+
stigg_api_client_v2-2.475.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|