stigg-api-client-v2 2.451.2__py3-none-any.whl → 2.457.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 +369 -369
- {stigg_api_client_v2-2.451.2.dist-info → stigg_api_client_v2-2.457.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.451.2.dist-info → stigg_api_client_v2-2.457.0.dist-info}/RECORD +5 -5
- {stigg_api_client_v2-2.451.2.dist-info → stigg_api_client_v2-2.457.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.451.2.dist-info → stigg_api_client_v2-2.457.0.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -113,29 +113,33 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
113
113
|
currency: Currency
|
|
114
114
|
|
|
115
115
|
|
|
116
|
-
class
|
|
116
|
+
class PriceFragment(BaseModel):
|
|
117
117
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
118
118
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
119
|
+
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
119
120
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
121
|
+
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
122
|
+
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
120
123
|
billing_country_code: Optional[str] = Field(
|
|
121
124
|
alias="billingCountryCode", default=None
|
|
122
125
|
)
|
|
123
|
-
price: Optional["
|
|
126
|
+
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
124
127
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
125
|
-
tiers: Optional[List["
|
|
126
|
-
feature: Optional["
|
|
128
|
+
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
129
|
+
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
130
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
127
131
|
|
|
128
132
|
|
|
129
|
-
class
|
|
133
|
+
class PriceFragmentPrice(BaseModel):
|
|
130
134
|
amount: float
|
|
131
135
|
currency: Currency
|
|
132
136
|
|
|
133
137
|
|
|
134
|
-
class
|
|
138
|
+
class PriceFragmentTiers(PriceTierFragment):
|
|
135
139
|
pass
|
|
136
140
|
|
|
137
141
|
|
|
138
|
-
class
|
|
142
|
+
class PriceFragmentFeature(BaseModel):
|
|
139
143
|
ref_id: str = Field(alias="refId")
|
|
140
144
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
141
145
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -145,33 +149,29 @@ class OveragePriceFragmentFeature(BaseModel):
|
|
|
145
149
|
description: Optional[str] = Field(default=None)
|
|
146
150
|
|
|
147
151
|
|
|
148
|
-
class
|
|
152
|
+
class OveragePriceFragment(BaseModel):
|
|
149
153
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
150
154
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
151
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
152
155
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
153
|
-
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
154
|
-
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
155
156
|
billing_country_code: Optional[str] = Field(
|
|
156
157
|
alias="billingCountryCode", default=None
|
|
157
158
|
)
|
|
158
|
-
price: Optional["
|
|
159
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
159
160
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
160
|
-
tiers: Optional[List["
|
|
161
|
-
feature: Optional["
|
|
162
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
161
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
162
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
163
163
|
|
|
164
164
|
|
|
165
|
-
class
|
|
165
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
166
166
|
amount: float
|
|
167
167
|
currency: Currency
|
|
168
168
|
|
|
169
169
|
|
|
170
|
-
class
|
|
170
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
171
171
|
pass
|
|
172
172
|
|
|
173
173
|
|
|
174
|
-
class
|
|
174
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
175
175
|
ref_id: str = Field(alias="refId")
|
|
176
176
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
177
177
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -219,127 +219,217 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
219
219
|
pass
|
|
220
220
|
|
|
221
221
|
|
|
222
|
-
class
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
222
|
+
class TotalPriceFragment(BaseModel):
|
|
223
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
224
|
+
total: "TotalPriceFragmentTotal"
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
228
|
+
amount: float
|
|
229
|
+
currency: Currency
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
233
|
+
amount: float
|
|
234
|
+
currency: Currency
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
class SlimCustomerFragment(BaseModel):
|
|
238
|
+
id: str
|
|
239
|
+
name: Optional[str] = Field(default=None)
|
|
240
|
+
email: Optional[str] = Field(default=None)
|
|
241
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
242
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
232
243
|
ref_id: str = Field(alias="refId")
|
|
233
|
-
|
|
234
|
-
|
|
244
|
+
customer_id: str = Field(alias="customerId")
|
|
245
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
246
|
+
additional_meta_data: Optional[Any] = Field(
|
|
247
|
+
alias="additionalMetaData", default=None
|
|
248
|
+
)
|
|
249
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
250
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
235
251
|
)
|
|
236
252
|
|
|
237
253
|
|
|
238
|
-
class
|
|
239
|
-
|
|
240
|
-
|
|
254
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
255
|
+
billing_id: str = Field(alias="billingId")
|
|
256
|
+
status: SubscriptionInvoiceStatus
|
|
257
|
+
created_at: Any = Field(alias="createdAt")
|
|
258
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
259
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
260
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
261
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
262
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
263
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
264
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
265
|
+
alias="billingReason", default=None
|
|
266
|
+
)
|
|
267
|
+
currency: Optional[str] = Field(default=None)
|
|
268
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
269
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
270
|
+
alias="subTotalExcludingTax", default=None
|
|
271
|
+
)
|
|
272
|
+
total: Optional[float] = Field(default=None)
|
|
273
|
+
total_excluding_tax: Optional[float] = Field(
|
|
274
|
+
alias="totalExcludingTax", default=None
|
|
275
|
+
)
|
|
276
|
+
tax: Optional[float] = Field(default=None)
|
|
277
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
278
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
241
279
|
|
|
242
280
|
|
|
243
|
-
class
|
|
244
|
-
|
|
245
|
-
|
|
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
|
-
entitlement_updated_at: Optional[Any] = Field(
|
|
257
|
-
alias="entitlementUpdatedAt", default=None
|
|
281
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
282
|
+
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
283
|
+
alias="subscriptionScheduleType"
|
|
258
284
|
)
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
264
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
265
|
-
alias="resetPeriod", default=None
|
|
285
|
+
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
286
|
+
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
287
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
288
|
+
alias="targetPackage", default=None
|
|
266
289
|
)
|
|
267
|
-
|
|
290
|
+
schedule_variables: Optional[
|
|
268
291
|
Annotated[
|
|
269
292
|
Union[
|
|
270
|
-
"
|
|
271
|
-
"
|
|
272
|
-
"
|
|
293
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
294
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
295
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
296
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
297
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
298
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
299
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
300
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
273
301
|
],
|
|
274
302
|
Field(discriminator="typename__"),
|
|
275
303
|
]
|
|
276
|
-
] = Field(alias="
|
|
277
|
-
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
304
|
+
] = Field(alias="scheduleVariables", default=None)
|
|
278
305
|
|
|
279
306
|
|
|
280
|
-
class
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
)
|
|
307
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
308
|
+
id: str
|
|
309
|
+
ref_id: str = Field(alias="refId")
|
|
310
|
+
display_name: str = Field(alias="displayName")
|
|
285
311
|
|
|
286
312
|
|
|
287
|
-
class
|
|
288
|
-
typename__: Literal["
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
)
|
|
313
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
314
|
+
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
315
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
316
|
+
new_quantity: float = Field(alias="newQuantity")
|
|
292
317
|
|
|
293
318
|
|
|
294
|
-
class
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
)
|
|
319
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
320
|
+
BaseModel
|
|
321
|
+
):
|
|
322
|
+
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
323
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
324
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
299
325
|
|
|
300
326
|
|
|
301
|
-
class
|
|
302
|
-
|
|
327
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
328
|
+
BaseModel
|
|
329
|
+
):
|
|
330
|
+
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
331
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
303
332
|
|
|
304
333
|
|
|
305
|
-
class
|
|
306
|
-
|
|
307
|
-
total: "TotalPriceFragmentTotal"
|
|
334
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
335
|
+
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
308
336
|
|
|
309
337
|
|
|
310
|
-
class
|
|
311
|
-
|
|
312
|
-
|
|
338
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
339
|
+
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
340
|
+
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
341
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
342
|
+
billable_features: Optional[
|
|
343
|
+
List[
|
|
344
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
345
|
+
]
|
|
346
|
+
] = Field(alias="billableFeatures", default=None)
|
|
347
|
+
addons: Optional[
|
|
348
|
+
List[
|
|
349
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
350
|
+
]
|
|
351
|
+
] = Field(default=None)
|
|
352
|
+
price_overrides: Optional[
|
|
353
|
+
List[
|
|
354
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
355
|
+
]
|
|
356
|
+
] = Field(alias="priceOverrides", default=None)
|
|
313
357
|
|
|
314
358
|
|
|
315
|
-
class
|
|
316
|
-
|
|
317
|
-
|
|
359
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
360
|
+
BaseModel
|
|
361
|
+
):
|
|
362
|
+
feature_id: str = Field(alias="featureId")
|
|
363
|
+
quantity: float
|
|
318
364
|
|
|
319
365
|
|
|
320
|
-
class
|
|
321
|
-
|
|
366
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
367
|
+
BaseModel
|
|
368
|
+
):
|
|
369
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
370
|
+
quantity: float
|
|
322
371
|
|
|
323
372
|
|
|
324
|
-
class
|
|
325
|
-
|
|
373
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
374
|
+
BaseModel
|
|
375
|
+
):
|
|
376
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
377
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
378
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
326
379
|
|
|
327
380
|
|
|
328
|
-
class
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
381
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
382
|
+
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
383
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
384
|
+
change_type: PlanChangeType = Field(alias="changeType")
|
|
385
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
386
|
+
billable_features: Optional[
|
|
387
|
+
List[
|
|
388
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
389
|
+
]
|
|
390
|
+
] = Field(alias="billableFeatures", default=None)
|
|
391
|
+
addons: Optional[
|
|
392
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
393
|
+
] = Field(default=None)
|
|
394
|
+
price_overrides: Optional[
|
|
395
|
+
List[
|
|
396
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
397
|
+
]
|
|
398
|
+
] = Field(alias="priceOverrides", default=None)
|
|
399
|
+
|
|
400
|
+
|
|
401
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
402
|
+
BaseModel
|
|
403
|
+
):
|
|
404
|
+
feature_id: str = Field(alias="featureId")
|
|
405
|
+
quantity: float
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
409
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
410
|
+
quantity: float
|
|
411
|
+
|
|
412
|
+
|
|
413
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
414
|
+
BaseModel
|
|
415
|
+
):
|
|
416
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
417
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
418
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
419
|
+
|
|
420
|
+
|
|
421
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
422
|
+
BaseModel
|
|
423
|
+
):
|
|
424
|
+
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
425
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
426
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
430
|
+
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
431
|
+
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
432
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
343
433
|
|
|
344
434
|
|
|
345
435
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
@@ -504,31 +594,22 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
504
594
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
505
595
|
|
|
506
596
|
|
|
507
|
-
class
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
513
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
514
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
515
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
516
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
517
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
518
|
-
alias="billingReason", default=None
|
|
519
|
-
)
|
|
520
|
-
currency: Optional[str] = Field(default=None)
|
|
521
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
522
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
523
|
-
alias="subTotalExcludingTax", default=None
|
|
524
|
-
)
|
|
525
|
-
total: Optional[float] = Field(default=None)
|
|
526
|
-
total_excluding_tax: Optional[float] = Field(
|
|
527
|
-
alias="totalExcludingTax", default=None
|
|
597
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
598
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
599
|
+
display_name: str = Field(alias="displayName")
|
|
600
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
601
|
+
default=None
|
|
528
602
|
)
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
603
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
607
|
+
pass
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
611
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
612
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
532
613
|
|
|
533
614
|
|
|
534
615
|
class ProductFragment(BaseModel):
|
|
@@ -552,24 +633,6 @@ class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
|
552
633
|
display_name: str = Field(alias="displayName")
|
|
553
634
|
|
|
554
635
|
|
|
555
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
556
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
557
|
-
display_name: str = Field(alias="displayName")
|
|
558
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
559
|
-
default=None
|
|
560
|
-
)
|
|
561
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
565
|
-
pass
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
569
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
570
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
571
|
-
|
|
572
|
-
|
|
573
636
|
class PlanFragment(BaseModel):
|
|
574
637
|
id: str
|
|
575
638
|
ref_id: str = Field(alias="refId")
|
|
@@ -618,191 +681,45 @@ class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
|
618
681
|
pass
|
|
619
682
|
|
|
620
683
|
|
|
621
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
622
|
-
pass
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
626
|
-
pass
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
630
|
-
pass
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
class PlanFragmentPrices(PriceFragment):
|
|
634
|
-
pass
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
638
|
-
pass
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
642
|
-
duration: float
|
|
643
|
-
units: TrialPeriodUnits
|
|
644
|
-
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
645
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
646
|
-
alias="trialEndBehavior", default=None
|
|
647
|
-
)
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
651
|
-
limit: float
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
class SubscriptionFutureUpdateData(BaseModel):
|
|
655
|
-
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
656
|
-
alias="subscriptionScheduleType"
|
|
657
|
-
)
|
|
658
|
-
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
659
|
-
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
660
|
-
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
661
|
-
alias="targetPackage", default=None
|
|
662
|
-
)
|
|
663
|
-
schedule_variables: Optional[
|
|
664
|
-
Annotated[
|
|
665
|
-
Union[
|
|
666
|
-
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
667
|
-
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
668
|
-
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
669
|
-
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
670
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
671
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
672
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
673
|
-
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
674
|
-
],
|
|
675
|
-
Field(discriminator="typename__"),
|
|
676
|
-
]
|
|
677
|
-
] = Field(alias="scheduleVariables", default=None)
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
681
|
-
id: str
|
|
682
|
-
ref_id: str = Field(alias="refId")
|
|
683
|
-
display_name: str = Field(alias="displayName")
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
687
|
-
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
688
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
689
|
-
new_quantity: float = Field(alias="newQuantity")
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
693
|
-
BaseModel
|
|
694
|
-
):
|
|
695
|
-
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
696
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
697
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
701
|
-
BaseModel
|
|
702
|
-
):
|
|
703
|
-
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
704
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
708
|
-
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
712
|
-
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
713
|
-
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
714
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
715
|
-
billable_features: Optional[
|
|
716
|
-
List[
|
|
717
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
718
|
-
]
|
|
719
|
-
] = Field(alias="billableFeatures", default=None)
|
|
720
|
-
addons: Optional[
|
|
721
|
-
List[
|
|
722
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
723
|
-
]
|
|
724
|
-
] = Field(default=None)
|
|
725
|
-
price_overrides: Optional[
|
|
726
|
-
List[
|
|
727
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
728
|
-
]
|
|
729
|
-
] = Field(alias="priceOverrides", default=None)
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
733
|
-
BaseModel
|
|
734
|
-
):
|
|
735
|
-
feature_id: str = Field(alias="featureId")
|
|
736
|
-
quantity: float
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
740
|
-
BaseModel
|
|
741
|
-
):
|
|
742
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
743
|
-
quantity: float
|
|
684
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
685
|
+
pass
|
|
744
686
|
|
|
745
687
|
|
|
746
|
-
class
|
|
747
|
-
|
|
748
|
-
):
|
|
749
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
750
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
751
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
688
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
689
|
+
pass
|
|
752
690
|
|
|
753
691
|
|
|
754
|
-
class
|
|
755
|
-
|
|
756
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
757
|
-
change_type: PlanChangeType = Field(alias="changeType")
|
|
758
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
759
|
-
billable_features: Optional[
|
|
760
|
-
List[
|
|
761
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
762
|
-
]
|
|
763
|
-
] = Field(alias="billableFeatures", default=None)
|
|
764
|
-
addons: Optional[
|
|
765
|
-
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
766
|
-
] = Field(default=None)
|
|
767
|
-
price_overrides: Optional[
|
|
768
|
-
List[
|
|
769
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
770
|
-
]
|
|
771
|
-
] = Field(alias="priceOverrides", default=None)
|
|
692
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
693
|
+
pass
|
|
772
694
|
|
|
773
695
|
|
|
774
|
-
class
|
|
775
|
-
|
|
776
|
-
):
|
|
777
|
-
feature_id: str = Field(alias="featureId")
|
|
778
|
-
quantity: float
|
|
696
|
+
class PlanFragmentPrices(PriceFragment):
|
|
697
|
+
pass
|
|
779
698
|
|
|
780
699
|
|
|
781
|
-
class
|
|
782
|
-
|
|
783
|
-
quantity: float
|
|
700
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
701
|
+
pass
|
|
784
702
|
|
|
785
703
|
|
|
786
|
-
class
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
704
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
705
|
+
duration: float
|
|
706
|
+
units: TrialPeriodUnits
|
|
707
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
708
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
709
|
+
alias="trialEndBehavior", default=None
|
|
710
|
+
)
|
|
792
711
|
|
|
793
712
|
|
|
794
|
-
class
|
|
795
|
-
|
|
796
|
-
):
|
|
797
|
-
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
798
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
799
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
713
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
714
|
+
limit: float
|
|
800
715
|
|
|
801
716
|
|
|
802
|
-
class
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
717
|
+
class CustomerResourceFragment(BaseModel):
|
|
718
|
+
resource_id: str = Field(alias="resourceId")
|
|
719
|
+
|
|
720
|
+
|
|
721
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
722
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
806
723
|
|
|
807
724
|
|
|
808
725
|
class SubscriptionFragment(BaseModel):
|
|
@@ -914,6 +831,89 @@ class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragm
|
|
|
914
831
|
pass
|
|
915
832
|
|
|
916
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
|
+
entitlement_updated_at: Optional[Any] = Field(
|
|
869
|
+
alias="entitlementUpdatedAt", default=None
|
|
870
|
+
)
|
|
871
|
+
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
872
|
+
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
873
|
+
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
874
|
+
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
875
|
+
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
876
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
877
|
+
alias="resetPeriod", default=None
|
|
878
|
+
)
|
|
879
|
+
reset_period_configuration: Optional[
|
|
880
|
+
Annotated[
|
|
881
|
+
Union[
|
|
882
|
+
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
883
|
+
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
884
|
+
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
885
|
+
],
|
|
886
|
+
Field(discriminator="typename__"),
|
|
887
|
+
]
|
|
888
|
+
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
889
|
+
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
890
|
+
|
|
891
|
+
|
|
892
|
+
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
893
|
+
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
894
|
+
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
895
|
+
alias="monthlyAccordingTo", default=None
|
|
896
|
+
)
|
|
897
|
+
|
|
898
|
+
|
|
899
|
+
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
900
|
+
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
901
|
+
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
902
|
+
alias="weeklyAccordingTo", default=None
|
|
903
|
+
)
|
|
904
|
+
|
|
905
|
+
|
|
906
|
+
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
907
|
+
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
908
|
+
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
909
|
+
alias="yearlyAccordingTo", default=None
|
|
910
|
+
)
|
|
911
|
+
|
|
912
|
+
|
|
913
|
+
class EntitlementFragmentFeature(FeatureFragment):
|
|
914
|
+
pass
|
|
915
|
+
|
|
916
|
+
|
|
917
917
|
class ApplySubscriptionFragment(BaseModel):
|
|
918
918
|
subscription: Optional["ApplySubscriptionFragmentSubscription"] = Field(
|
|
919
919
|
default=None
|
|
@@ -1439,6 +1439,13 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1439
1439
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1440
1440
|
|
|
1441
1441
|
|
|
1442
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1443
|
+
addon_id: str = Field(alias="addonId")
|
|
1444
|
+
description: Optional[str] = Field(default=None)
|
|
1445
|
+
display_name: str = Field(alias="displayName")
|
|
1446
|
+
quantity: int
|
|
1447
|
+
|
|
1448
|
+
|
|
1442
1449
|
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1443
1450
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1444
1451
|
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
@@ -1466,13 +1473,6 @@ class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
|
1466
1473
|
)
|
|
1467
1474
|
|
|
1468
1475
|
|
|
1469
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1470
|
-
addon_id: str = Field(alias="addonId")
|
|
1471
|
-
description: Optional[str] = Field(default=None)
|
|
1472
|
-
display_name: str = Field(alias="displayName")
|
|
1473
|
-
quantity: int
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
1476
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1477
1477
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1478
1478
|
plan_id: str = Field(alias="planId")
|
|
@@ -1796,39 +1796,6 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1796
1796
|
description: Optional[str] = Field(default=None)
|
|
1797
1797
|
|
|
1798
1798
|
|
|
1799
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1800
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1801
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1802
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1803
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1804
|
-
alias="resetPeriod", default=None
|
|
1805
|
-
)
|
|
1806
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1807
|
-
alias="hiddenFromWidgets", default=None
|
|
1808
|
-
)
|
|
1809
|
-
display_name_override: Optional[str] = Field(
|
|
1810
|
-
alias="displayNameOverride", default=None
|
|
1811
|
-
)
|
|
1812
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1813
|
-
default=None
|
|
1814
|
-
)
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1818
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1819
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1820
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1821
|
-
feature_units_plural: Optional[str] = Field(
|
|
1822
|
-
alias="featureUnitsPlural", default=None
|
|
1823
|
-
)
|
|
1824
|
-
display_name: str = Field(alias="displayName")
|
|
1825
|
-
description: Optional[str] = Field(default=None)
|
|
1826
|
-
ref_id: str = Field(alias="refId")
|
|
1827
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1828
|
-
alias="additionalMetaData", default=None
|
|
1829
|
-
)
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
1799
|
class MockPaywallPriceFragment(BaseModel):
|
|
1833
1800
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1834
1801
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1863,6 +1830,39 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1863
1830
|
display_name: str = Field(alias="displayName")
|
|
1864
1831
|
|
|
1865
1832
|
|
|
1833
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1834
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1835
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1836
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1837
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1838
|
+
alias="resetPeriod", default=None
|
|
1839
|
+
)
|
|
1840
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1841
|
+
alias="hiddenFromWidgets", default=None
|
|
1842
|
+
)
|
|
1843
|
+
display_name_override: Optional[str] = Field(
|
|
1844
|
+
alias="displayNameOverride", default=None
|
|
1845
|
+
)
|
|
1846
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1847
|
+
default=None
|
|
1848
|
+
)
|
|
1849
|
+
|
|
1850
|
+
|
|
1851
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1852
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1853
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1854
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1855
|
+
feature_units_plural: Optional[str] = Field(
|
|
1856
|
+
alias="featureUnitsPlural", default=None
|
|
1857
|
+
)
|
|
1858
|
+
display_name: str = Field(alias="displayName")
|
|
1859
|
+
description: Optional[str] = Field(default=None)
|
|
1860
|
+
ref_id: str = Field(alias="refId")
|
|
1861
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1862
|
+
alias="additionalMetaData", default=None
|
|
1863
|
+
)
|
|
1864
|
+
|
|
1865
|
+
|
|
1866
1866
|
class MockPaywallAddonFragment(BaseModel):
|
|
1867
1867
|
ref_id: str = Field(alias="refId")
|
|
1868
1868
|
display_name: str = Field(alias="displayName")
|
|
@@ -2836,22 +2836,22 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2836
2836
|
AddonDependencyFragment.model_rebuild()
|
|
2837
2837
|
PackageEntitlementFragment.model_rebuild()
|
|
2838
2838
|
PriceTierFragment.model_rebuild()
|
|
2839
|
-
OveragePriceFragment.model_rebuild()
|
|
2840
2839
|
PriceFragment.model_rebuild()
|
|
2840
|
+
OveragePriceFragment.model_rebuild()
|
|
2841
2841
|
AddonFragment.model_rebuild()
|
|
2842
|
-
FeatureFragment.model_rebuild()
|
|
2843
|
-
EntitlementFragment.model_rebuild()
|
|
2844
2842
|
TotalPriceFragment.model_rebuild()
|
|
2845
|
-
CustomerResourceFragment.model_rebuild()
|
|
2846
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2847
2843
|
SlimCustomerFragment.model_rebuild()
|
|
2848
|
-
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2849
2844
|
SubscriptionInvoiceFragment.model_rebuild()
|
|
2850
|
-
|
|
2845
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2846
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2851
2847
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2848
|
+
ProductFragment.model_rebuild()
|
|
2852
2849
|
PlanFragment.model_rebuild()
|
|
2853
|
-
|
|
2850
|
+
CustomerResourceFragment.model_rebuild()
|
|
2851
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2854
2852
|
SubscriptionFragment.model_rebuild()
|
|
2853
|
+
FeatureFragment.model_rebuild()
|
|
2854
|
+
EntitlementFragment.model_rebuild()
|
|
2855
2855
|
ApplySubscriptionFragment.model_rebuild()
|
|
2856
2856
|
FontVariantFragment.model_rebuild()
|
|
2857
2857
|
TypographyConfigurationFragment.model_rebuild()
|
|
@@ -2865,8 +2865,8 @@ CustomerPortalConfigurationFragment.model_rebuild()
|
|
|
2865
2865
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2866
2866
|
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2867
2867
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2868
|
-
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2869
2868
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2869
|
+
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2870
2870
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2871
2871
|
CustomerPortalFragment.model_rebuild()
|
|
2872
2872
|
CustomerStatisticsFragment.model_rebuild()
|
|
@@ -2877,8 +2877,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
2877
2877
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
2878
2878
|
LayoutConfigurationFragment.model_rebuild()
|
|
2879
2879
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
2880
|
-
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2881
2880
|
MockPaywallPriceFragment.model_rebuild()
|
|
2881
|
+
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2882
2882
|
MockPaywallAddonFragment.model_rebuild()
|
|
2883
2883
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2884
2884
|
MockPaywallPlanFragment.model_rebuild()
|
|
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=Ax7idhOxqqwhmzBPImea0R-KRcq7j5EQNVAqUFbMl_8,3551
|
|
|
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=wCRFlHAm9ckf0ssK3Pq_95sxC2fQze5zc6B1zPFKnOE,103354
|
|
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.457.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
165
|
+
stigg_api_client_v2-2.457.0.dist-info/METADATA,sha256=CLX4VMZJjvlvy6o6iQ5AxWB_c5A-2t0oTek61kaK0vY,2258
|
|
166
|
+
stigg_api_client_v2-2.457.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
167
|
+
stigg_api_client_v2-2.457.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|