stigg-api-client-v2 3.120.0__py3-none-any.whl → 3.122.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of stigg-api-client-v2 might be problematic. Click here for more details.
- stigg/generated/fragments.py +507 -507
- stigg/generated/input_types.py +3 -1
- {stigg_api_client_v2-3.120.0.dist-info → stigg_api_client_v2-3.122.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-3.120.0.dist-info → stigg_api_client_v2-3.122.0.dist-info}/RECORD +6 -6
- {stigg_api_client_v2-3.120.0.dist-info → stigg_api_client_v2-3.122.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-3.120.0.dist-info → stigg_api_client_v2-3.122.0.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -62,41 +62,6 @@ class AddonDependencyFragment(BaseModel):
|
|
|
62
62
|
description: Optional[str] = Field(default=None)
|
|
63
63
|
|
|
64
64
|
|
|
65
|
-
class PackageEntitlementFragment(BaseModel):
|
|
66
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
67
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
68
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
69
|
-
feature_id: str = Field(alias="featureId")
|
|
70
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
71
|
-
alias="resetPeriod", default=None
|
|
72
|
-
)
|
|
73
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
74
|
-
alias="hiddenFromWidgets", default=None
|
|
75
|
-
)
|
|
76
|
-
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
77
|
-
display_name_override: Optional[str] = Field(
|
|
78
|
-
alias="displayNameOverride", default=None
|
|
79
|
-
)
|
|
80
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
81
|
-
is_granted: bool = Field(alias="isGranted")
|
|
82
|
-
feature: "PackageEntitlementFragmentFeature"
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
class PackageEntitlementFragmentFeature(BaseModel):
|
|
86
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
87
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
88
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
89
|
-
feature_units_plural: Optional[str] = Field(
|
|
90
|
-
alias="featureUnitsPlural", default=None
|
|
91
|
-
)
|
|
92
|
-
display_name: str = Field(alias="displayName")
|
|
93
|
-
description: Optional[str] = Field(default=None)
|
|
94
|
-
ref_id: str = Field(alias="refId")
|
|
95
|
-
additional_meta_data: Optional[Any] = Field(
|
|
96
|
-
alias="additionalMetaData", default=None
|
|
97
|
-
)
|
|
98
|
-
|
|
99
|
-
|
|
100
65
|
class PriceTierFragment(BaseModel):
|
|
101
66
|
up_to: Optional[float] = Field(alias="upTo", default=None)
|
|
102
67
|
unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
|
|
@@ -117,6 +82,38 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
117
82
|
currency: Currency
|
|
118
83
|
|
|
119
84
|
|
|
85
|
+
class OveragePriceFragment(BaseModel):
|
|
86
|
+
billing_model: BillingModel = Field(alias="billingModel")
|
|
87
|
+
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
88
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
89
|
+
billing_country_code: Optional[str] = Field(
|
|
90
|
+
alias="billingCountryCode", default=None
|
|
91
|
+
)
|
|
92
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
93
|
+
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
94
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
95
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
99
|
+
amount: float
|
|
100
|
+
currency: Currency
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
104
|
+
pass
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
108
|
+
ref_id: str = Field(alias="refId")
|
|
109
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
110
|
+
feature_units_plural: Optional[str] = Field(
|
|
111
|
+
alias="featureUnitsPlural", default=None
|
|
112
|
+
)
|
|
113
|
+
display_name: str = Field(alias="displayName")
|
|
114
|
+
description: Optional[str] = Field(default=None)
|
|
115
|
+
|
|
116
|
+
|
|
120
117
|
class PriceFragment(BaseModel):
|
|
121
118
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
122
119
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -162,36 +159,39 @@ class PriceFragmentFeature(BaseModel):
|
|
|
162
159
|
description: Optional[str] = Field(default=None)
|
|
163
160
|
|
|
164
161
|
|
|
165
|
-
class
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
162
|
+
class PackageEntitlementFragment(BaseModel):
|
|
163
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
164
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
165
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
166
|
+
feature_id: str = Field(alias="featureId")
|
|
167
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
168
|
+
alias="resetPeriod", default=None
|
|
171
169
|
)
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
184
|
-
pass
|
|
170
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
171
|
+
alias="hiddenFromWidgets", default=None
|
|
172
|
+
)
|
|
173
|
+
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
174
|
+
display_name_override: Optional[str] = Field(
|
|
175
|
+
alias="displayNameOverride", default=None
|
|
176
|
+
)
|
|
177
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
178
|
+
is_granted: bool = Field(alias="isGranted")
|
|
179
|
+
feature: "PackageEntitlementFragmentFeature"
|
|
185
180
|
|
|
186
181
|
|
|
187
|
-
class
|
|
188
|
-
|
|
182
|
+
class PackageEntitlementFragmentFeature(BaseModel):
|
|
183
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
184
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
189
185
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
190
186
|
feature_units_plural: Optional[str] = Field(
|
|
191
187
|
alias="featureUnitsPlural", default=None
|
|
192
188
|
)
|
|
193
189
|
display_name: str = Field(alias="displayName")
|
|
194
190
|
description: Optional[str] = Field(default=None)
|
|
191
|
+
ref_id: str = Field(alias="refId")
|
|
192
|
+
additional_meta_data: Optional[Any] = Field(
|
|
193
|
+
alias="additionalMetaData", default=None
|
|
194
|
+
)
|
|
195
195
|
|
|
196
196
|
|
|
197
197
|
class AddonFragment(BaseModel):
|
|
@@ -232,202 +232,98 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
232
232
|
pass
|
|
233
233
|
|
|
234
234
|
|
|
235
|
-
class
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
)
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
alias="targetPackage", default=None
|
|
235
|
+
class FeatureFragment(BaseModel):
|
|
236
|
+
typename__: str = Field(alias="__typename")
|
|
237
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
238
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
239
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
240
|
+
feature_units_plural: Optional[str] = Field(
|
|
241
|
+
alias="featureUnitsPlural", default=None
|
|
243
242
|
)
|
|
244
|
-
|
|
245
|
-
Annotated[
|
|
246
|
-
Union[
|
|
247
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
248
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
249
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
250
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
251
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
252
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
253
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
254
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
255
|
-
],
|
|
256
|
-
Field(discriminator="typename__"),
|
|
257
|
-
]
|
|
258
|
-
] = Field(alias="scheduleVariables", default=None)
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
262
|
-
id: Any
|
|
263
|
-
ref_id: str = Field(alias="refId")
|
|
243
|
+
description: Optional[str] = Field(default=None)
|
|
264
244
|
display_name: str = Field(alias="displayName")
|
|
245
|
+
ref_id: str = Field(alias="refId")
|
|
246
|
+
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
247
|
+
alias="unitTransformation", default=None
|
|
248
|
+
)
|
|
265
249
|
|
|
266
250
|
|
|
267
|
-
class
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
new_quantity: float = Field(alias="newQuantity")
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
274
|
-
BaseModel
|
|
275
|
-
):
|
|
276
|
-
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
277
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
278
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
282
|
-
BaseModel
|
|
283
|
-
):
|
|
284
|
-
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
285
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
289
|
-
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
293
|
-
BaseModel
|
|
294
|
-
):
|
|
295
|
-
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
296
|
-
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
297
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
298
|
-
billable_features: Optional[
|
|
299
|
-
List[
|
|
300
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
301
|
-
]
|
|
302
|
-
] = Field(alias="billableFeatures", default=None)
|
|
303
|
-
addons: Optional[
|
|
304
|
-
List[
|
|
305
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
306
|
-
]
|
|
307
|
-
] = Field(default=None)
|
|
308
|
-
price_overrides: Optional[
|
|
309
|
-
List[
|
|
310
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
311
|
-
]
|
|
312
|
-
] = Field(alias="priceOverrides", default=None)
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
316
|
-
BaseModel
|
|
317
|
-
):
|
|
318
|
-
feature_id: str = Field(alias="featureId")
|
|
319
|
-
quantity: float
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
323
|
-
BaseModel
|
|
324
|
-
):
|
|
325
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
326
|
-
quantity: float
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
330
|
-
BaseModel
|
|
331
|
-
):
|
|
332
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
333
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
334
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
251
|
+
class FeatureFragmentUnitTransformation(BaseModel):
|
|
252
|
+
divide: float
|
|
253
|
+
round: UnitTransformationRound
|
|
335
254
|
|
|
336
255
|
|
|
337
|
-
class
|
|
338
|
-
typename__:
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
] = Field(default=None)
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
256
|
+
class EntitlementFragment(BaseModel):
|
|
257
|
+
typename__: str = Field(alias="__typename")
|
|
258
|
+
is_granted: bool = Field(alias="isGranted")
|
|
259
|
+
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
260
|
+
alias="accessDeniedReason", default=None
|
|
261
|
+
)
|
|
262
|
+
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
263
|
+
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
264
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
265
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
266
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
267
|
+
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
268
|
+
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
269
|
+
requested_values: Optional[List[str]] = Field(alias="requestedValues", default=None)
|
|
270
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
271
|
+
entitlement_updated_at: Optional[Any] = Field(
|
|
272
|
+
alias="entitlementUpdatedAt", default=None
|
|
273
|
+
)
|
|
274
|
+
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
275
|
+
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
276
|
+
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
277
|
+
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
278
|
+
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
279
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
280
|
+
alias="resetPeriod", default=None
|
|
281
|
+
)
|
|
282
|
+
reset_period_configuration: Optional[
|
|
283
|
+
Annotated[
|
|
284
|
+
Union[
|
|
285
|
+
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
286
|
+
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
287
|
+
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
288
|
+
],
|
|
289
|
+
Field(discriminator="typename__"),
|
|
355
290
|
]
|
|
356
|
-
] = Field(alias="
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
)
|
|
362
|
-
feature_id: str = Field(alias="featureId")
|
|
363
|
-
quantity: float
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
367
|
-
BaseModel
|
|
368
|
-
):
|
|
369
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
370
|
-
quantity: float
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
374
|
-
BaseModel
|
|
375
|
-
):
|
|
376
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
377
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
378
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
291
|
+
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
292
|
+
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
293
|
+
credit_rate: Optional["EntitlementFragmentCreditRate"] = Field(
|
|
294
|
+
alias="creditRate", default=None
|
|
295
|
+
)
|
|
296
|
+
valid_until: Optional[float] = Field(alias="validUntil", default=None)
|
|
379
297
|
|
|
380
298
|
|
|
381
|
-
class
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
299
|
+
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
300
|
+
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
301
|
+
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
302
|
+
alias="monthlyAccordingTo", default=None
|
|
303
|
+
)
|
|
387
304
|
|
|
388
305
|
|
|
389
|
-
class
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
306
|
+
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
307
|
+
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
308
|
+
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
309
|
+
alias="weeklyAccordingTo", default=None
|
|
310
|
+
)
|
|
395
311
|
|
|
396
312
|
|
|
397
|
-
class
|
|
398
|
-
|
|
313
|
+
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
314
|
+
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
315
|
+
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
316
|
+
alias="yearlyAccordingTo", default=None
|
|
317
|
+
)
|
|
399
318
|
|
|
400
319
|
|
|
401
|
-
class
|
|
402
|
-
|
|
320
|
+
class EntitlementFragmentFeature(FeatureFragment):
|
|
321
|
+
pass
|
|
403
322
|
|
|
404
323
|
|
|
405
|
-
class
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
created_at: Any = Field(alias="createdAt")
|
|
409
|
-
due_date: Optional[Any] = Field(alias="dueDate", default=None)
|
|
410
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
411
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
412
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
413
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
414
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
415
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
416
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
417
|
-
alias="billingReason", default=None
|
|
418
|
-
)
|
|
419
|
-
currency: Optional[str] = Field(default=None)
|
|
420
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
421
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
422
|
-
alias="subTotalExcludingTax", default=None
|
|
423
|
-
)
|
|
424
|
-
total: Optional[float] = Field(default=None)
|
|
425
|
-
total_excluding_tax: Optional[float] = Field(
|
|
426
|
-
alias="totalExcludingTax", default=None
|
|
427
|
-
)
|
|
428
|
-
tax: Optional[float] = Field(default=None)
|
|
429
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
430
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
324
|
+
class EntitlementFragmentCreditRate(BaseModel):
|
|
325
|
+
amount: float
|
|
326
|
+
currency_id: str = Field(alias="currencyId")
|
|
431
327
|
|
|
432
328
|
|
|
433
329
|
class TotalPriceFragment(BaseModel):
|
|
@@ -445,6 +341,23 @@ class TotalPriceFragmentTotal(BaseModel):
|
|
|
445
341
|
currency: Currency
|
|
446
342
|
|
|
447
343
|
|
|
344
|
+
class SlimCustomerFragment(BaseModel):
|
|
345
|
+
id: Any
|
|
346
|
+
name: Optional[str] = Field(default=None)
|
|
347
|
+
email: Optional[str] = Field(default=None)
|
|
348
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
349
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
350
|
+
ref_id: str = Field(alias="refId")
|
|
351
|
+
customer_id: str = Field(alias="customerId")
|
|
352
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
353
|
+
additional_meta_data: Optional[Any] = Field(
|
|
354
|
+
alias="additionalMetaData", default=None
|
|
355
|
+
)
|
|
356
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
357
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
358
|
+
)
|
|
359
|
+
|
|
360
|
+
|
|
448
361
|
class SubscriptionFutureUpdateData(BaseModel):
|
|
449
362
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
450
363
|
alias="subscriptionScheduleType"
|
|
@@ -599,23 +512,6 @@ class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(Bas
|
|
|
599
512
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
600
513
|
|
|
601
514
|
|
|
602
|
-
class SlimCustomerFragment(BaseModel):
|
|
603
|
-
id: Any
|
|
604
|
-
name: Optional[str] = Field(default=None)
|
|
605
|
-
email: Optional[str] = Field(default=None)
|
|
606
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
607
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
608
|
-
ref_id: str = Field(alias="refId")
|
|
609
|
-
customer_id: str = Field(alias="customerId")
|
|
610
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
611
|
-
additional_meta_data: Optional[Any] = Field(
|
|
612
|
-
alias="additionalMetaData", default=None
|
|
613
|
-
)
|
|
614
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
615
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
616
|
-
)
|
|
617
|
-
|
|
618
|
-
|
|
619
515
|
class ProductFragment(BaseModel):
|
|
620
516
|
ref_id: str = Field(alias="refId")
|
|
621
517
|
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
@@ -694,46 +590,244 @@ class PlanFragmentProduct(ProductFragment):
|
|
|
694
590
|
pass
|
|
695
591
|
|
|
696
592
|
|
|
697
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
593
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
594
|
+
ref_id: str = Field(alias="refId")
|
|
595
|
+
display_name: str = Field(alias="displayName")
|
|
596
|
+
|
|
597
|
+
|
|
598
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
599
|
+
pass
|
|
600
|
+
|
|
601
|
+
|
|
602
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
603
|
+
pass
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
607
|
+
pass
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
611
|
+
pass
|
|
612
|
+
|
|
613
|
+
|
|
614
|
+
class PlanFragmentPrices(PriceFragment):
|
|
615
|
+
pass
|
|
616
|
+
|
|
617
|
+
|
|
618
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
619
|
+
pass
|
|
620
|
+
|
|
621
|
+
|
|
622
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
623
|
+
duration: float
|
|
624
|
+
units: TrialPeriodUnits
|
|
625
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
626
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
627
|
+
alias="trialEndBehavior", default=None
|
|
628
|
+
)
|
|
629
|
+
|
|
630
|
+
|
|
631
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
632
|
+
limit: float
|
|
633
|
+
|
|
634
|
+
|
|
635
|
+
class CustomerResourceFragment(BaseModel):
|
|
636
|
+
resource_id: str = Field(alias="resourceId")
|
|
637
|
+
|
|
638
|
+
|
|
639
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
640
|
+
billing_id: str = Field(alias="billingId")
|
|
641
|
+
status: SubscriptionInvoiceStatus
|
|
642
|
+
created_at: Any = Field(alias="createdAt")
|
|
643
|
+
due_date: Optional[Any] = Field(alias="dueDate", default=None)
|
|
644
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
645
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
646
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
647
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
648
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
649
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
650
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
651
|
+
alias="billingReason", default=None
|
|
652
|
+
)
|
|
653
|
+
currency: Optional[str] = Field(default=None)
|
|
654
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
655
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
656
|
+
alias="subTotalExcludingTax", default=None
|
|
657
|
+
)
|
|
658
|
+
total: Optional[float] = Field(default=None)
|
|
659
|
+
total_excluding_tax: Optional[float] = Field(
|
|
660
|
+
alias="totalExcludingTax", default=None
|
|
661
|
+
)
|
|
662
|
+
tax: Optional[float] = Field(default=None)
|
|
663
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
664
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
665
|
+
|
|
666
|
+
|
|
667
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
668
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
669
|
+
|
|
670
|
+
|
|
671
|
+
class SubscriptionScheduledUpdateData(BaseModel):
|
|
672
|
+
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
673
|
+
alias="subscriptionScheduleType"
|
|
674
|
+
)
|
|
675
|
+
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
676
|
+
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
677
|
+
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
678
|
+
alias="targetPackage", default=None
|
|
679
|
+
)
|
|
680
|
+
schedule_variables: Optional[
|
|
681
|
+
Annotated[
|
|
682
|
+
Union[
|
|
683
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
684
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
685
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
686
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
687
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
688
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
689
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
690
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
691
|
+
],
|
|
692
|
+
Field(discriminator="typename__"),
|
|
693
|
+
]
|
|
694
|
+
] = Field(alias="scheduleVariables", default=None)
|
|
695
|
+
|
|
696
|
+
|
|
697
|
+
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
698
|
+
id: Any
|
|
698
699
|
ref_id: str = Field(alias="refId")
|
|
699
700
|
display_name: str = Field(alias="displayName")
|
|
700
701
|
|
|
701
702
|
|
|
702
|
-
class
|
|
703
|
-
|
|
703
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
704
|
+
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
705
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
706
|
+
new_quantity: float = Field(alias="newQuantity")
|
|
704
707
|
|
|
705
708
|
|
|
706
|
-
class
|
|
707
|
-
|
|
709
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
710
|
+
BaseModel
|
|
711
|
+
):
|
|
712
|
+
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
713
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
714
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
708
715
|
|
|
709
716
|
|
|
710
|
-
class
|
|
711
|
-
|
|
717
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
718
|
+
BaseModel
|
|
719
|
+
):
|
|
720
|
+
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
721
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
712
722
|
|
|
713
723
|
|
|
714
|
-
class
|
|
715
|
-
|
|
724
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
725
|
+
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
716
726
|
|
|
717
727
|
|
|
718
|
-
class
|
|
719
|
-
|
|
728
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
729
|
+
BaseModel
|
|
730
|
+
):
|
|
731
|
+
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
732
|
+
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
733
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
734
|
+
billable_features: Optional[
|
|
735
|
+
List[
|
|
736
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
737
|
+
]
|
|
738
|
+
] = Field(alias="billableFeatures", default=None)
|
|
739
|
+
addons: Optional[
|
|
740
|
+
List[
|
|
741
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
742
|
+
]
|
|
743
|
+
] = Field(default=None)
|
|
744
|
+
price_overrides: Optional[
|
|
745
|
+
List[
|
|
746
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
747
|
+
]
|
|
748
|
+
] = Field(alias="priceOverrides", default=None)
|
|
720
749
|
|
|
721
750
|
|
|
722
|
-
class
|
|
723
|
-
|
|
751
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
752
|
+
BaseModel
|
|
753
|
+
):
|
|
754
|
+
feature_id: str = Field(alias="featureId")
|
|
755
|
+
quantity: float
|
|
724
756
|
|
|
725
757
|
|
|
726
|
-
class
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
alias="trialEndBehavior", default=None
|
|
732
|
-
)
|
|
758
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
759
|
+
BaseModel
|
|
760
|
+
):
|
|
761
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
762
|
+
quantity: float
|
|
733
763
|
|
|
734
764
|
|
|
735
|
-
class
|
|
736
|
-
|
|
765
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
766
|
+
BaseModel
|
|
767
|
+
):
|
|
768
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
769
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
770
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
771
|
+
|
|
772
|
+
|
|
773
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
774
|
+
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
775
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
776
|
+
change_type: PlanChangeType = Field(alias="changeType")
|
|
777
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
778
|
+
billable_features: Optional[
|
|
779
|
+
List[
|
|
780
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
781
|
+
]
|
|
782
|
+
] = Field(alias="billableFeatures", default=None)
|
|
783
|
+
addons: Optional[
|
|
784
|
+
List[
|
|
785
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
786
|
+
]
|
|
787
|
+
] = Field(default=None)
|
|
788
|
+
price_overrides: Optional[
|
|
789
|
+
List[
|
|
790
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
791
|
+
]
|
|
792
|
+
] = Field(alias="priceOverrides", default=None)
|
|
793
|
+
|
|
794
|
+
|
|
795
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
796
|
+
BaseModel
|
|
797
|
+
):
|
|
798
|
+
feature_id: str = Field(alias="featureId")
|
|
799
|
+
quantity: float
|
|
800
|
+
|
|
801
|
+
|
|
802
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
803
|
+
BaseModel
|
|
804
|
+
):
|
|
805
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
806
|
+
quantity: float
|
|
807
|
+
|
|
808
|
+
|
|
809
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
810
|
+
BaseModel
|
|
811
|
+
):
|
|
812
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
813
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
814
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
815
|
+
|
|
816
|
+
|
|
817
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
818
|
+
BaseModel
|
|
819
|
+
):
|
|
820
|
+
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
821
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
822
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
823
|
+
|
|
824
|
+
|
|
825
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
826
|
+
BaseModel
|
|
827
|
+
):
|
|
828
|
+
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
829
|
+
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
830
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
737
831
|
|
|
738
832
|
|
|
739
833
|
class SubscriptionFragment(BaseModel):
|
|
@@ -845,100 +939,6 @@ class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragm
|
|
|
845
939
|
pass
|
|
846
940
|
|
|
847
941
|
|
|
848
|
-
class FeatureFragment(BaseModel):
|
|
849
|
-
typename__: str = Field(alias="__typename")
|
|
850
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
851
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
852
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
853
|
-
feature_units_plural: Optional[str] = Field(
|
|
854
|
-
alias="featureUnitsPlural", default=None
|
|
855
|
-
)
|
|
856
|
-
description: Optional[str] = Field(default=None)
|
|
857
|
-
display_name: str = Field(alias="displayName")
|
|
858
|
-
ref_id: str = Field(alias="refId")
|
|
859
|
-
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
860
|
-
alias="unitTransformation", default=None
|
|
861
|
-
)
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
class FeatureFragmentUnitTransformation(BaseModel):
|
|
865
|
-
divide: float
|
|
866
|
-
round: UnitTransformationRound
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
class EntitlementFragment(BaseModel):
|
|
870
|
-
typename__: str = Field(alias="__typename")
|
|
871
|
-
is_granted: bool = Field(alias="isGranted")
|
|
872
|
-
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
873
|
-
alias="accessDeniedReason", default=None
|
|
874
|
-
)
|
|
875
|
-
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
876
|
-
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
877
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
878
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
879
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
880
|
-
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
881
|
-
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
882
|
-
requested_values: Optional[List[str]] = Field(alias="requestedValues", default=None)
|
|
883
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
884
|
-
entitlement_updated_at: Optional[Any] = Field(
|
|
885
|
-
alias="entitlementUpdatedAt", default=None
|
|
886
|
-
)
|
|
887
|
-
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
888
|
-
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
889
|
-
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
890
|
-
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
891
|
-
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
892
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
893
|
-
alias="resetPeriod", default=None
|
|
894
|
-
)
|
|
895
|
-
reset_period_configuration: Optional[
|
|
896
|
-
Annotated[
|
|
897
|
-
Union[
|
|
898
|
-
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
899
|
-
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
900
|
-
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
901
|
-
],
|
|
902
|
-
Field(discriminator="typename__"),
|
|
903
|
-
]
|
|
904
|
-
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
905
|
-
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
906
|
-
credit_rate: Optional["EntitlementFragmentCreditRate"] = Field(
|
|
907
|
-
alias="creditRate", default=None
|
|
908
|
-
)
|
|
909
|
-
valid_until: Optional[float] = Field(alias="validUntil", default=None)
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
913
|
-
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
914
|
-
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
915
|
-
alias="monthlyAccordingTo", default=None
|
|
916
|
-
)
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
920
|
-
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
921
|
-
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
922
|
-
alias="weeklyAccordingTo", default=None
|
|
923
|
-
)
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
927
|
-
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
928
|
-
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
929
|
-
alias="yearlyAccordingTo", default=None
|
|
930
|
-
)
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
class EntitlementFragmentFeature(FeatureFragment):
|
|
934
|
-
pass
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
class EntitlementFragmentCreditRate(BaseModel):
|
|
938
|
-
amount: float
|
|
939
|
-
currency_id: str = Field(alias="currencyId")
|
|
940
|
-
|
|
941
|
-
|
|
942
942
|
class ApplySubscriptionFragment(BaseModel):
|
|
943
943
|
subscription: Optional["ApplySubscriptionFragmentSubscription"] = Field(
|
|
944
944
|
default=None
|
|
@@ -1006,42 +1006,13 @@ class CheckoutConfigurationFragmentPalette(BaseModel):
|
|
|
1006
1006
|
typename__: Literal["CheckoutColorPalette"] = Field(alias="__typename")
|
|
1007
1007
|
|
|
1008
1008
|
|
|
1009
|
-
class CheckoutConfigurationFragmentTypography(TypographyConfigurationFragment):
|
|
1010
|
-
typename__: Literal["TypographyConfiguration"] = Field(alias="__typename")
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
class CheckoutConfigurationFragmentContent(BaseModel):
|
|
1014
|
-
collect_phone_number: Optional[bool] = Field(
|
|
1015
|
-
alias="collectPhoneNumber", default=None
|
|
1016
|
-
)
|
|
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"
|
|
1009
|
+
class CheckoutConfigurationFragmentTypography(TypographyConfigurationFragment):
|
|
1010
|
+
typename__: Literal["TypographyConfiguration"] = Field(alias="__typename")
|
|
1031
1011
|
|
|
1032
1012
|
|
|
1033
|
-
class
|
|
1034
|
-
|
|
1035
|
-
|
|
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
|
|
1013
|
+
class CheckoutConfigurationFragmentContent(BaseModel):
|
|
1014
|
+
collect_phone_number: Optional[bool] = Field(
|
|
1015
|
+
alias="collectPhoneNumber", default=None
|
|
1045
1016
|
)
|
|
1046
1017
|
|
|
1047
1018
|
|
|
@@ -1079,6 +1050,35 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1079
1050
|
status: SyncStatus
|
|
1080
1051
|
|
|
1081
1052
|
|
|
1053
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
1054
|
+
status: PromotionalEntitlementStatus
|
|
1055
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1056
|
+
feature_id: Any = Field(alias="featureId")
|
|
1057
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1058
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1059
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1060
|
+
alias="resetPeriod", default=None
|
|
1061
|
+
)
|
|
1062
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1063
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1064
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1065
|
+
|
|
1066
|
+
|
|
1067
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1068
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1069
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1070
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1071
|
+
feature_units_plural: Optional[str] = Field(
|
|
1072
|
+
alias="featureUnitsPlural", default=None
|
|
1073
|
+
)
|
|
1074
|
+
display_name: str = Field(alias="displayName")
|
|
1075
|
+
description: Optional[str] = Field(default=None)
|
|
1076
|
+
ref_id: str = Field(alias="refId")
|
|
1077
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1078
|
+
alias="additionalMetaData", default=None
|
|
1079
|
+
)
|
|
1080
|
+
|
|
1081
|
+
|
|
1082
1082
|
class CustomerFragment(SlimCustomerFragment):
|
|
1083
1083
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1084
1084
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1137,16 +1137,16 @@ class CustomerFragmentPromotionalEntitlements(PromotionalEntitlementFragment):
|
|
|
1137
1137
|
pass
|
|
1138
1138
|
|
|
1139
1139
|
|
|
1140
|
+
class ZuoraCheckoutCredentialsFragment(BaseModel):
|
|
1141
|
+
publishable_key: str = Field(alias="publishableKey")
|
|
1142
|
+
|
|
1143
|
+
|
|
1140
1144
|
class StripeCheckoutCredentialsFragment(BaseModel):
|
|
1141
1145
|
account_id: Optional[str] = Field(alias="accountId", default=None)
|
|
1142
1146
|
setup_secret: str = Field(alias="setupSecret")
|
|
1143
1147
|
public_key: Optional[str] = Field(alias="publicKey", default=None)
|
|
1144
1148
|
|
|
1145
1149
|
|
|
1146
|
-
class ZuoraCheckoutCredentialsFragment(BaseModel):
|
|
1147
|
-
publishable_key: str = Field(alias="publishableKey")
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
1150
|
class CheckoutStateFragment(BaseModel):
|
|
1151
1151
|
configuration: Optional["CheckoutStateFragmentConfiguration"] = Field(default=None)
|
|
1152
1152
|
setup_secret: str = Field(alias="setupSecret")
|
|
@@ -1435,6 +1435,58 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1435
1435
|
pass
|
|
1436
1436
|
|
|
1437
1437
|
|
|
1438
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1439
|
+
display_name: str = Field(alias="displayName")
|
|
1440
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1441
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1442
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1443
|
+
period: PromotionalEntitlementPeriod
|
|
1444
|
+
start_date: Any = Field(alias="startDate")
|
|
1445
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1446
|
+
|
|
1447
|
+
|
|
1448
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1449
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1450
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1451
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1452
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1453
|
+
default=None
|
|
1454
|
+
)
|
|
1455
|
+
credit_rate: Optional["CustomerPortalSubscriptionPriceFragmentCreditRate"] = Field(
|
|
1456
|
+
alias="creditRate", default=None
|
|
1457
|
+
)
|
|
1458
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1459
|
+
default=None
|
|
1460
|
+
)
|
|
1461
|
+
|
|
1462
|
+
|
|
1463
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1464
|
+
amount: float
|
|
1465
|
+
currency: Currency
|
|
1466
|
+
|
|
1467
|
+
|
|
1468
|
+
class CustomerPortalSubscriptionPriceFragmentCreditRate(BaseModel):
|
|
1469
|
+
amount: float
|
|
1470
|
+
currency_id: str = Field(alias="currencyId")
|
|
1471
|
+
|
|
1472
|
+
|
|
1473
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1474
|
+
id: Any
|
|
1475
|
+
ref_id: str = Field(alias="refId")
|
|
1476
|
+
display_name: str = Field(alias="displayName")
|
|
1477
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1478
|
+
feature_units_plural: Optional[str] = Field(
|
|
1479
|
+
alias="featureUnitsPlural", default=None
|
|
1480
|
+
)
|
|
1481
|
+
|
|
1482
|
+
|
|
1483
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1484
|
+
addon_id: str = Field(alias="addonId")
|
|
1485
|
+
description: Optional[str] = Field(default=None)
|
|
1486
|
+
display_name: str = Field(alias="displayName")
|
|
1487
|
+
quantity: int
|
|
1488
|
+
|
|
1489
|
+
|
|
1438
1490
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1439
1491
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1440
1492
|
alias="subscriptionScheduleType"
|
|
@@ -1604,48 +1656,6 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1604
1656
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1605
1657
|
|
|
1606
1658
|
|
|
1607
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1608
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1609
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1610
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1611
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1612
|
-
default=None
|
|
1613
|
-
)
|
|
1614
|
-
credit_rate: Optional["CustomerPortalSubscriptionPriceFragmentCreditRate"] = Field(
|
|
1615
|
-
alias="creditRate", default=None
|
|
1616
|
-
)
|
|
1617
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1618
|
-
default=None
|
|
1619
|
-
)
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1623
|
-
amount: float
|
|
1624
|
-
currency: Currency
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
class CustomerPortalSubscriptionPriceFragmentCreditRate(BaseModel):
|
|
1628
|
-
amount: float
|
|
1629
|
-
currency_id: str = Field(alias="currencyId")
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1633
|
-
id: Any
|
|
1634
|
-
ref_id: str = Field(alias="refId")
|
|
1635
|
-
display_name: str = Field(alias="displayName")
|
|
1636
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1637
|
-
feature_units_plural: Optional[str] = Field(
|
|
1638
|
-
alias="featureUnitsPlural", default=None
|
|
1639
|
-
)
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1643
|
-
addon_id: str = Field(alias="addonId")
|
|
1644
|
-
description: Optional[str] = Field(default=None)
|
|
1645
|
-
display_name: str = Field(alias="displayName")
|
|
1646
|
-
quantity: int
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
1659
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1650
1660
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1651
1661
|
plan_id: str = Field(alias="planId")
|
|
@@ -1750,16 +1760,6 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1750
1760
|
pass
|
|
1751
1761
|
|
|
1752
1762
|
|
|
1753
|
-
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1754
|
-
display_name: str = Field(alias="displayName")
|
|
1755
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1756
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1757
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1758
|
-
period: PromotionalEntitlementPeriod
|
|
1759
|
-
start_date: Any = Field(alias="startDate")
|
|
1760
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
1763
|
class CustomerPortalFragment(BaseModel):
|
|
1764
1764
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1765
1765
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -1987,41 +1987,6 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1987
1987
|
description: Optional[str] = Field(default=None)
|
|
1988
1988
|
|
|
1989
1989
|
|
|
1990
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1991
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1992
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1993
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1994
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1995
|
-
alias="resetPeriod", default=None
|
|
1996
|
-
)
|
|
1997
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1998
|
-
alias="hiddenFromWidgets", default=None
|
|
1999
|
-
)
|
|
2000
|
-
display_name_override: Optional[str] = Field(
|
|
2001
|
-
alias="displayNameOverride", default=None
|
|
2002
|
-
)
|
|
2003
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
2004
|
-
is_granted: bool = Field(alias="isGranted")
|
|
2005
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
2006
|
-
default=None
|
|
2007
|
-
)
|
|
2008
|
-
|
|
2009
|
-
|
|
2010
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
2011
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
2012
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
2013
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
2014
|
-
feature_units_plural: Optional[str] = Field(
|
|
2015
|
-
alias="featureUnitsPlural", default=None
|
|
2016
|
-
)
|
|
2017
|
-
display_name: str = Field(alias="displayName")
|
|
2018
|
-
description: Optional[str] = Field(default=None)
|
|
2019
|
-
ref_id: str = Field(alias="refId")
|
|
2020
|
-
additional_meta_data: Optional[Any] = Field(
|
|
2021
|
-
alias="additionalMetaData", default=None
|
|
2022
|
-
)
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
1990
|
class MockPaywallPriceFragment(BaseModel):
|
|
2026
1991
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
2027
1992
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -2064,6 +2029,41 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
2064
2029
|
display_name: str = Field(alias="displayName")
|
|
2065
2030
|
|
|
2066
2031
|
|
|
2032
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
2033
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
2034
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
2035
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
2036
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
2037
|
+
alias="resetPeriod", default=None
|
|
2038
|
+
)
|
|
2039
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
2040
|
+
alias="hiddenFromWidgets", default=None
|
|
2041
|
+
)
|
|
2042
|
+
display_name_override: Optional[str] = Field(
|
|
2043
|
+
alias="displayNameOverride", default=None
|
|
2044
|
+
)
|
|
2045
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
2046
|
+
is_granted: bool = Field(alias="isGranted")
|
|
2047
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
2048
|
+
default=None
|
|
2049
|
+
)
|
|
2050
|
+
|
|
2051
|
+
|
|
2052
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
2053
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
2054
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
2055
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
2056
|
+
feature_units_plural: Optional[str] = Field(
|
|
2057
|
+
alias="featureUnitsPlural", default=None
|
|
2058
|
+
)
|
|
2059
|
+
display_name: str = Field(alias="displayName")
|
|
2060
|
+
description: Optional[str] = Field(default=None)
|
|
2061
|
+
ref_id: str = Field(alias="refId")
|
|
2062
|
+
additional_meta_data: Optional[Any] = Field(
|
|
2063
|
+
alias="additionalMetaData", default=None
|
|
2064
|
+
)
|
|
2065
|
+
|
|
2066
|
+
|
|
2067
2067
|
class MockPaywallAddonFragment(BaseModel):
|
|
2068
2068
|
ref_id: str = Field(alias="refId")
|
|
2069
2069
|
display_name: str = Field(alias="displayName")
|
|
@@ -3041,33 +3041,33 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
3041
3041
|
|
|
3042
3042
|
|
|
3043
3043
|
AddonDependencyFragment.model_rebuild()
|
|
3044
|
-
PackageEntitlementFragment.model_rebuild()
|
|
3045
3044
|
PriceTierFragment.model_rebuild()
|
|
3046
|
-
PriceFragment.model_rebuild()
|
|
3047
3045
|
OveragePriceFragment.model_rebuild()
|
|
3046
|
+
PriceFragment.model_rebuild()
|
|
3047
|
+
PackageEntitlementFragment.model_rebuild()
|
|
3048
3048
|
AddonFragment.model_rebuild()
|
|
3049
|
-
|
|
3050
|
-
|
|
3051
|
-
CustomerResourceFragment.model_rebuild()
|
|
3052
|
-
SubscriptionInvoiceFragment.model_rebuild()
|
|
3049
|
+
FeatureFragment.model_rebuild()
|
|
3050
|
+
EntitlementFragment.model_rebuild()
|
|
3053
3051
|
TotalPriceFragment.model_rebuild()
|
|
3054
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
3055
3052
|
SlimCustomerFragment.model_rebuild()
|
|
3053
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
3056
3054
|
ProductFragment.model_rebuild()
|
|
3057
3055
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
3058
3056
|
PlanFragment.model_rebuild()
|
|
3057
|
+
CustomerResourceFragment.model_rebuild()
|
|
3058
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
3059
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
3060
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
3059
3061
|
SubscriptionFragment.model_rebuild()
|
|
3060
|
-
FeatureFragment.model_rebuild()
|
|
3061
|
-
EntitlementFragment.model_rebuild()
|
|
3062
3062
|
ApplySubscriptionFragment.model_rebuild()
|
|
3063
3063
|
FontVariantFragment.model_rebuild()
|
|
3064
3064
|
TypographyConfigurationFragment.model_rebuild()
|
|
3065
3065
|
CheckoutConfigurationFragment.model_rebuild()
|
|
3066
|
-
PromotionalEntitlementFragment.model_rebuild()
|
|
3067
3066
|
CouponFragment.model_rebuild()
|
|
3067
|
+
PromotionalEntitlementFragment.model_rebuild()
|
|
3068
3068
|
CustomerFragment.model_rebuild()
|
|
3069
|
-
StripeCheckoutCredentialsFragment.model_rebuild()
|
|
3070
3069
|
ZuoraCheckoutCredentialsFragment.model_rebuild()
|
|
3070
|
+
StripeCheckoutCredentialsFragment.model_rebuild()
|
|
3071
3071
|
CheckoutStateFragment.model_rebuild()
|
|
3072
3072
|
CreditBalanceFragment.model_rebuild()
|
|
3073
3073
|
CreditBalanceUpdatedPayload.model_rebuild()
|
|
@@ -3079,11 +3079,11 @@ CreditsBalanceSummaryFragment.model_rebuild()
|
|
|
3079
3079
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
3080
3080
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
3081
3081
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
3082
|
-
|
|
3082
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
3083
3083
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
3084
3084
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
3085
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
3085
3086
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
3086
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
3087
3087
|
CustomerPortalFragment.model_rebuild()
|
|
3088
3088
|
CustomerStatisticsFragment.model_rebuild()
|
|
3089
3089
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
|
@@ -3093,8 +3093,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
3093
3093
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
3094
3094
|
LayoutConfigurationFragment.model_rebuild()
|
|
3095
3095
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
3096
|
-
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
3097
3096
|
MockPaywallPriceFragment.model_rebuild()
|
|
3097
|
+
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
3098
3098
|
MockPaywallAddonFragment.model_rebuild()
|
|
3099
3099
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
3100
3100
|
MockPaywallPlanFragment.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -3901,7 +3901,9 @@ class SetPlanCompatiblePackageGroups(BaseModel):
|
|
|
3901
3901
|
class SnowflakeCredentialsInput(BaseModel):
|
|
3902
3902
|
database: str
|
|
3903
3903
|
host: str
|
|
3904
|
-
|
|
3904
|
+
passphrase: Optional[str] = None
|
|
3905
|
+
password: Optional[str] = None
|
|
3906
|
+
private_key: Optional[str] = Field(alias="privateKey", default=None)
|
|
3905
3907
|
role: str
|
|
3906
3908
|
schema_name: str = Field(alias="schemaName")
|
|
3907
3909
|
username: str
|
|
@@ -124,7 +124,7 @@ stigg/generated/enums.py,sha256=gWRs74VaRAI_BMFxwmFZJPpe-tQMI_N5X9pDx_LcW7Q,4006
|
|
|
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=xDmbobxN09nYVLqgYALcySDqdH2AQqcHNLGcPCKNgmw,111377
|
|
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
|
|
@@ -153,7 +153,7 @@ stigg/generated/grant_promotional_entitlements_group.py,sha256=iQwCd07VFaYbsN_E-
|
|
|
153
153
|
stigg/generated/import_customer.py,sha256=yEtrEB7T-Aykv3AUl-rAQz2XL6hKL0j-7JL3h-xi87o,403
|
|
154
154
|
stigg/generated/import_customer_bulk.py,sha256=miLn2ScWlPOH1IipltY5Vgd-ZQ_BkBk9t3-EsLvU5ZQ,284
|
|
155
155
|
stigg/generated/import_subscriptions_bulk.py,sha256=QgitpZkjE7eBhP1o5W0PTVAbKOvz61dNoeBAWupIcgU,297
|
|
156
|
-
stigg/generated/input_types.py,sha256=
|
|
156
|
+
stigg/generated/input_types.py,sha256=Gejq9rIMMgoevEBxjrXDW5fyFpv2v2yhoqwpwhoXt3A,218240
|
|
157
157
|
stigg/generated/migrate_subscription_to_latest.py,sha256=qQDwH7EodYAeJFb62IIl-MAEB5MbthgCJ0v1RMxpdYk,516
|
|
158
158
|
stigg/generated/preview_next_invoice.py,sha256=MiQ4Gv7Ve1Hv60xhaQi7uj82aq0xLP2UB-gjvcQdOL8,478
|
|
159
159
|
stigg/generated/preview_subscription.py,sha256=Qo2vlFs7sFzqaE8J_e-EHTRfLvG46lko-dcJMxDSCR0,475
|
|
@@ -172,7 +172,7 @@ stigg/generated/unlink_promotional_entitlements_group.py,sha256=8UIRQ0CNvReRfX0L
|
|
|
172
172
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
173
173
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
174
174
|
stigg/generated/void_credit_grant.py,sha256=uQ22Xb2vwMOJfqh48GU2fhZ6Dcv9nHNIx_UJpjmJSBU,410
|
|
175
|
-
stigg_api_client_v2-3.
|
|
176
|
-
stigg_api_client_v2-3.
|
|
177
|
-
stigg_api_client_v2-3.
|
|
178
|
-
stigg_api_client_v2-3.
|
|
175
|
+
stigg_api_client_v2-3.122.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
176
|
+
stigg_api_client_v2-3.122.0.dist-info/METADATA,sha256=ZpcEhcMkTATJ9S9FljoyoFzJuwegFT5kIMiKK9VPnU0,2258
|
|
177
|
+
stigg_api_client_v2-3.122.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
178
|
+
stigg_api_client_v2-3.122.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|