stigg-api-client-v2 3.97.0__py3-none-any.whl → 3.98.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/__init__.py +6 -0
- stigg/generated/async_client.py +12 -0
- stigg/generated/client.py +12 -0
- stigg/generated/fragments.py +370 -353
- {stigg_api_client_v2-3.97.0.dist-info → stigg_api_client_v2-3.98.1.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-3.97.0.dist-info → stigg_api_client_v2-3.98.1.dist-info}/RECORD +8 -8
- {stigg_api_client_v2-3.97.0.dist-info → stigg_api_client_v2-3.98.1.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-3.97.0.dist-info → stigg_api_client_v2-3.98.1.dist-info}/WHEEL +0 -0
stigg/generated/__init__.py
CHANGED
|
@@ -201,6 +201,7 @@ from .fragments import (
|
|
|
201
201
|
CreditsBalanceSummaryFragmentBalancesCurrency,
|
|
202
202
|
CreditsBalanceSummaryFragmentBalancesCurrencyUnits,
|
|
203
203
|
CreditUsageFragment,
|
|
204
|
+
CreditUsageFragmentCurrency,
|
|
204
205
|
CreditUsageFragmentSeries,
|
|
205
206
|
CreditUsageFragmentSeriesPoints,
|
|
206
207
|
CustomerFragment,
|
|
@@ -380,6 +381,8 @@ from .fragments import (
|
|
|
380
381
|
ProvisionSubscriptionFragmentEntitlements,
|
|
381
382
|
ProvisionSubscriptionFragmentSubscription,
|
|
382
383
|
ReportUsageFragment,
|
|
384
|
+
SlimCustomCurrencyFragment,
|
|
385
|
+
SlimCustomCurrencyFragmentUnits,
|
|
383
386
|
SlimCustomerFragment,
|
|
384
387
|
SlimSubscriptionFragment,
|
|
385
388
|
SlimSubscriptionFragmentAddons,
|
|
@@ -1201,6 +1204,7 @@ __all__ = [
|
|
|
1201
1204
|
"CreditLedgerInput",
|
|
1202
1205
|
"CreditRateInput",
|
|
1203
1206
|
"CreditUsageFragment",
|
|
1207
|
+
"CreditUsageFragmentCurrency",
|
|
1204
1208
|
"CreditUsageFragmentSeries",
|
|
1205
1209
|
"CreditUsageFragmentSeriesPoints",
|
|
1206
1210
|
"CreditUsageInput",
|
|
@@ -1768,6 +1772,8 @@ __all__ = [
|
|
|
1768
1772
|
"SetPlanCompatiblePackageGroup",
|
|
1769
1773
|
"SetPlanCompatiblePackageGroupOptions",
|
|
1770
1774
|
"SetPlanCompatiblePackageGroups",
|
|
1775
|
+
"SlimCustomCurrencyFragment",
|
|
1776
|
+
"SlimCustomCurrencyFragmentUnits",
|
|
1771
1777
|
"SlimCustomerFragment",
|
|
1772
1778
|
"SlimSubscriptionFragment",
|
|
1773
1779
|
"SlimSubscriptionFragmentAddons",
|
stigg/generated/async_client.py
CHANGED
|
@@ -6833,6 +6833,18 @@ class AsyncClient(AsyncBaseClient):
|
|
|
6833
6833
|
value
|
|
6834
6834
|
}
|
|
6835
6835
|
}
|
|
6836
|
+
currency {
|
|
6837
|
+
...SlimCustomCurrencyFragment
|
|
6838
|
+
}
|
|
6839
|
+
}
|
|
6840
|
+
|
|
6841
|
+
fragment SlimCustomCurrencyFragment on SlimCustomCurrency {
|
|
6842
|
+
currencyId
|
|
6843
|
+
displayName
|
|
6844
|
+
units {
|
|
6845
|
+
singular
|
|
6846
|
+
plural
|
|
6847
|
+
}
|
|
6836
6848
|
}
|
|
6837
6849
|
"""
|
|
6838
6850
|
)
|
stigg/generated/client.py
CHANGED
|
@@ -6827,6 +6827,18 @@ class Client(BaseClient):
|
|
|
6827
6827
|
value
|
|
6828
6828
|
}
|
|
6829
6829
|
}
|
|
6830
|
+
currency {
|
|
6831
|
+
...SlimCustomCurrencyFragment
|
|
6832
|
+
}
|
|
6833
|
+
}
|
|
6834
|
+
|
|
6835
|
+
fragment SlimCustomCurrencyFragment on SlimCustomCurrency {
|
|
6836
|
+
currencyId
|
|
6837
|
+
displayName
|
|
6838
|
+
units {
|
|
6839
|
+
singular
|
|
6840
|
+
plural
|
|
6841
|
+
}
|
|
6830
6842
|
}
|
|
6831
6843
|
"""
|
|
6832
6844
|
)
|
stigg/generated/fragments.py
CHANGED
|
@@ -82,41 +82,29 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
82
82
|
currency: Currency
|
|
83
83
|
|
|
84
84
|
|
|
85
|
-
class
|
|
85
|
+
class OveragePriceFragment(BaseModel):
|
|
86
86
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
87
87
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
88
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
89
88
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
90
|
-
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
91
|
-
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
92
89
|
billing_country_code: Optional[str] = Field(
|
|
93
90
|
alias="billingCountryCode", default=None
|
|
94
91
|
)
|
|
95
|
-
price: Optional["
|
|
96
|
-
credit_rate: Optional["PriceFragmentCreditRate"] = Field(
|
|
97
|
-
alias="creditRate", default=None
|
|
98
|
-
)
|
|
92
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
99
93
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
100
|
-
tiers: Optional[List["
|
|
101
|
-
feature: Optional["
|
|
102
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
94
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
95
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
103
96
|
|
|
104
97
|
|
|
105
|
-
class
|
|
98
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
106
99
|
amount: float
|
|
107
100
|
currency: Currency
|
|
108
101
|
|
|
109
102
|
|
|
110
|
-
class
|
|
111
|
-
amount: float
|
|
112
|
-
custom_currency_id: Any = Field(alias="customCurrencyId")
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
class PriceFragmentTiers(PriceTierFragment):
|
|
103
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
116
104
|
pass
|
|
117
105
|
|
|
118
106
|
|
|
119
|
-
class
|
|
107
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
120
108
|
ref_id: str = Field(alias="refId")
|
|
121
109
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
122
110
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -161,29 +149,41 @@ class PackageEntitlementFragmentFeature(BaseModel):
|
|
|
161
149
|
)
|
|
162
150
|
|
|
163
151
|
|
|
164
|
-
class
|
|
152
|
+
class PriceFragment(BaseModel):
|
|
165
153
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
166
154
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
155
|
+
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
167
156
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
157
|
+
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
158
|
+
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
168
159
|
billing_country_code: Optional[str] = Field(
|
|
169
160
|
alias="billingCountryCode", default=None
|
|
170
161
|
)
|
|
171
|
-
price: Optional["
|
|
162
|
+
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
163
|
+
credit_rate: Optional["PriceFragmentCreditRate"] = Field(
|
|
164
|
+
alias="creditRate", default=None
|
|
165
|
+
)
|
|
172
166
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
173
|
-
tiers: Optional[List["
|
|
174
|
-
feature: Optional["
|
|
167
|
+
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
168
|
+
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
169
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
175
170
|
|
|
176
171
|
|
|
177
|
-
class
|
|
172
|
+
class PriceFragmentPrice(BaseModel):
|
|
178
173
|
amount: float
|
|
179
174
|
currency: Currency
|
|
180
175
|
|
|
181
176
|
|
|
182
|
-
class
|
|
177
|
+
class PriceFragmentCreditRate(BaseModel):
|
|
178
|
+
amount: float
|
|
179
|
+
custom_currency_id: Any = Field(alias="customCurrencyId")
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
class PriceFragmentTiers(PriceTierFragment):
|
|
183
183
|
pass
|
|
184
184
|
|
|
185
185
|
|
|
186
|
-
class
|
|
186
|
+
class PriceFragmentFeature(BaseModel):
|
|
187
187
|
ref_id: str = Field(alias="refId")
|
|
188
188
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
189
189
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -231,89 +231,8 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
231
231
|
pass
|
|
232
232
|
|
|
233
233
|
|
|
234
|
-
class
|
|
235
|
-
|
|
236
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
237
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
238
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
239
|
-
feature_units_plural: Optional[str] = Field(
|
|
240
|
-
alias="featureUnitsPlural", default=None
|
|
241
|
-
)
|
|
242
|
-
description: Optional[str] = Field(default=None)
|
|
243
|
-
display_name: str = Field(alias="displayName")
|
|
244
|
-
ref_id: str = Field(alias="refId")
|
|
245
|
-
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
246
|
-
alias="unitTransformation", default=None
|
|
247
|
-
)
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
class FeatureFragmentUnitTransformation(BaseModel):
|
|
251
|
-
divide: float
|
|
252
|
-
round: UnitTransformationRound
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
class EntitlementFragment(BaseModel):
|
|
256
|
-
typename__: str = Field(alias="__typename")
|
|
257
|
-
is_granted: bool = Field(alias="isGranted")
|
|
258
|
-
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
259
|
-
alias="accessDeniedReason", default=None
|
|
260
|
-
)
|
|
261
|
-
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
262
|
-
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
263
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
264
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
265
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
266
|
-
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
267
|
-
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
268
|
-
requested_values: Optional[List[str]] = Field(alias="requestedValues", default=None)
|
|
269
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
270
|
-
entitlement_updated_at: Optional[Any] = Field(
|
|
271
|
-
alias="entitlementUpdatedAt", default=None
|
|
272
|
-
)
|
|
273
|
-
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
274
|
-
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
275
|
-
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
276
|
-
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
277
|
-
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
278
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
279
|
-
alias="resetPeriod", default=None
|
|
280
|
-
)
|
|
281
|
-
reset_period_configuration: Optional[
|
|
282
|
-
Annotated[
|
|
283
|
-
Union[
|
|
284
|
-
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
285
|
-
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
286
|
-
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
287
|
-
],
|
|
288
|
-
Field(discriminator="typename__"),
|
|
289
|
-
]
|
|
290
|
-
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
291
|
-
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
295
|
-
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
296
|
-
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
297
|
-
alias="monthlyAccordingTo", default=None
|
|
298
|
-
)
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
302
|
-
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
303
|
-
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
304
|
-
alias="weeklyAccordingTo", default=None
|
|
305
|
-
)
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
309
|
-
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
310
|
-
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
311
|
-
alias="yearlyAccordingTo", default=None
|
|
312
|
-
)
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
class EntitlementFragmentFeature(FeatureFragment):
|
|
316
|
-
pass
|
|
234
|
+
class CustomerResourceFragment(BaseModel):
|
|
235
|
+
resource_id: str = Field(alias="resourceId")
|
|
317
236
|
|
|
318
237
|
|
|
319
238
|
class TotalPriceFragment(BaseModel):
|
|
@@ -331,49 +250,45 @@ class TotalPriceFragmentTotal(BaseModel):
|
|
|
331
250
|
currency: Currency
|
|
332
251
|
|
|
333
252
|
|
|
334
|
-
class
|
|
335
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
class SubscriptionScheduledUpdateData(BaseModel):
|
|
253
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
339
254
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
340
255
|
alias="subscriptionScheduleType"
|
|
341
256
|
)
|
|
342
257
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
343
258
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
344
|
-
target_package: Optional["
|
|
259
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
345
260
|
alias="targetPackage", default=None
|
|
346
261
|
)
|
|
347
262
|
schedule_variables: Optional[
|
|
348
263
|
Annotated[
|
|
349
264
|
Union[
|
|
350
|
-
"
|
|
351
|
-
"
|
|
352
|
-
"
|
|
353
|
-
"
|
|
354
|
-
"
|
|
355
|
-
"
|
|
356
|
-
"
|
|
357
|
-
"
|
|
265
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
266
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
267
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
268
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
269
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
270
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
271
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
272
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
358
273
|
],
|
|
359
274
|
Field(discriminator="typename__"),
|
|
360
275
|
]
|
|
361
276
|
] = Field(alias="scheduleVariables", default=None)
|
|
362
277
|
|
|
363
278
|
|
|
364
|
-
class
|
|
279
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
365
280
|
id: Any
|
|
366
281
|
ref_id: str = Field(alias="refId")
|
|
367
282
|
display_name: str = Field(alias="displayName")
|
|
368
283
|
|
|
369
284
|
|
|
370
|
-
class
|
|
285
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
371
286
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
372
287
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
373
288
|
new_quantity: float = Field(alias="newQuantity")
|
|
374
289
|
|
|
375
290
|
|
|
376
|
-
class
|
|
291
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
377
292
|
BaseModel
|
|
378
293
|
):
|
|
379
294
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -381,55 +296,53 @@ class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVa
|
|
|
381
296
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
382
297
|
|
|
383
298
|
|
|
384
|
-
class
|
|
299
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
385
300
|
BaseModel
|
|
386
301
|
):
|
|
387
302
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
388
303
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
389
304
|
|
|
390
305
|
|
|
391
|
-
class
|
|
306
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
392
307
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
393
308
|
|
|
394
309
|
|
|
395
|
-
class
|
|
396
|
-
BaseModel
|
|
397
|
-
):
|
|
310
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
398
311
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
399
312
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
400
313
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
401
314
|
billable_features: Optional[
|
|
402
315
|
List[
|
|
403
|
-
"
|
|
316
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
404
317
|
]
|
|
405
318
|
] = Field(alias="billableFeatures", default=None)
|
|
406
319
|
addons: Optional[
|
|
407
320
|
List[
|
|
408
|
-
"
|
|
321
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
409
322
|
]
|
|
410
323
|
] = Field(default=None)
|
|
411
324
|
price_overrides: Optional[
|
|
412
325
|
List[
|
|
413
|
-
"
|
|
326
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
414
327
|
]
|
|
415
328
|
] = Field(alias="priceOverrides", default=None)
|
|
416
329
|
|
|
417
330
|
|
|
418
|
-
class
|
|
331
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
419
332
|
BaseModel
|
|
420
333
|
):
|
|
421
334
|
feature_id: str = Field(alias="featureId")
|
|
422
335
|
quantity: float
|
|
423
336
|
|
|
424
337
|
|
|
425
|
-
class
|
|
338
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
426
339
|
BaseModel
|
|
427
340
|
):
|
|
428
341
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
429
342
|
quantity: float
|
|
430
343
|
|
|
431
344
|
|
|
432
|
-
class
|
|
345
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
433
346
|
BaseModel
|
|
434
347
|
):
|
|
435
348
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -437,43 +350,39 @@ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPr
|
|
|
437
350
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
438
351
|
|
|
439
352
|
|
|
440
|
-
class
|
|
353
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
441
354
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
442
355
|
plan_ref_id: str = Field(alias="planRefId")
|
|
443
356
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
444
357
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
445
358
|
billable_features: Optional[
|
|
446
359
|
List[
|
|
447
|
-
"
|
|
360
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
448
361
|
]
|
|
449
362
|
] = Field(alias="billableFeatures", default=None)
|
|
450
363
|
addons: Optional[
|
|
451
|
-
List[
|
|
452
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
453
|
-
]
|
|
364
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
454
365
|
] = Field(default=None)
|
|
455
366
|
price_overrides: Optional[
|
|
456
367
|
List[
|
|
457
|
-
"
|
|
368
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
458
369
|
]
|
|
459
370
|
] = Field(alias="priceOverrides", default=None)
|
|
460
371
|
|
|
461
372
|
|
|
462
|
-
class
|
|
373
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
463
374
|
BaseModel
|
|
464
375
|
):
|
|
465
376
|
feature_id: str = Field(alias="featureId")
|
|
466
377
|
quantity: float
|
|
467
378
|
|
|
468
379
|
|
|
469
|
-
class
|
|
470
|
-
BaseModel
|
|
471
|
-
):
|
|
380
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
472
381
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
473
382
|
quantity: float
|
|
474
383
|
|
|
475
384
|
|
|
476
|
-
class
|
|
385
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
477
386
|
BaseModel
|
|
478
387
|
):
|
|
479
388
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -481,7 +390,7 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOv
|
|
|
481
390
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
482
391
|
|
|
483
392
|
|
|
484
|
-
class
|
|
393
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
485
394
|
BaseModel
|
|
486
395
|
):
|
|
487
396
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -489,53 +398,55 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVar
|
|
|
489
398
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
490
399
|
|
|
491
400
|
|
|
492
|
-
class
|
|
493
|
-
BaseModel
|
|
494
|
-
):
|
|
401
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
495
402
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
496
403
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
497
404
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
498
405
|
|
|
499
406
|
|
|
500
|
-
class
|
|
407
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
408
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
class SubscriptionScheduledUpdateData(BaseModel):
|
|
501
412
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
502
413
|
alias="subscriptionScheduleType"
|
|
503
414
|
)
|
|
504
415
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
505
416
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
506
|
-
target_package: Optional["
|
|
417
|
+
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
507
418
|
alias="targetPackage", default=None
|
|
508
419
|
)
|
|
509
420
|
schedule_variables: Optional[
|
|
510
421
|
Annotated[
|
|
511
422
|
Union[
|
|
512
|
-
"
|
|
513
|
-
"
|
|
514
|
-
"
|
|
515
|
-
"
|
|
516
|
-
"
|
|
517
|
-
"
|
|
518
|
-
"
|
|
519
|
-
"
|
|
423
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
424
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
425
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
426
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
427
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
428
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
429
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
430
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
520
431
|
],
|
|
521
432
|
Field(discriminator="typename__"),
|
|
522
433
|
]
|
|
523
434
|
] = Field(alias="scheduleVariables", default=None)
|
|
524
435
|
|
|
525
436
|
|
|
526
|
-
class
|
|
437
|
+
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
527
438
|
id: Any
|
|
528
439
|
ref_id: str = Field(alias="refId")
|
|
529
440
|
display_name: str = Field(alias="displayName")
|
|
530
441
|
|
|
531
442
|
|
|
532
|
-
class
|
|
443
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
533
444
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
534
445
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
535
446
|
new_quantity: float = Field(alias="newQuantity")
|
|
536
447
|
|
|
537
448
|
|
|
538
|
-
class
|
|
449
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
539
450
|
BaseModel
|
|
540
451
|
):
|
|
541
452
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -543,53 +454,55 @@ class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVaria
|
|
|
543
454
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
544
455
|
|
|
545
456
|
|
|
546
|
-
class
|
|
457
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
547
458
|
BaseModel
|
|
548
459
|
):
|
|
549
460
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
550
461
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
551
462
|
|
|
552
463
|
|
|
553
|
-
class
|
|
464
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
554
465
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
555
466
|
|
|
556
467
|
|
|
557
|
-
class
|
|
468
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
469
|
+
BaseModel
|
|
470
|
+
):
|
|
558
471
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
559
472
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
560
473
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
561
474
|
billable_features: Optional[
|
|
562
475
|
List[
|
|
563
|
-
"
|
|
476
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
564
477
|
]
|
|
565
478
|
] = Field(alias="billableFeatures", default=None)
|
|
566
479
|
addons: Optional[
|
|
567
480
|
List[
|
|
568
|
-
"
|
|
481
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
569
482
|
]
|
|
570
483
|
] = Field(default=None)
|
|
571
484
|
price_overrides: Optional[
|
|
572
485
|
List[
|
|
573
|
-
"
|
|
486
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
574
487
|
]
|
|
575
488
|
] = Field(alias="priceOverrides", default=None)
|
|
576
489
|
|
|
577
490
|
|
|
578
|
-
class
|
|
491
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
579
492
|
BaseModel
|
|
580
493
|
):
|
|
581
494
|
feature_id: str = Field(alias="featureId")
|
|
582
495
|
quantity: float
|
|
583
496
|
|
|
584
497
|
|
|
585
|
-
class
|
|
498
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
586
499
|
BaseModel
|
|
587
500
|
):
|
|
588
501
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
589
502
|
quantity: float
|
|
590
503
|
|
|
591
504
|
|
|
592
|
-
class
|
|
505
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
593
506
|
BaseModel
|
|
594
507
|
):
|
|
595
508
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -597,39 +510,43 @@ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPrice
|
|
|
597
510
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
598
511
|
|
|
599
512
|
|
|
600
|
-
class
|
|
513
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
601
514
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
602
515
|
plan_ref_id: str = Field(alias="planRefId")
|
|
603
516
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
604
517
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
605
518
|
billable_features: Optional[
|
|
606
519
|
List[
|
|
607
|
-
"
|
|
520
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
608
521
|
]
|
|
609
522
|
] = Field(alias="billableFeatures", default=None)
|
|
610
523
|
addons: Optional[
|
|
611
|
-
List[
|
|
524
|
+
List[
|
|
525
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
526
|
+
]
|
|
612
527
|
] = Field(default=None)
|
|
613
528
|
price_overrides: Optional[
|
|
614
529
|
List[
|
|
615
|
-
"
|
|
530
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
616
531
|
]
|
|
617
532
|
] = Field(alias="priceOverrides", default=None)
|
|
618
533
|
|
|
619
534
|
|
|
620
|
-
class
|
|
535
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
621
536
|
BaseModel
|
|
622
537
|
):
|
|
623
538
|
feature_id: str = Field(alias="featureId")
|
|
624
539
|
quantity: float
|
|
625
540
|
|
|
626
541
|
|
|
627
|
-
class
|
|
542
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
543
|
+
BaseModel
|
|
544
|
+
):
|
|
628
545
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
629
546
|
quantity: float
|
|
630
547
|
|
|
631
548
|
|
|
632
|
-
class
|
|
549
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
633
550
|
BaseModel
|
|
634
551
|
):
|
|
635
552
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -637,7 +554,7 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverr
|
|
|
637
554
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
638
555
|
|
|
639
556
|
|
|
640
|
-
class
|
|
557
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
641
558
|
BaseModel
|
|
642
559
|
):
|
|
643
560
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -645,31 +562,58 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariab
|
|
|
645
562
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
646
563
|
|
|
647
564
|
|
|
648
|
-
class
|
|
565
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
566
|
+
BaseModel
|
|
567
|
+
):
|
|
649
568
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
650
569
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
651
570
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
652
571
|
|
|
653
572
|
|
|
654
|
-
class
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
id: Any
|
|
660
|
-
name: Optional[str] = Field(default=None)
|
|
661
|
-
email: Optional[str] = Field(default=None)
|
|
662
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
573
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
574
|
+
billing_id: str = Field(alias="billingId")
|
|
575
|
+
status: SubscriptionInvoiceStatus
|
|
576
|
+
created_at: Any = Field(alias="createdAt")
|
|
577
|
+
due_date: Optional[Any] = Field(alias="dueDate", default=None)
|
|
663
578
|
updated_at: Any = Field(alias="updatedAt")
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
579
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
580
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
581
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
582
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
583
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
584
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
585
|
+
alias="billingReason", default=None
|
|
669
586
|
)
|
|
670
|
-
|
|
671
|
-
|
|
587
|
+
currency: Optional[str] = Field(default=None)
|
|
588
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
589
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
590
|
+
alias="subTotalExcludingTax", default=None
|
|
672
591
|
)
|
|
592
|
+
total: Optional[float] = Field(default=None)
|
|
593
|
+
total_excluding_tax: Optional[float] = Field(
|
|
594
|
+
alias="totalExcludingTax", default=None
|
|
595
|
+
)
|
|
596
|
+
tax: Optional[float] = Field(default=None)
|
|
597
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
598
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
599
|
+
|
|
600
|
+
|
|
601
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
602
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
603
|
+
display_name: str = Field(alias="displayName")
|
|
604
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
605
|
+
default=None
|
|
606
|
+
)
|
|
607
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
611
|
+
pass
|
|
612
|
+
|
|
613
|
+
|
|
614
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
615
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
616
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
673
617
|
|
|
674
618
|
|
|
675
619
|
class ProductFragment(BaseModel):
|
|
@@ -693,24 +637,6 @@ class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
|
693
637
|
display_name: str = Field(alias="displayName")
|
|
694
638
|
|
|
695
639
|
|
|
696
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
697
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
698
|
-
display_name: str = Field(alias="displayName")
|
|
699
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
700
|
-
default=None
|
|
701
|
-
)
|
|
702
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
706
|
-
pass
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
710
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
711
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
712
|
-
|
|
713
|
-
|
|
714
640
|
class PlanFragment(BaseModel):
|
|
715
641
|
id: Any
|
|
716
642
|
ref_id: str = Field(alias="refId")
|
|
@@ -792,32 +718,21 @@ class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
|
792
718
|
limit: float
|
|
793
719
|
|
|
794
720
|
|
|
795
|
-
class
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
721
|
+
class SlimCustomerFragment(BaseModel):
|
|
722
|
+
id: Any
|
|
723
|
+
name: Optional[str] = Field(default=None)
|
|
724
|
+
email: Optional[str] = Field(default=None)
|
|
725
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
800
726
|
updated_at: Any = Field(alias="updatedAt")
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
807
|
-
alias="billingReason", default=None
|
|
808
|
-
)
|
|
809
|
-
currency: Optional[str] = Field(default=None)
|
|
810
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
811
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
812
|
-
alias="subTotalExcludingTax", default=None
|
|
727
|
+
ref_id: str = Field(alias="refId")
|
|
728
|
+
customer_id: str = Field(alias="customerId")
|
|
729
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
730
|
+
additional_meta_data: Optional[Any] = Field(
|
|
731
|
+
alias="additionalMetaData", default=None
|
|
813
732
|
)
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
alias="totalExcludingTax", default=None
|
|
733
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
734
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
817
735
|
)
|
|
818
|
-
tax: Optional[float] = Field(default=None)
|
|
819
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
820
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
821
736
|
|
|
822
737
|
|
|
823
738
|
class SubscriptionFragment(BaseModel):
|
|
@@ -913,19 +828,104 @@ class SubscriptionFragmentAddons(BaseModel):
|
|
|
913
828
|
addon: "SubscriptionFragmentAddonsAddon"
|
|
914
829
|
|
|
915
830
|
|
|
916
|
-
class SubscriptionFragmentAddonsAddon(AddonFragment):
|
|
917
|
-
pass
|
|
831
|
+
class SubscriptionFragmentAddonsAddon(AddonFragment):
|
|
832
|
+
pass
|
|
833
|
+
|
|
834
|
+
|
|
835
|
+
class SubscriptionFragmentScheduledUpdates(SubscriptionScheduledUpdateData):
|
|
836
|
+
pass
|
|
837
|
+
|
|
838
|
+
|
|
839
|
+
class SubscriptionFragmentFutureUpdates(SubscriptionFutureUpdateData):
|
|
840
|
+
pass
|
|
841
|
+
|
|
842
|
+
|
|
843
|
+
class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragment):
|
|
844
|
+
pass
|
|
845
|
+
|
|
846
|
+
|
|
847
|
+
class FeatureFragment(BaseModel):
|
|
848
|
+
typename__: str = Field(alias="__typename")
|
|
849
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
850
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
851
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
852
|
+
feature_units_plural: Optional[str] = Field(
|
|
853
|
+
alias="featureUnitsPlural", default=None
|
|
854
|
+
)
|
|
855
|
+
description: Optional[str] = Field(default=None)
|
|
856
|
+
display_name: str = Field(alias="displayName")
|
|
857
|
+
ref_id: str = Field(alias="refId")
|
|
858
|
+
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
859
|
+
alias="unitTransformation", default=None
|
|
860
|
+
)
|
|
861
|
+
|
|
862
|
+
|
|
863
|
+
class FeatureFragmentUnitTransformation(BaseModel):
|
|
864
|
+
divide: float
|
|
865
|
+
round: UnitTransformationRound
|
|
866
|
+
|
|
867
|
+
|
|
868
|
+
class EntitlementFragment(BaseModel):
|
|
869
|
+
typename__: str = Field(alias="__typename")
|
|
870
|
+
is_granted: bool = Field(alias="isGranted")
|
|
871
|
+
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
872
|
+
alias="accessDeniedReason", default=None
|
|
873
|
+
)
|
|
874
|
+
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
875
|
+
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
876
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
877
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
878
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
879
|
+
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
880
|
+
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
881
|
+
requested_values: Optional[List[str]] = Field(alias="requestedValues", default=None)
|
|
882
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
883
|
+
entitlement_updated_at: Optional[Any] = Field(
|
|
884
|
+
alias="entitlementUpdatedAt", default=None
|
|
885
|
+
)
|
|
886
|
+
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
887
|
+
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
888
|
+
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
889
|
+
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
890
|
+
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
891
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
892
|
+
alias="resetPeriod", default=None
|
|
893
|
+
)
|
|
894
|
+
reset_period_configuration: Optional[
|
|
895
|
+
Annotated[
|
|
896
|
+
Union[
|
|
897
|
+
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
898
|
+
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
899
|
+
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
900
|
+
],
|
|
901
|
+
Field(discriminator="typename__"),
|
|
902
|
+
]
|
|
903
|
+
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
904
|
+
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
905
|
+
|
|
906
|
+
|
|
907
|
+
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
908
|
+
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
909
|
+
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
910
|
+
alias="monthlyAccordingTo", default=None
|
|
911
|
+
)
|
|
918
912
|
|
|
919
913
|
|
|
920
|
-
class
|
|
921
|
-
|
|
914
|
+
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
915
|
+
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
916
|
+
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
917
|
+
alias="weeklyAccordingTo", default=None
|
|
918
|
+
)
|
|
922
919
|
|
|
923
920
|
|
|
924
|
-
class
|
|
925
|
-
|
|
921
|
+
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
922
|
+
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
923
|
+
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
924
|
+
alias="yearlyAccordingTo", default=None
|
|
925
|
+
)
|
|
926
926
|
|
|
927
927
|
|
|
928
|
-
class
|
|
928
|
+
class EntitlementFragmentFeature(FeatureFragment):
|
|
929
929
|
pass
|
|
930
930
|
|
|
931
931
|
|
|
@@ -1006,45 +1006,6 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
1006
1006
|
)
|
|
1007
1007
|
|
|
1008
1008
|
|
|
1009
|
-
class StripeCheckoutCredentialsFragment(BaseModel):
|
|
1010
|
-
account_id: Optional[str] = Field(alias="accountId", default=None)
|
|
1011
|
-
setup_secret: str = Field(alias="setupSecret")
|
|
1012
|
-
public_key: Optional[str] = Field(alias="publicKey", default=None)
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
class ZuoraCheckoutCredentialsFragment(BaseModel):
|
|
1016
|
-
publishable_key: str = Field(alias="publishableKey")
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
1020
|
-
status: PromotionalEntitlementStatus
|
|
1021
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1022
|
-
feature_id: Any = Field(alias="featureId")
|
|
1023
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1024
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1025
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1026
|
-
alias="resetPeriod", default=None
|
|
1027
|
-
)
|
|
1028
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1029
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1030
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1034
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1035
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1036
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1037
|
-
feature_units_plural: Optional[str] = Field(
|
|
1038
|
-
alias="featureUnitsPlural", default=None
|
|
1039
|
-
)
|
|
1040
|
-
display_name: str = Field(alias="displayName")
|
|
1041
|
-
description: Optional[str] = Field(default=None)
|
|
1042
|
-
ref_id: str = Field(alias="refId")
|
|
1043
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1044
|
-
alias="additionalMetaData", default=None
|
|
1045
|
-
)
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
1009
|
class CouponFragment(BaseModel):
|
|
1049
1010
|
id: Any
|
|
1050
1011
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1079,6 +1040,35 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1079
1040
|
status: SyncStatus
|
|
1080
1041
|
|
|
1081
1042
|
|
|
1043
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
1044
|
+
status: PromotionalEntitlementStatus
|
|
1045
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1046
|
+
feature_id: Any = Field(alias="featureId")
|
|
1047
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1048
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1049
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1050
|
+
alias="resetPeriod", default=None
|
|
1051
|
+
)
|
|
1052
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1053
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1054
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1055
|
+
|
|
1056
|
+
|
|
1057
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1058
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1059
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1060
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1061
|
+
feature_units_plural: Optional[str] = Field(
|
|
1062
|
+
alias="featureUnitsPlural", default=None
|
|
1063
|
+
)
|
|
1064
|
+
display_name: str = Field(alias="displayName")
|
|
1065
|
+
description: Optional[str] = Field(default=None)
|
|
1066
|
+
ref_id: str = Field(alias="refId")
|
|
1067
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1068
|
+
alias="additionalMetaData", default=None
|
|
1069
|
+
)
|
|
1070
|
+
|
|
1071
|
+
|
|
1082
1072
|
class CustomerFragment(SlimCustomerFragment):
|
|
1083
1073
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1084
1074
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1137,6 +1127,16 @@ class CustomerFragmentPromotionalEntitlements(PromotionalEntitlementFragment):
|
|
|
1137
1127
|
pass
|
|
1138
1128
|
|
|
1139
1129
|
|
|
1130
|
+
class StripeCheckoutCredentialsFragment(BaseModel):
|
|
1131
|
+
account_id: Optional[str] = Field(alias="accountId", default=None)
|
|
1132
|
+
setup_secret: str = Field(alias="setupSecret")
|
|
1133
|
+
public_key: Optional[str] = Field(alias="publicKey", default=None)
|
|
1134
|
+
|
|
1135
|
+
|
|
1136
|
+
class ZuoraCheckoutCredentialsFragment(BaseModel):
|
|
1137
|
+
publishable_key: str = Field(alias="publishableKey")
|
|
1138
|
+
|
|
1139
|
+
|
|
1140
1140
|
class CheckoutStateFragment(BaseModel):
|
|
1141
1141
|
configuration: Optional["CheckoutStateFragmentConfiguration"] = Field(default=None)
|
|
1142
1142
|
setup_secret: str = Field(alias="setupSecret")
|
|
@@ -1235,8 +1235,20 @@ class CreditLedgerFragment(BaseModel):
|
|
|
1235
1235
|
credit_currency_id: str = Field(alias="creditCurrencyId")
|
|
1236
1236
|
|
|
1237
1237
|
|
|
1238
|
+
class SlimCustomCurrencyFragment(BaseModel):
|
|
1239
|
+
currency_id: str = Field(alias="currencyId")
|
|
1240
|
+
display_name: str = Field(alias="displayName")
|
|
1241
|
+
units: Optional["SlimCustomCurrencyFragmentUnits"] = Field(default=None)
|
|
1242
|
+
|
|
1243
|
+
|
|
1244
|
+
class SlimCustomCurrencyFragmentUnits(BaseModel):
|
|
1245
|
+
singular: str
|
|
1246
|
+
plural: str
|
|
1247
|
+
|
|
1248
|
+
|
|
1238
1249
|
class CreditUsageFragment(BaseModel):
|
|
1239
1250
|
series: List["CreditUsageFragmentSeries"]
|
|
1251
|
+
currency: Optional["CreditUsageFragmentCurrency"] = Field(default=None)
|
|
1240
1252
|
|
|
1241
1253
|
|
|
1242
1254
|
class CreditUsageFragmentSeries(BaseModel):
|
|
@@ -1251,6 +1263,10 @@ class CreditUsageFragmentSeriesPoints(BaseModel):
|
|
|
1251
1263
|
value: float
|
|
1252
1264
|
|
|
1253
1265
|
|
|
1266
|
+
class CreditUsageFragmentCurrency(SlimCustomCurrencyFragment):
|
|
1267
|
+
pass
|
|
1268
|
+
|
|
1269
|
+
|
|
1254
1270
|
class CreditsBalanceSummaryFragment(BaseModel):
|
|
1255
1271
|
customer_id: str = Field(alias="customerId")
|
|
1256
1272
|
balances: List["CreditsBalanceSummaryFragmentBalances"]
|
|
@@ -1381,6 +1397,58 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1381
1397
|
pass
|
|
1382
1398
|
|
|
1383
1399
|
|
|
1400
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1401
|
+
display_name: str = Field(alias="displayName")
|
|
1402
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1403
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1404
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1405
|
+
period: PromotionalEntitlementPeriod
|
|
1406
|
+
start_date: Any = Field(alias="startDate")
|
|
1407
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1408
|
+
|
|
1409
|
+
|
|
1410
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1411
|
+
addon_id: str = Field(alias="addonId")
|
|
1412
|
+
description: Optional[str] = Field(default=None)
|
|
1413
|
+
display_name: str = Field(alias="displayName")
|
|
1414
|
+
quantity: int
|
|
1415
|
+
|
|
1416
|
+
|
|
1417
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1418
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1419
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1420
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1421
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1422
|
+
default=None
|
|
1423
|
+
)
|
|
1424
|
+
credit_rate: Optional["CustomerPortalSubscriptionPriceFragmentCreditRate"] = Field(
|
|
1425
|
+
alias="creditRate", default=None
|
|
1426
|
+
)
|
|
1427
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1428
|
+
default=None
|
|
1429
|
+
)
|
|
1430
|
+
|
|
1431
|
+
|
|
1432
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1433
|
+
amount: float
|
|
1434
|
+
currency: Currency
|
|
1435
|
+
|
|
1436
|
+
|
|
1437
|
+
class CustomerPortalSubscriptionPriceFragmentCreditRate(BaseModel):
|
|
1438
|
+
amount: float
|
|
1439
|
+
custom_currency_id: Any = Field(alias="customCurrencyId")
|
|
1440
|
+
|
|
1441
|
+
|
|
1442
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1443
|
+
id: Any
|
|
1444
|
+
ref_id: str = Field(alias="refId")
|
|
1445
|
+
display_name: str = Field(alias="displayName")
|
|
1446
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1447
|
+
feature_units_plural: Optional[str] = Field(
|
|
1448
|
+
alias="featureUnitsPlural", default=None
|
|
1449
|
+
)
|
|
1450
|
+
|
|
1451
|
+
|
|
1384
1452
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1385
1453
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1386
1454
|
alias="subscriptionScheduleType"
|
|
@@ -1550,48 +1618,6 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1550
1618
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1551
1619
|
|
|
1552
1620
|
|
|
1553
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1554
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1555
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1556
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1557
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1558
|
-
default=None
|
|
1559
|
-
)
|
|
1560
|
-
credit_rate: Optional["CustomerPortalSubscriptionPriceFragmentCreditRate"] = Field(
|
|
1561
|
-
alias="creditRate", default=None
|
|
1562
|
-
)
|
|
1563
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1564
|
-
default=None
|
|
1565
|
-
)
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1569
|
-
amount: float
|
|
1570
|
-
currency: Currency
|
|
1571
|
-
|
|
1572
|
-
|
|
1573
|
-
class CustomerPortalSubscriptionPriceFragmentCreditRate(BaseModel):
|
|
1574
|
-
amount: float
|
|
1575
|
-
custom_currency_id: Any = Field(alias="customCurrencyId")
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1579
|
-
id: Any
|
|
1580
|
-
ref_id: str = Field(alias="refId")
|
|
1581
|
-
display_name: str = Field(alias="displayName")
|
|
1582
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1583
|
-
feature_units_plural: Optional[str] = Field(
|
|
1584
|
-
alias="featureUnitsPlural", default=None
|
|
1585
|
-
)
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1589
|
-
addon_id: str = Field(alias="addonId")
|
|
1590
|
-
description: Optional[str] = Field(default=None)
|
|
1591
|
-
display_name: str = Field(alias="displayName")
|
|
1592
|
-
quantity: int
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
1621
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1596
1622
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1597
1623
|
plan_id: str = Field(alias="planId")
|
|
@@ -1696,16 +1722,6 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1696
1722
|
pass
|
|
1697
1723
|
|
|
1698
1724
|
|
|
1699
|
-
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1700
|
-
display_name: str = Field(alias="displayName")
|
|
1701
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1702
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1703
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1704
|
-
period: PromotionalEntitlementPeriod
|
|
1705
|
-
start_date: Any = Field(alias="startDate")
|
|
1706
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
1725
|
class CustomerPortalFragment(BaseModel):
|
|
1710
1726
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1711
1727
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -2988,45 +3004,46 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2988
3004
|
|
|
2989
3005
|
AddonDependencyFragment.model_rebuild()
|
|
2990
3006
|
PriceTierFragment.model_rebuild()
|
|
2991
|
-
PriceFragment.model_rebuild()
|
|
2992
|
-
PackageEntitlementFragment.model_rebuild()
|
|
2993
3007
|
OveragePriceFragment.model_rebuild()
|
|
3008
|
+
PackageEntitlementFragment.model_rebuild()
|
|
3009
|
+
PriceFragment.model_rebuild()
|
|
2994
3010
|
AddonFragment.model_rebuild()
|
|
2995
|
-
|
|
2996
|
-
EntitlementFragment.model_rebuild()
|
|
3011
|
+
CustomerResourceFragment.model_rebuild()
|
|
2997
3012
|
TotalPriceFragment.model_rebuild()
|
|
3013
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2998
3014
|
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2999
3015
|
SubscriptionScheduledUpdateData.model_rebuild()
|
|
3000
|
-
|
|
3001
|
-
CustomerResourceFragment.model_rebuild()
|
|
3002
|
-
SlimCustomerFragment.model_rebuild()
|
|
3003
|
-
ProductFragment.model_rebuild()
|
|
3016
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
3004
3017
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
3018
|
+
ProductFragment.model_rebuild()
|
|
3005
3019
|
PlanFragment.model_rebuild()
|
|
3006
|
-
|
|
3020
|
+
SlimCustomerFragment.model_rebuild()
|
|
3007
3021
|
SubscriptionFragment.model_rebuild()
|
|
3022
|
+
FeatureFragment.model_rebuild()
|
|
3023
|
+
EntitlementFragment.model_rebuild()
|
|
3008
3024
|
ApplySubscriptionFragment.model_rebuild()
|
|
3009
3025
|
FontVariantFragment.model_rebuild()
|
|
3010
3026
|
TypographyConfigurationFragment.model_rebuild()
|
|
3011
3027
|
CheckoutConfigurationFragment.model_rebuild()
|
|
3012
|
-
StripeCheckoutCredentialsFragment.model_rebuild()
|
|
3013
|
-
ZuoraCheckoutCredentialsFragment.model_rebuild()
|
|
3014
|
-
PromotionalEntitlementFragment.model_rebuild()
|
|
3015
3028
|
CouponFragment.model_rebuild()
|
|
3029
|
+
PromotionalEntitlementFragment.model_rebuild()
|
|
3016
3030
|
CustomerFragment.model_rebuild()
|
|
3031
|
+
StripeCheckoutCredentialsFragment.model_rebuild()
|
|
3032
|
+
ZuoraCheckoutCredentialsFragment.model_rebuild()
|
|
3017
3033
|
CheckoutStateFragment.model_rebuild()
|
|
3018
3034
|
CreditGrantFragment.model_rebuild()
|
|
3019
3035
|
CreditLedgerFragment.model_rebuild()
|
|
3036
|
+
SlimCustomCurrencyFragment.model_rebuild()
|
|
3020
3037
|
CreditUsageFragment.model_rebuild()
|
|
3021
3038
|
CreditsBalanceSummaryFragment.model_rebuild()
|
|
3022
3039
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
3023
3040
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
3024
3041
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
3025
|
-
|
|
3026
|
-
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
3042
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
3027
3043
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
3044
|
+
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
3045
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
3028
3046
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
3029
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
3030
3047
|
CustomerPortalFragment.model_rebuild()
|
|
3031
3048
|
CustomerStatisticsFragment.model_rebuild()
|
|
3032
3049
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
|
@@ -106,16 +106,16 @@ stigg/_vendors/pydantic-2.6.4.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCe
|
|
|
106
106
|
stigg/_vendors/pydantic-2.6.4.dist-info/WHEEL,sha256=TJPnKdtrSue7xZ_AVGkp9YXcvDrobsjBds1du3Nx6dc,87
|
|
107
107
|
stigg/_vendors/pydantic-2.6.4.dist-info/licenses/LICENSE,sha256=qeGG88oWte74QxjnpwFyE1GgDLe4rjpDlLZ7SeNSnvM,1129
|
|
108
108
|
stigg/client.py,sha256=RWrVnxo9zHFXka8KJVE4sMgyek70ispQk0vqOINCvM0,8335
|
|
109
|
-
stigg/generated/__init__.py,sha256=
|
|
109
|
+
stigg/generated/__init__.py,sha256=STb1hHNRAqYRjYw8hZfTJ_c84_sNSL04XMZ5etKDiJE,78099
|
|
110
110
|
stigg/generated/apply_subscription.py,sha256=Vbs-QZZxN16pUpt3Hp7Jvvcc5o_8xwJK9oTLQQjH0ZA,451
|
|
111
111
|
stigg/generated/archive_customer.py,sha256=3N3iBiT2Vvzfb0ckV3o57A6lmJ_ef7JNPaMX_Jtcg6c,396
|
|
112
112
|
stigg/generated/async_base_client.py,sha256=zqd6IhYxpalyA6KQkeGhXgSurC0vXSwSWmSlM2zZ0VM,12593
|
|
113
|
-
stigg/generated/async_client.py,sha256=
|
|
113
|
+
stigg/generated/async_client.py,sha256=XQsxaqK0vv0e6kUhGsPrqnXYg-ZuJlqZQER5mHXDEac,191081
|
|
114
114
|
stigg/generated/base_client.py,sha256=nAto-nOqrOHFTLqdRy2ZDpT1afgsqCzf6hTeBh5MyPQ,6674
|
|
115
115
|
stigg/generated/base_model.py,sha256=0rs99bmZqPbltlPVMfhExeA5zD6ATQFaNZVsxGNonI4,635
|
|
116
116
|
stigg/generated/cancel_subscription.py,sha256=pKrMFmKjGIuWvnVCYQ8brWQO9_JeTnfScgGQjztuN-o,457
|
|
117
117
|
stigg/generated/cancel_subscription_updates.py,sha256=T1C9vyppzZi_91pEnIGkHUL3GEsvtf5EMwr1f01tjbM,241
|
|
118
|
-
stigg/generated/client.py,sha256=
|
|
118
|
+
stigg/generated/client.py,sha256=gWw8cgJE_ldeNWZjSCxdqwKxqOkKyj6knN1G21xg7lk,190358
|
|
119
119
|
stigg/generated/create_payment_session.py,sha256=VRPT8Bbvb_evFHMav9y_pXWHMVbkRy9csf5SJCCUARk,470
|
|
120
120
|
stigg/generated/create_subscription.py,sha256=vbpBJ_daXHcQDtvU3vbwSr2E7s4VGRHxqPavyTV3Mtk,457
|
|
121
121
|
stigg/generated/delegate_subscription_to_customer.py,sha256=0TgQDO0Hk-z7X7PGtqhvciqa8IjkToK9cpiX3Kqu_UY,561
|
|
@@ -124,7 +124,7 @@ stigg/generated/enums.py,sha256=1K6mEtm-zwrD9awYdLmovzADI6pMUzSOA2wi6_xhXQ8,3917
|
|
|
124
124
|
stigg/generated/estimate_subscription.py,sha256=c0_vg0A_Hi8fdjeGudWZ0WziUF9jcjX5rlRitGMAMaQ,479
|
|
125
125
|
stigg/generated/estimate_subscription_update.py,sha256=ZYIFqqHHDfzhrOn95QnMmPNTXZ7JrKWRlUFzk8fWwKA,528
|
|
126
126
|
stigg/generated/exceptions.py,sha256=OQu-ZYCCV4VyMWTd1HR8gIjIK2CrA_JMlFxqOAJugWY,2411
|
|
127
|
-
stigg/generated/fragments.py,sha256=
|
|
127
|
+
stigg/generated/fragments.py,sha256=26D_cX5cCOuZrIdnZdr-jT64KS09gIOqeAVc6PfMeOY,109870
|
|
128
128
|
stigg/generated/get_active_subscriptions.py,sha256=ngZ9jr8vzGI59wT8FhUFl46a8j9waoNjeZ1_lrcu2ww,513
|
|
129
129
|
stigg/generated/get_active_subscriptions_list.py,sha256=Awi9al2MXxdt_y7ZnWYZh8U3R9XiX50c7TyO4WZxyhw,541
|
|
130
130
|
stigg/generated/get_checkout_state.py,sha256=SAOXGAND879dwb7R5mr5LPZuPVuMUDwNR5M4mgmHv6w,409
|
|
@@ -171,7 +171,7 @@ stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9e
|
|
|
171
171
|
stigg/generated/unlink_promotional_entitlements_group.py,sha256=8UIRQ0CNvReRfX0LZmDYkRn9mMjZm9n41YG6-p7Z8qU,636
|
|
172
172
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
173
173
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
174
|
-
stigg_api_client_v2-3.
|
|
175
|
-
stigg_api_client_v2-3.
|
|
176
|
-
stigg_api_client_v2-3.
|
|
177
|
-
stigg_api_client_v2-3.
|
|
174
|
+
stigg_api_client_v2-3.98.1.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
175
|
+
stigg_api_client_v2-3.98.1.dist-info/METADATA,sha256=Yx3Aj5o2_ECG3JSaAZjxPRH2L76iDCEOFdh61VpIHVg,2257
|
|
176
|
+
stigg_api_client_v2-3.98.1.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
177
|
+
stigg_api_client_v2-3.98.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|