stigg-api-client-v2 2.303.0__py3-none-any.whl → 2.303.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 +332 -332
- stigg/generated/input_types.py +1 -0
- {stigg_api_client_v2-2.303.0.dist-info → stigg_api_client_v2-2.303.1.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.303.0.dist-info → stigg_api_client_v2-2.303.1.dist-info}/RECORD +6 -6
- {stigg_api_client_v2-2.303.0.dist-info → stigg_api_client_v2-2.303.1.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.303.0.dist-info → stigg_api_client_v2-2.303.1.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -79,29 +79,33 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
79
79
|
currency: Currency
|
|
80
80
|
|
|
81
81
|
|
|
82
|
-
class
|
|
82
|
+
class PriceFragment(BaseModel):
|
|
83
83
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
84
84
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
85
|
+
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
85
86
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
87
|
+
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
88
|
+
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
86
89
|
billing_country_code: Optional[str] = Field(
|
|
87
90
|
alias="billingCountryCode", default=None
|
|
88
91
|
)
|
|
89
|
-
price: Optional["
|
|
92
|
+
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
90
93
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
91
|
-
tiers: Optional[List["
|
|
92
|
-
feature: Optional["
|
|
94
|
+
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
95
|
+
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
96
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
93
97
|
|
|
94
98
|
|
|
95
|
-
class
|
|
99
|
+
class PriceFragmentPrice(BaseModel):
|
|
96
100
|
amount: float
|
|
97
101
|
currency: Currency
|
|
98
102
|
|
|
99
103
|
|
|
100
|
-
class
|
|
104
|
+
class PriceFragmentTiers(PriceTierFragment):
|
|
101
105
|
pass
|
|
102
106
|
|
|
103
107
|
|
|
104
|
-
class
|
|
108
|
+
class PriceFragmentFeature(BaseModel):
|
|
105
109
|
ref_id: str = Field(alias="refId")
|
|
106
110
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
107
111
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -111,33 +115,29 @@ class OveragePriceFragmentFeature(BaseModel):
|
|
|
111
115
|
description: Optional[str] = Field(default=None)
|
|
112
116
|
|
|
113
117
|
|
|
114
|
-
class
|
|
118
|
+
class OveragePriceFragment(BaseModel):
|
|
115
119
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
116
120
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
117
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
118
121
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
119
|
-
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
120
|
-
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
121
122
|
billing_country_code: Optional[str] = Field(
|
|
122
123
|
alias="billingCountryCode", default=None
|
|
123
124
|
)
|
|
124
|
-
price: Optional["
|
|
125
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
125
126
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
126
|
-
tiers: Optional[List["
|
|
127
|
-
feature: Optional["
|
|
128
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
127
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
128
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
129
129
|
|
|
130
130
|
|
|
131
|
-
class
|
|
131
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
132
132
|
amount: float
|
|
133
133
|
currency: Currency
|
|
134
134
|
|
|
135
135
|
|
|
136
|
-
class
|
|
136
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
137
137
|
pass
|
|
138
138
|
|
|
139
139
|
|
|
140
|
-
class
|
|
140
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
141
141
|
ref_id: str = Field(alias="refId")
|
|
142
142
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
143
143
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -215,170 +215,87 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
215
215
|
pass
|
|
216
216
|
|
|
217
217
|
|
|
218
|
-
class
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
)
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
alias="targetPackage", default=None
|
|
218
|
+
class FeatureFragment(BaseModel):
|
|
219
|
+
typename__: str = Field(alias="__typename")
|
|
220
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
221
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
222
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
223
|
+
feature_units_plural: Optional[str] = Field(
|
|
224
|
+
alias="featureUnitsPlural", default=None
|
|
226
225
|
)
|
|
227
|
-
|
|
228
|
-
Annotated[
|
|
229
|
-
Union[
|
|
230
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
231
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
232
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
233
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
234
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
235
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
236
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
237
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
238
|
-
],
|
|
239
|
-
Field(discriminator="typename__"),
|
|
240
|
-
]
|
|
241
|
-
] = Field(alias="scheduleVariables", default=None)
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
245
|
-
id: str
|
|
246
|
-
ref_id: str = Field(alias="refId")
|
|
226
|
+
description: Optional[str] = Field(default=None)
|
|
247
227
|
display_name: str = Field(alias="displayName")
|
|
228
|
+
ref_id: str = Field(alias="refId")
|
|
229
|
+
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
230
|
+
alias="unitTransformation", default=None
|
|
231
|
+
)
|
|
248
232
|
|
|
249
233
|
|
|
250
|
-
class
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
new_quantity: float = Field(alias="newQuantity")
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
257
|
-
BaseModel
|
|
258
|
-
):
|
|
259
|
-
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
260
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
261
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
265
|
-
BaseModel
|
|
266
|
-
):
|
|
267
|
-
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
268
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
272
|
-
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
276
|
-
BaseModel
|
|
277
|
-
):
|
|
278
|
-
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
279
|
-
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
280
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
281
|
-
billable_features: Optional[
|
|
282
|
-
List[
|
|
283
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
284
|
-
]
|
|
285
|
-
] = Field(alias="billableFeatures", default=None)
|
|
286
|
-
addons: Optional[
|
|
287
|
-
List[
|
|
288
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
289
|
-
]
|
|
290
|
-
] = Field(default=None)
|
|
291
|
-
price_overrides: Optional[
|
|
292
|
-
List[
|
|
293
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
294
|
-
]
|
|
295
|
-
] = Field(alias="priceOverrides", default=None)
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
299
|
-
BaseModel
|
|
300
|
-
):
|
|
301
|
-
feature_id: str = Field(alias="featureId")
|
|
302
|
-
quantity: float
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
306
|
-
BaseModel
|
|
307
|
-
):
|
|
308
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
309
|
-
quantity: float
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
313
|
-
BaseModel
|
|
314
|
-
):
|
|
315
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
316
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
317
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
234
|
+
class FeatureFragmentUnitTransformation(BaseModel):
|
|
235
|
+
divide: float
|
|
236
|
+
round: UnitTransformationRound
|
|
318
237
|
|
|
319
238
|
|
|
320
|
-
class
|
|
321
|
-
typename__:
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
239
|
+
class EntitlementFragment(BaseModel):
|
|
240
|
+
typename__: str = Field(alias="__typename")
|
|
241
|
+
is_granted: bool = Field(alias="isGranted")
|
|
242
|
+
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
243
|
+
alias="accessDeniedReason", default=None
|
|
244
|
+
)
|
|
245
|
+
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
246
|
+
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
247
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
248
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
249
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
250
|
+
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
251
|
+
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
252
|
+
entitlement_updated_at: Optional[Any] = Field(
|
|
253
|
+
alias="entitlementUpdatedAt", default=None
|
|
254
|
+
)
|
|
255
|
+
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
256
|
+
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
257
|
+
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
258
|
+
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
259
|
+
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
260
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
261
|
+
alias="resetPeriod", default=None
|
|
262
|
+
)
|
|
263
|
+
reset_period_configuration: Optional[
|
|
264
|
+
Annotated[
|
|
265
|
+
Union[
|
|
266
|
+
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
267
|
+
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
268
|
+
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
269
|
+
],
|
|
270
|
+
Field(discriminator="typename__"),
|
|
338
271
|
]
|
|
339
|
-
] = Field(alias="
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
343
|
-
BaseModel
|
|
344
|
-
):
|
|
345
|
-
feature_id: str = Field(alias="featureId")
|
|
346
|
-
quantity: float
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
350
|
-
BaseModel
|
|
351
|
-
):
|
|
352
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
353
|
-
quantity: float
|
|
272
|
+
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
273
|
+
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
354
274
|
|
|
355
275
|
|
|
356
|
-
class
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
276
|
+
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
277
|
+
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
278
|
+
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
279
|
+
alias="monthlyAccordingTo", default=None
|
|
280
|
+
)
|
|
362
281
|
|
|
363
282
|
|
|
364
|
-
class
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
283
|
+
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
284
|
+
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
285
|
+
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
286
|
+
alias="weeklyAccordingTo", default=None
|
|
287
|
+
)
|
|
370
288
|
|
|
371
289
|
|
|
372
|
-
class
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
290
|
+
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
291
|
+
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
292
|
+
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
293
|
+
alias="yearlyAccordingTo", default=None
|
|
294
|
+
)
|
|
378
295
|
|
|
379
296
|
|
|
380
|
-
class
|
|
381
|
-
|
|
297
|
+
class EntitlementFragmentFeature(FeatureFragment):
|
|
298
|
+
pass
|
|
382
299
|
|
|
383
300
|
|
|
384
301
|
class TotalPriceFragment(BaseModel):
|
|
@@ -542,66 +459,224 @@ class SubscriptionInvoiceFragment(BaseModel):
|
|
|
542
459
|
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
543
460
|
|
|
544
461
|
|
|
462
|
+
class SlimCustomerFragment(BaseModel):
|
|
463
|
+
id: str
|
|
464
|
+
name: Optional[str] = Field(default=None)
|
|
465
|
+
email: Optional[str] = Field(default=None)
|
|
466
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
467
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
468
|
+
ref_id: str = Field(alias="refId")
|
|
469
|
+
customer_id: str = Field(alias="customerId")
|
|
470
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
471
|
+
additional_meta_data: Optional[Any] = Field(
|
|
472
|
+
alias="additionalMetaData", default=None
|
|
473
|
+
)
|
|
474
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
475
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
476
|
+
)
|
|
477
|
+
|
|
478
|
+
|
|
479
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
480
|
+
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
481
|
+
alias="subscriptionScheduleType"
|
|
482
|
+
)
|
|
483
|
+
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
484
|
+
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
485
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
486
|
+
alias="targetPackage", default=None
|
|
487
|
+
)
|
|
488
|
+
schedule_variables: Optional[
|
|
489
|
+
Annotated[
|
|
490
|
+
Union[
|
|
491
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
492
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
493
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
494
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
495
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
496
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
497
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
498
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
499
|
+
],
|
|
500
|
+
Field(discriminator="typename__"),
|
|
501
|
+
]
|
|
502
|
+
] = Field(alias="scheduleVariables", default=None)
|
|
503
|
+
|
|
504
|
+
|
|
505
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
506
|
+
id: str
|
|
507
|
+
ref_id: str = Field(alias="refId")
|
|
508
|
+
display_name: str = Field(alias="displayName")
|
|
509
|
+
|
|
510
|
+
|
|
511
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
512
|
+
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
513
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
514
|
+
new_quantity: float = Field(alias="newQuantity")
|
|
515
|
+
|
|
516
|
+
|
|
517
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
518
|
+
BaseModel
|
|
519
|
+
):
|
|
520
|
+
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
521
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
522
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
523
|
+
|
|
524
|
+
|
|
525
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
526
|
+
BaseModel
|
|
527
|
+
):
|
|
528
|
+
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
529
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
530
|
+
|
|
531
|
+
|
|
532
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
533
|
+
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
534
|
+
|
|
535
|
+
|
|
536
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
537
|
+
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
538
|
+
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
539
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
540
|
+
billable_features: Optional[
|
|
541
|
+
List[
|
|
542
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
543
|
+
]
|
|
544
|
+
] = Field(alias="billableFeatures", default=None)
|
|
545
|
+
addons: Optional[
|
|
546
|
+
List[
|
|
547
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
548
|
+
]
|
|
549
|
+
] = Field(default=None)
|
|
550
|
+
price_overrides: Optional[
|
|
551
|
+
List[
|
|
552
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
553
|
+
]
|
|
554
|
+
] = Field(alias="priceOverrides", default=None)
|
|
555
|
+
|
|
556
|
+
|
|
557
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
558
|
+
BaseModel
|
|
559
|
+
):
|
|
560
|
+
feature_id: str = Field(alias="featureId")
|
|
561
|
+
quantity: float
|
|
562
|
+
|
|
563
|
+
|
|
564
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
565
|
+
BaseModel
|
|
566
|
+
):
|
|
567
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
568
|
+
quantity: float
|
|
569
|
+
|
|
570
|
+
|
|
571
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
572
|
+
BaseModel
|
|
573
|
+
):
|
|
574
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
575
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
576
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
577
|
+
|
|
578
|
+
|
|
579
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
580
|
+
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
581
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
582
|
+
change_type: PlanChangeType = Field(alias="changeType")
|
|
583
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
584
|
+
billable_features: Optional[
|
|
585
|
+
List[
|
|
586
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
587
|
+
]
|
|
588
|
+
] = Field(alias="billableFeatures", default=None)
|
|
589
|
+
addons: Optional[
|
|
590
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
591
|
+
] = Field(default=None)
|
|
592
|
+
price_overrides: Optional[
|
|
593
|
+
List[
|
|
594
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
595
|
+
]
|
|
596
|
+
] = Field(alias="priceOverrides", default=None)
|
|
597
|
+
|
|
598
|
+
|
|
599
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
600
|
+
BaseModel
|
|
601
|
+
):
|
|
602
|
+
feature_id: str = Field(alias="featureId")
|
|
603
|
+
quantity: float
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
607
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
608
|
+
quantity: float
|
|
609
|
+
|
|
610
|
+
|
|
611
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
612
|
+
BaseModel
|
|
613
|
+
):
|
|
614
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
615
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
616
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
617
|
+
|
|
618
|
+
|
|
619
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
620
|
+
BaseModel
|
|
621
|
+
):
|
|
622
|
+
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
623
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
624
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
625
|
+
|
|
626
|
+
|
|
627
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
628
|
+
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
629
|
+
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
630
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
631
|
+
|
|
632
|
+
|
|
545
633
|
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
546
634
|
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
547
635
|
|
|
548
636
|
|
|
549
|
-
class
|
|
550
|
-
|
|
551
|
-
name: Optional[str] = Field(default=None)
|
|
552
|
-
email: Optional[str] = Field(default=None)
|
|
553
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
554
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
555
|
-
ref_id: str = Field(alias="refId")
|
|
556
|
-
customer_id: str = Field(alias="customerId")
|
|
557
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
558
|
-
additional_meta_data: Optional[Any] = Field(
|
|
559
|
-
alias="additionalMetaData", default=None
|
|
560
|
-
)
|
|
561
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
562
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
563
|
-
)
|
|
637
|
+
class CustomerResourceFragment(BaseModel):
|
|
638
|
+
resource_id: str = Field(alias="resourceId")
|
|
564
639
|
|
|
565
640
|
|
|
566
|
-
class
|
|
641
|
+
class SubscriptionScheduledUpdateData(BaseModel):
|
|
567
642
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
568
643
|
alias="subscriptionScheduleType"
|
|
569
644
|
)
|
|
570
645
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
571
646
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
572
|
-
target_package: Optional["
|
|
647
|
+
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
573
648
|
alias="targetPackage", default=None
|
|
574
649
|
)
|
|
575
650
|
schedule_variables: Optional[
|
|
576
651
|
Annotated[
|
|
577
652
|
Union[
|
|
578
|
-
"
|
|
579
|
-
"
|
|
580
|
-
"
|
|
581
|
-
"
|
|
582
|
-
"
|
|
583
|
-
"
|
|
584
|
-
"
|
|
585
|
-
"
|
|
653
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
654
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
655
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
656
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
657
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
658
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
659
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
660
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
586
661
|
],
|
|
587
662
|
Field(discriminator="typename__"),
|
|
588
663
|
]
|
|
589
664
|
] = Field(alias="scheduleVariables", default=None)
|
|
590
665
|
|
|
591
666
|
|
|
592
|
-
class
|
|
667
|
+
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
593
668
|
id: str
|
|
594
669
|
ref_id: str = Field(alias="refId")
|
|
595
670
|
display_name: str = Field(alias="displayName")
|
|
596
671
|
|
|
597
672
|
|
|
598
|
-
class
|
|
673
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
599
674
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
600
675
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
601
676
|
new_quantity: float = Field(alias="newQuantity")
|
|
602
677
|
|
|
603
678
|
|
|
604
|
-
class
|
|
679
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
605
680
|
BaseModel
|
|
606
681
|
):
|
|
607
682
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -609,53 +684,55 @@ class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVaria
|
|
|
609
684
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
610
685
|
|
|
611
686
|
|
|
612
|
-
class
|
|
687
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
613
688
|
BaseModel
|
|
614
689
|
):
|
|
615
690
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
616
691
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
617
692
|
|
|
618
693
|
|
|
619
|
-
class
|
|
694
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
620
695
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
621
696
|
|
|
622
697
|
|
|
623
|
-
class
|
|
698
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
699
|
+
BaseModel
|
|
700
|
+
):
|
|
624
701
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
625
702
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
626
703
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
627
704
|
billable_features: Optional[
|
|
628
705
|
List[
|
|
629
|
-
"
|
|
706
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
630
707
|
]
|
|
631
708
|
] = Field(alias="billableFeatures", default=None)
|
|
632
709
|
addons: Optional[
|
|
633
710
|
List[
|
|
634
|
-
"
|
|
711
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
635
712
|
]
|
|
636
713
|
] = Field(default=None)
|
|
637
714
|
price_overrides: Optional[
|
|
638
715
|
List[
|
|
639
|
-
"
|
|
716
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
640
717
|
]
|
|
641
718
|
] = Field(alias="priceOverrides", default=None)
|
|
642
719
|
|
|
643
720
|
|
|
644
|
-
class
|
|
721
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
645
722
|
BaseModel
|
|
646
723
|
):
|
|
647
724
|
feature_id: str = Field(alias="featureId")
|
|
648
725
|
quantity: float
|
|
649
726
|
|
|
650
727
|
|
|
651
|
-
class
|
|
728
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
652
729
|
BaseModel
|
|
653
730
|
):
|
|
654
731
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
655
732
|
quantity: float
|
|
656
733
|
|
|
657
734
|
|
|
658
|
-
class
|
|
735
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
659
736
|
BaseModel
|
|
660
737
|
):
|
|
661
738
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -663,39 +740,43 @@ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPrice
|
|
|
663
740
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
664
741
|
|
|
665
742
|
|
|
666
|
-
class
|
|
743
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
667
744
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
668
745
|
plan_ref_id: str = Field(alias="planRefId")
|
|
669
746
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
670
747
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
671
748
|
billable_features: Optional[
|
|
672
749
|
List[
|
|
673
|
-
"
|
|
750
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
674
751
|
]
|
|
675
752
|
] = Field(alias="billableFeatures", default=None)
|
|
676
753
|
addons: Optional[
|
|
677
|
-
List[
|
|
754
|
+
List[
|
|
755
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
756
|
+
]
|
|
678
757
|
] = Field(default=None)
|
|
679
758
|
price_overrides: Optional[
|
|
680
759
|
List[
|
|
681
|
-
"
|
|
760
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
682
761
|
]
|
|
683
762
|
] = Field(alias="priceOverrides", default=None)
|
|
684
763
|
|
|
685
764
|
|
|
686
|
-
class
|
|
765
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
687
766
|
BaseModel
|
|
688
767
|
):
|
|
689
768
|
feature_id: str = Field(alias="featureId")
|
|
690
769
|
quantity: float
|
|
691
770
|
|
|
692
771
|
|
|
693
|
-
class
|
|
772
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
773
|
+
BaseModel
|
|
774
|
+
):
|
|
694
775
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
695
776
|
quantity: float
|
|
696
777
|
|
|
697
778
|
|
|
698
|
-
class
|
|
779
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
699
780
|
BaseModel
|
|
700
781
|
):
|
|
701
782
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -703,7 +784,7 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverr
|
|
|
703
784
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
704
785
|
|
|
705
786
|
|
|
706
|
-
class
|
|
787
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
707
788
|
BaseModel
|
|
708
789
|
):
|
|
709
790
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -711,7 +792,9 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariab
|
|
|
711
792
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
712
793
|
|
|
713
794
|
|
|
714
|
-
class
|
|
795
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
796
|
+
BaseModel
|
|
797
|
+
):
|
|
715
798
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
716
799
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
717
800
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
@@ -826,89 +909,6 @@ class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragm
|
|
|
826
909
|
pass
|
|
827
910
|
|
|
828
911
|
|
|
829
|
-
class FeatureFragment(BaseModel):
|
|
830
|
-
typename__: str = Field(alias="__typename")
|
|
831
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
832
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
833
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
834
|
-
feature_units_plural: Optional[str] = Field(
|
|
835
|
-
alias="featureUnitsPlural", default=None
|
|
836
|
-
)
|
|
837
|
-
description: Optional[str] = Field(default=None)
|
|
838
|
-
display_name: str = Field(alias="displayName")
|
|
839
|
-
ref_id: str = Field(alias="refId")
|
|
840
|
-
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
841
|
-
alias="unitTransformation", default=None
|
|
842
|
-
)
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
class FeatureFragmentUnitTransformation(BaseModel):
|
|
846
|
-
divide: float
|
|
847
|
-
round: UnitTransformationRound
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
class EntitlementFragment(BaseModel):
|
|
851
|
-
typename__: str = Field(alias="__typename")
|
|
852
|
-
is_granted: bool = Field(alias="isGranted")
|
|
853
|
-
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
854
|
-
alias="accessDeniedReason", default=None
|
|
855
|
-
)
|
|
856
|
-
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
857
|
-
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
858
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
859
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
860
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
861
|
-
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
862
|
-
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
863
|
-
entitlement_updated_at: Optional[Any] = Field(
|
|
864
|
-
alias="entitlementUpdatedAt", default=None
|
|
865
|
-
)
|
|
866
|
-
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
867
|
-
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
868
|
-
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
869
|
-
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
870
|
-
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
871
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
872
|
-
alias="resetPeriod", default=None
|
|
873
|
-
)
|
|
874
|
-
reset_period_configuration: Optional[
|
|
875
|
-
Annotated[
|
|
876
|
-
Union[
|
|
877
|
-
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
878
|
-
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
879
|
-
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
880
|
-
],
|
|
881
|
-
Field(discriminator="typename__"),
|
|
882
|
-
]
|
|
883
|
-
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
884
|
-
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
888
|
-
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
889
|
-
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
890
|
-
alias="monthlyAccordingTo", default=None
|
|
891
|
-
)
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
895
|
-
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
896
|
-
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
897
|
-
alias="weeklyAccordingTo", default=None
|
|
898
|
-
)
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
902
|
-
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
903
|
-
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
904
|
-
alias="yearlyAccordingTo", default=None
|
|
905
|
-
)
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
class EntitlementFragmentFeature(FeatureFragment):
|
|
909
|
-
pass
|
|
910
|
-
|
|
911
|
-
|
|
912
912
|
class ApplySubscriptionFragment(BaseModel):
|
|
913
913
|
subscription: Optional["ApplySubscriptionFragmentSubscription"] = Field(
|
|
914
914
|
default=None
|
|
@@ -1259,11 +1259,31 @@ class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
|
1259
1259
|
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1260
1260
|
|
|
1261
1261
|
|
|
1262
|
-
class
|
|
1263
|
-
|
|
1264
|
-
|
|
1262
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1263
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1264
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1265
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1266
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1267
|
+
default=None
|
|
1268
|
+
)
|
|
1269
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1270
|
+
default=None
|
|
1271
|
+
)
|
|
1272
|
+
|
|
1273
|
+
|
|
1274
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1275
|
+
amount: float
|
|
1276
|
+
currency: Currency
|
|
1277
|
+
|
|
1278
|
+
|
|
1279
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1280
|
+
id: str
|
|
1281
|
+
ref_id: str = Field(alias="refId")
|
|
1265
1282
|
display_name: str = Field(alias="displayName")
|
|
1266
|
-
|
|
1283
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1284
|
+
feature_units_plural: Optional[str] = Field(
|
|
1285
|
+
alias="featureUnitsPlural", default=None
|
|
1286
|
+
)
|
|
1267
1287
|
|
|
1268
1288
|
|
|
1269
1289
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
@@ -1435,31 +1455,11 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1435
1455
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1436
1456
|
|
|
1437
1457
|
|
|
1438
|
-
class
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1442
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1443
|
-
default=None
|
|
1444
|
-
)
|
|
1445
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1446
|
-
default=None
|
|
1447
|
-
)
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1451
|
-
amount: float
|
|
1452
|
-
currency: Currency
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1456
|
-
id: str
|
|
1457
|
-
ref_id: str = Field(alias="refId")
|
|
1458
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1459
|
+
addon_id: str = Field(alias="addonId")
|
|
1460
|
+
description: Optional[str] = Field(default=None)
|
|
1458
1461
|
display_name: str = Field(alias="displayName")
|
|
1459
|
-
|
|
1460
|
-
feature_units_plural: Optional[str] = Field(
|
|
1461
|
-
alias="featureUnitsPlural", default=None
|
|
1462
|
-
)
|
|
1462
|
+
quantity: int
|
|
1463
1463
|
|
|
1464
1464
|
|
|
1465
1465
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
@@ -2763,23 +2763,23 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2763
2763
|
|
|
2764
2764
|
AddonDependencyFragment.model_rebuild()
|
|
2765
2765
|
PriceTierFragment.model_rebuild()
|
|
2766
|
-
OveragePriceFragment.model_rebuild()
|
|
2767
2766
|
PriceFragment.model_rebuild()
|
|
2767
|
+
OveragePriceFragment.model_rebuild()
|
|
2768
2768
|
PackageEntitlementFragment.model_rebuild()
|
|
2769
2769
|
AddonFragment.model_rebuild()
|
|
2770
|
-
|
|
2771
|
-
|
|
2770
|
+
FeatureFragment.model_rebuild()
|
|
2771
|
+
EntitlementFragment.model_rebuild()
|
|
2772
2772
|
TotalPriceFragment.model_rebuild()
|
|
2773
2773
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2774
2774
|
ProductFragment.model_rebuild()
|
|
2775
2775
|
PlanFragment.model_rebuild()
|
|
2776
2776
|
SubscriptionInvoiceFragment.model_rebuild()
|
|
2777
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2778
2777
|
SlimCustomerFragment.model_rebuild()
|
|
2779
2778
|
SubscriptionFutureUpdateData.model_rebuild()
|
|
2779
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2780
|
+
CustomerResourceFragment.model_rebuild()
|
|
2781
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2780
2782
|
SubscriptionFragment.model_rebuild()
|
|
2781
|
-
FeatureFragment.model_rebuild()
|
|
2782
|
-
EntitlementFragment.model_rebuild()
|
|
2783
2783
|
ApplySubscriptionFragment.model_rebuild()
|
|
2784
2784
|
FontVariantFragment.model_rebuild()
|
|
2785
2785
|
TypographyConfigurationFragment.model_rebuild()
|
|
@@ -2792,9 +2792,9 @@ CustomerPortalBillingInformationFragment.model_rebuild()
|
|
|
2792
2792
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2793
2793
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2794
2794
|
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2795
|
-
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2796
|
-
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2797
2795
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2796
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2797
|
+
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2798
2798
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2799
2799
|
CustomerPortalFragment.model_rebuild()
|
|
2800
2800
|
CustomerStatisticsFragment.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -4651,6 +4651,7 @@ class ZuoraCredentialsInput(BaseModel):
|
|
|
4651
4651
|
base_url: str = Field(alias="baseUrl")
|
|
4652
4652
|
client_id: str = Field(alias="clientId")
|
|
4653
4653
|
client_secret: str = Field(alias="clientSecret")
|
|
4654
|
+
payment_page_id: Optional[str] = Field(alias="paymentPageId", default=None)
|
|
4654
4655
|
stripe_publishable_key: Optional[str] = Field(
|
|
4655
4656
|
alias="stripePublishableKey", default=None
|
|
4656
4657
|
)
|
|
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=pc9LCxX-JHp05iOwlZI6QCpzXH5kinzBRAvgTHMBXyE,3433
|
|
|
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=dWcM6DA9BqI7Zh0Mp8GXNdFaroGTx0qBYIIj3Mar8Ko,100553
|
|
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
|
|
@@ -144,7 +144,7 @@ stigg/generated/grant_promotional_entitlements.py,sha256=72PRYuqecL-0SkWb7deygkh
|
|
|
144
144
|
stigg/generated/import_customer.py,sha256=yEtrEB7T-Aykv3AUl-rAQz2XL6hKL0j-7JL3h-xi87o,403
|
|
145
145
|
stigg/generated/import_customer_bulk.py,sha256=miLn2ScWlPOH1IipltY5Vgd-ZQ_BkBk9t3-EsLvU5ZQ,284
|
|
146
146
|
stigg/generated/import_subscriptions_bulk.py,sha256=QgitpZkjE7eBhP1o5W0PTVAbKOvz61dNoeBAWupIcgU,297
|
|
147
|
-
stigg/generated/input_types.py,sha256=
|
|
147
|
+
stigg/generated/input_types.py,sha256=m8rA6TdE1Q8LynQM6PH9lNLoy4mQPuffBO3hmD-OpMA,191204
|
|
148
148
|
stigg/generated/migrate_subscription_to_latest.py,sha256=qQDwH7EodYAeJFb62IIl-MAEB5MbthgCJ0v1RMxpdYk,516
|
|
149
149
|
stigg/generated/preview_next_invoice.py,sha256=MiQ4Gv7Ve1Hv60xhaQi7uj82aq0xLP2UB-gjvcQdOL8,478
|
|
150
150
|
stigg/generated/preview_subscription.py,sha256=Qo2vlFs7sFzqaE8J_e-EHTRfLvG46lko-dcJMxDSCR0,475
|
|
@@ -160,7 +160,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
|
|
|
160
160
|
stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
|
|
161
161
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
162
162
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
163
|
-
stigg_api_client_v2-2.303.
|
|
164
|
-
stigg_api_client_v2-2.303.
|
|
165
|
-
stigg_api_client_v2-2.303.
|
|
166
|
-
stigg_api_client_v2-2.303.
|
|
163
|
+
stigg_api_client_v2-2.303.1.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.303.1.dist-info/METADATA,sha256=txBLdqgZczlKfZ1XDdhMiNOUaQKoPXguDhatvAG4-NU,2258
|
|
165
|
+
stigg_api_client_v2-2.303.1.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.303.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|