stigg-api-client-v2 2.361.0__py3-none-any.whl → 2.367.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 +354 -354
- stigg/generated/input_types.py +1 -0
- {stigg_api_client_v2-2.361.0.dist-info → stigg_api_client_v2-2.367.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.361.0.dist-info → stigg_api_client_v2-2.367.0.dist-info}/RECORD +6 -6
- {stigg_api_client_v2-2.361.0.dist-info → stigg_api_client_v2-2.367.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.361.0.dist-info → stigg_api_client_v2-2.367.0.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -60,39 +60,6 @@ class AddonDependencyFragment(BaseModel):
|
|
|
60
60
|
description: Optional[str] = Field(default=None)
|
|
61
61
|
|
|
62
62
|
|
|
63
|
-
class PackageEntitlementFragment(BaseModel):
|
|
64
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
65
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
66
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
67
|
-
feature_id: str = Field(alias="featureId")
|
|
68
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
69
|
-
alias="resetPeriod", default=None
|
|
70
|
-
)
|
|
71
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
72
|
-
alias="hiddenFromWidgets", default=None
|
|
73
|
-
)
|
|
74
|
-
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
75
|
-
display_name_override: Optional[str] = Field(
|
|
76
|
-
alias="displayNameOverride", default=None
|
|
77
|
-
)
|
|
78
|
-
feature: "PackageEntitlementFragmentFeature"
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
class PackageEntitlementFragmentFeature(BaseModel):
|
|
82
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
83
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
84
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
85
|
-
feature_units_plural: Optional[str] = Field(
|
|
86
|
-
alias="featureUnitsPlural", default=None
|
|
87
|
-
)
|
|
88
|
-
display_name: str = Field(alias="displayName")
|
|
89
|
-
description: Optional[str] = Field(default=None)
|
|
90
|
-
ref_id: str = Field(alias="refId")
|
|
91
|
-
additional_meta_data: Optional[Any] = Field(
|
|
92
|
-
alias="additionalMetaData", default=None
|
|
93
|
-
)
|
|
94
|
-
|
|
95
|
-
|
|
96
63
|
class PriceTierFragment(BaseModel):
|
|
97
64
|
up_to: Optional[float] = Field(alias="upTo", default=None)
|
|
98
65
|
unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
|
|
@@ -113,33 +80,29 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
113
80
|
currency: Currency
|
|
114
81
|
|
|
115
82
|
|
|
116
|
-
class
|
|
83
|
+
class OveragePriceFragment(BaseModel):
|
|
117
84
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
118
85
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
119
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
120
86
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
121
|
-
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
122
|
-
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
123
87
|
billing_country_code: Optional[str] = Field(
|
|
124
88
|
alias="billingCountryCode", default=None
|
|
125
89
|
)
|
|
126
|
-
price: Optional["
|
|
90
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
127
91
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
128
|
-
tiers: Optional[List["
|
|
129
|
-
feature: Optional["
|
|
130
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
92
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
93
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
131
94
|
|
|
132
95
|
|
|
133
|
-
class
|
|
96
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
134
97
|
amount: float
|
|
135
98
|
currency: Currency
|
|
136
99
|
|
|
137
100
|
|
|
138
|
-
class
|
|
101
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
139
102
|
pass
|
|
140
103
|
|
|
141
104
|
|
|
142
|
-
class
|
|
105
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
143
106
|
ref_id: str = Field(alias="refId")
|
|
144
107
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
145
108
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -149,29 +112,66 @@ class PriceFragmentFeature(BaseModel):
|
|
|
149
112
|
description: Optional[str] = Field(default=None)
|
|
150
113
|
|
|
151
114
|
|
|
152
|
-
class
|
|
115
|
+
class PackageEntitlementFragment(BaseModel):
|
|
116
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
117
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
118
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
119
|
+
feature_id: str = Field(alias="featureId")
|
|
120
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
121
|
+
alias="resetPeriod", default=None
|
|
122
|
+
)
|
|
123
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
124
|
+
alias="hiddenFromWidgets", default=None
|
|
125
|
+
)
|
|
126
|
+
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
127
|
+
display_name_override: Optional[str] = Field(
|
|
128
|
+
alias="displayNameOverride", default=None
|
|
129
|
+
)
|
|
130
|
+
feature: "PackageEntitlementFragmentFeature"
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
class PackageEntitlementFragmentFeature(BaseModel):
|
|
134
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
135
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
136
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
137
|
+
feature_units_plural: Optional[str] = Field(
|
|
138
|
+
alias="featureUnitsPlural", default=None
|
|
139
|
+
)
|
|
140
|
+
display_name: str = Field(alias="displayName")
|
|
141
|
+
description: Optional[str] = Field(default=None)
|
|
142
|
+
ref_id: str = Field(alias="refId")
|
|
143
|
+
additional_meta_data: Optional[Any] = Field(
|
|
144
|
+
alias="additionalMetaData", default=None
|
|
145
|
+
)
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
class PriceFragment(BaseModel):
|
|
153
149
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
154
150
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
151
|
+
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
155
152
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
153
|
+
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
154
|
+
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
156
155
|
billing_country_code: Optional[str] = Field(
|
|
157
156
|
alias="billingCountryCode", default=None
|
|
158
157
|
)
|
|
159
|
-
price: Optional["
|
|
158
|
+
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
160
159
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
161
|
-
tiers: Optional[List["
|
|
162
|
-
feature: Optional["
|
|
160
|
+
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
161
|
+
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
162
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
163
163
|
|
|
164
164
|
|
|
165
|
-
class
|
|
165
|
+
class PriceFragmentPrice(BaseModel):
|
|
166
166
|
amount: float
|
|
167
167
|
currency: Currency
|
|
168
168
|
|
|
169
169
|
|
|
170
|
-
class
|
|
170
|
+
class PriceFragmentTiers(PriceTierFragment):
|
|
171
171
|
pass
|
|
172
172
|
|
|
173
173
|
|
|
174
|
-
class
|
|
174
|
+
class PriceFragmentFeature(BaseModel):
|
|
175
175
|
ref_id: str = Field(alias="refId")
|
|
176
176
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
177
177
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -216,209 +216,6 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
216
216
|
pass
|
|
217
217
|
|
|
218
218
|
|
|
219
|
-
class FeatureFragment(BaseModel):
|
|
220
|
-
typename__: str = Field(alias="__typename")
|
|
221
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
222
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
223
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
224
|
-
feature_units_plural: Optional[str] = Field(
|
|
225
|
-
alias="featureUnitsPlural", default=None
|
|
226
|
-
)
|
|
227
|
-
description: Optional[str] = Field(default=None)
|
|
228
|
-
display_name: str = Field(alias="displayName")
|
|
229
|
-
ref_id: str = Field(alias="refId")
|
|
230
|
-
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
231
|
-
alias="unitTransformation", default=None
|
|
232
|
-
)
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
class FeatureFragmentUnitTransformation(BaseModel):
|
|
236
|
-
divide: float
|
|
237
|
-
round: UnitTransformationRound
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
class EntitlementFragment(BaseModel):
|
|
241
|
-
typename__: str = Field(alias="__typename")
|
|
242
|
-
is_granted: bool = Field(alias="isGranted")
|
|
243
|
-
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
244
|
-
alias="accessDeniedReason", default=None
|
|
245
|
-
)
|
|
246
|
-
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
247
|
-
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
248
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
249
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
250
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
251
|
-
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
252
|
-
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
253
|
-
entitlement_updated_at: Optional[Any] = Field(
|
|
254
|
-
alias="entitlementUpdatedAt", default=None
|
|
255
|
-
)
|
|
256
|
-
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
257
|
-
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
258
|
-
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
259
|
-
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
260
|
-
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
261
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
262
|
-
alias="resetPeriod", default=None
|
|
263
|
-
)
|
|
264
|
-
reset_period_configuration: Optional[
|
|
265
|
-
Annotated[
|
|
266
|
-
Union[
|
|
267
|
-
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
268
|
-
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
269
|
-
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
270
|
-
],
|
|
271
|
-
Field(discriminator="typename__"),
|
|
272
|
-
]
|
|
273
|
-
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
274
|
-
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
278
|
-
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
279
|
-
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
280
|
-
alias="monthlyAccordingTo", default=None
|
|
281
|
-
)
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
285
|
-
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
286
|
-
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
287
|
-
alias="weeklyAccordingTo", default=None
|
|
288
|
-
)
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
292
|
-
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
293
|
-
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
294
|
-
alias="yearlyAccordingTo", default=None
|
|
295
|
-
)
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
class EntitlementFragmentFeature(FeatureFragment):
|
|
299
|
-
pass
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
303
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
304
|
-
display_name: str = Field(alias="displayName")
|
|
305
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
306
|
-
default=None
|
|
307
|
-
)
|
|
308
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
312
|
-
pass
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
316
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
317
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
class ProductFragment(BaseModel):
|
|
321
|
-
ref_id: str = Field(alias="refId")
|
|
322
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
323
|
-
description: Optional[str] = Field(default=None)
|
|
324
|
-
additional_meta_data: Optional[Any] = Field(
|
|
325
|
-
alias="additionalMetaData", default=None
|
|
326
|
-
)
|
|
327
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
331
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
332
|
-
alias="downgradePlan", default=None
|
|
333
|
-
)
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
337
|
-
ref_id: str = Field(alias="refId")
|
|
338
|
-
display_name: str = Field(alias="displayName")
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
class PlanFragment(BaseModel):
|
|
342
|
-
id: str
|
|
343
|
-
ref_id: str = Field(alias="refId")
|
|
344
|
-
display_name: str = Field(alias="displayName")
|
|
345
|
-
description: Optional[str] = Field(default=None)
|
|
346
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
347
|
-
version_number: int = Field(alias="versionNumber")
|
|
348
|
-
additional_meta_data: Optional[Any] = Field(
|
|
349
|
-
alias="additionalMetaData", default=None
|
|
350
|
-
)
|
|
351
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
352
|
-
alias="hiddenFromWidgets", default=None
|
|
353
|
-
)
|
|
354
|
-
product: "PlanFragmentProduct"
|
|
355
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
356
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
357
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
358
|
-
alias="inheritedEntitlements", default=None
|
|
359
|
-
)
|
|
360
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
361
|
-
alias="compatibleAddons", default=None
|
|
362
|
-
)
|
|
363
|
-
compatible_package_groups: Optional[
|
|
364
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
365
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
366
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
367
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
368
|
-
alias="overagePrices", default=None
|
|
369
|
-
)
|
|
370
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
371
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
372
|
-
alias="defaultTrialConfig", default=None
|
|
373
|
-
)
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
class PlanFragmentProduct(ProductFragment):
|
|
377
|
-
pass
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
381
|
-
ref_id: str = Field(alias="refId")
|
|
382
|
-
display_name: str = Field(alias="displayName")
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
386
|
-
pass
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
390
|
-
pass
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
394
|
-
pass
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
398
|
-
pass
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
class PlanFragmentPrices(PriceFragment):
|
|
402
|
-
pass
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
406
|
-
pass
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
410
|
-
duration: float
|
|
411
|
-
units: TrialPeriodUnits
|
|
412
|
-
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
413
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
414
|
-
alias="trialEndBehavior", default=None
|
|
415
|
-
)
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
419
|
-
limit: float
|
|
420
|
-
|
|
421
|
-
|
|
422
219
|
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
423
220
|
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
424
221
|
|
|
@@ -547,57 +344,192 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel
|
|
|
547
344
|
] = Field(alias="priceOverrides", default=None)
|
|
548
345
|
|
|
549
346
|
|
|
550
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
551
|
-
BaseModel
|
|
552
|
-
):
|
|
553
|
-
feature_id: str = Field(alias="featureId")
|
|
554
|
-
quantity: float
|
|
347
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
348
|
+
BaseModel
|
|
349
|
+
):
|
|
350
|
+
feature_id: str = Field(alias="featureId")
|
|
351
|
+
quantity: float
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
355
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
356
|
+
quantity: float
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
360
|
+
BaseModel
|
|
361
|
+
):
|
|
362
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
363
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
364
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
368
|
+
BaseModel
|
|
369
|
+
):
|
|
370
|
+
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
371
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
372
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
376
|
+
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
377
|
+
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
378
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
class TotalPriceFragment(BaseModel):
|
|
382
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
383
|
+
total: "TotalPriceFragmentTotal"
|
|
384
|
+
|
|
385
|
+
|
|
386
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
387
|
+
amount: float
|
|
388
|
+
currency: Currency
|
|
389
|
+
|
|
390
|
+
|
|
391
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
392
|
+
amount: float
|
|
393
|
+
currency: Currency
|
|
394
|
+
|
|
395
|
+
|
|
396
|
+
class SlimCustomerFragment(BaseModel):
|
|
397
|
+
id: str
|
|
398
|
+
name: Optional[str] = Field(default=None)
|
|
399
|
+
email: Optional[str] = Field(default=None)
|
|
400
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
401
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
402
|
+
ref_id: str = Field(alias="refId")
|
|
403
|
+
customer_id: str = Field(alias="customerId")
|
|
404
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
405
|
+
additional_meta_data: Optional[Any] = Field(
|
|
406
|
+
alias="additionalMetaData", default=None
|
|
407
|
+
)
|
|
408
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
409
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
410
|
+
)
|
|
411
|
+
|
|
412
|
+
|
|
413
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
414
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
415
|
+
display_name: str = Field(alias="displayName")
|
|
416
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
417
|
+
default=None
|
|
418
|
+
)
|
|
419
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
423
|
+
pass
|
|
424
|
+
|
|
425
|
+
|
|
426
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
427
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
428
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
429
|
+
|
|
430
|
+
|
|
431
|
+
class ProductFragment(BaseModel):
|
|
432
|
+
ref_id: str = Field(alias="refId")
|
|
433
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
434
|
+
description: Optional[str] = Field(default=None)
|
|
435
|
+
additional_meta_data: Optional[Any] = Field(
|
|
436
|
+
alias="additionalMetaData", default=None
|
|
437
|
+
)
|
|
438
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
442
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
443
|
+
alias="downgradePlan", default=None
|
|
444
|
+
)
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
448
|
+
ref_id: str = Field(alias="refId")
|
|
449
|
+
display_name: str = Field(alias="displayName")
|
|
450
|
+
|
|
451
|
+
|
|
452
|
+
class PlanFragment(BaseModel):
|
|
453
|
+
id: str
|
|
454
|
+
ref_id: str = Field(alias="refId")
|
|
455
|
+
display_name: str = Field(alias="displayName")
|
|
456
|
+
description: Optional[str] = Field(default=None)
|
|
457
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
458
|
+
version_number: int = Field(alias="versionNumber")
|
|
459
|
+
additional_meta_data: Optional[Any] = Field(
|
|
460
|
+
alias="additionalMetaData", default=None
|
|
461
|
+
)
|
|
462
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
463
|
+
alias="hiddenFromWidgets", default=None
|
|
464
|
+
)
|
|
465
|
+
product: "PlanFragmentProduct"
|
|
466
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
467
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
468
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
469
|
+
alias="inheritedEntitlements", default=None
|
|
470
|
+
)
|
|
471
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
472
|
+
alias="compatibleAddons", default=None
|
|
473
|
+
)
|
|
474
|
+
compatible_package_groups: Optional[
|
|
475
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
476
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
477
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
478
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
479
|
+
alias="overagePrices", default=None
|
|
480
|
+
)
|
|
481
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
482
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
483
|
+
alias="defaultTrialConfig", default=None
|
|
484
|
+
)
|
|
485
|
+
|
|
486
|
+
|
|
487
|
+
class PlanFragmentProduct(ProductFragment):
|
|
488
|
+
pass
|
|
489
|
+
|
|
490
|
+
|
|
491
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
492
|
+
ref_id: str = Field(alias="refId")
|
|
493
|
+
display_name: str = Field(alias="displayName")
|
|
494
|
+
|
|
495
|
+
|
|
496
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
497
|
+
pass
|
|
555
498
|
|
|
556
499
|
|
|
557
|
-
class
|
|
558
|
-
|
|
559
|
-
quantity: float
|
|
500
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
501
|
+
pass
|
|
560
502
|
|
|
561
503
|
|
|
562
|
-
class
|
|
563
|
-
|
|
564
|
-
):
|
|
565
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
566
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
567
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
504
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
505
|
+
pass
|
|
568
506
|
|
|
569
507
|
|
|
570
|
-
class
|
|
571
|
-
|
|
572
|
-
):
|
|
573
|
-
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
574
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
575
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
508
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
509
|
+
pass
|
|
576
510
|
|
|
577
511
|
|
|
578
|
-
class
|
|
579
|
-
|
|
580
|
-
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
581
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
512
|
+
class PlanFragmentPrices(PriceFragment):
|
|
513
|
+
pass
|
|
582
514
|
|
|
583
515
|
|
|
584
|
-
class
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
alias="additionalMetaData", default=None
|
|
595
|
-
)
|
|
596
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
597
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
516
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
517
|
+
pass
|
|
518
|
+
|
|
519
|
+
|
|
520
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
521
|
+
duration: float
|
|
522
|
+
units: TrialPeriodUnits
|
|
523
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
524
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
525
|
+
alias="trialEndBehavior", default=None
|
|
598
526
|
)
|
|
599
527
|
|
|
600
528
|
|
|
529
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
530
|
+
limit: float
|
|
531
|
+
|
|
532
|
+
|
|
601
533
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
602
534
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
603
535
|
alias="subscriptionScheduleType"
|
|
@@ -760,21 +692,6 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
760
692
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
761
693
|
|
|
762
694
|
|
|
763
|
-
class TotalPriceFragment(BaseModel):
|
|
764
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
765
|
-
total: "TotalPriceFragmentTotal"
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
769
|
-
amount: float
|
|
770
|
-
currency: Currency
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
774
|
-
amount: float
|
|
775
|
-
currency: Currency
|
|
776
|
-
|
|
777
|
-
|
|
778
695
|
class SubscriptionInvoiceFragment(BaseModel):
|
|
779
696
|
billing_id: str = Field(alias="billingId")
|
|
780
697
|
status: SubscriptionInvoiceStatus
|
|
@@ -911,6 +828,89 @@ class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragm
|
|
|
911
828
|
pass
|
|
912
829
|
|
|
913
830
|
|
|
831
|
+
class FeatureFragment(BaseModel):
|
|
832
|
+
typename__: str = Field(alias="__typename")
|
|
833
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
834
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
835
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
836
|
+
feature_units_plural: Optional[str] = Field(
|
|
837
|
+
alias="featureUnitsPlural", default=None
|
|
838
|
+
)
|
|
839
|
+
description: Optional[str] = Field(default=None)
|
|
840
|
+
display_name: str = Field(alias="displayName")
|
|
841
|
+
ref_id: str = Field(alias="refId")
|
|
842
|
+
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
843
|
+
alias="unitTransformation", default=None
|
|
844
|
+
)
|
|
845
|
+
|
|
846
|
+
|
|
847
|
+
class FeatureFragmentUnitTransformation(BaseModel):
|
|
848
|
+
divide: float
|
|
849
|
+
round: UnitTransformationRound
|
|
850
|
+
|
|
851
|
+
|
|
852
|
+
class EntitlementFragment(BaseModel):
|
|
853
|
+
typename__: str = Field(alias="__typename")
|
|
854
|
+
is_granted: bool = Field(alias="isGranted")
|
|
855
|
+
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
856
|
+
alias="accessDeniedReason", default=None
|
|
857
|
+
)
|
|
858
|
+
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
859
|
+
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
860
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
861
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
862
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
863
|
+
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
864
|
+
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
865
|
+
entitlement_updated_at: Optional[Any] = Field(
|
|
866
|
+
alias="entitlementUpdatedAt", default=None
|
|
867
|
+
)
|
|
868
|
+
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
869
|
+
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
870
|
+
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
871
|
+
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
872
|
+
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
873
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
874
|
+
alias="resetPeriod", default=None
|
|
875
|
+
)
|
|
876
|
+
reset_period_configuration: Optional[
|
|
877
|
+
Annotated[
|
|
878
|
+
Union[
|
|
879
|
+
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
880
|
+
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
881
|
+
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
882
|
+
],
|
|
883
|
+
Field(discriminator="typename__"),
|
|
884
|
+
]
|
|
885
|
+
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
886
|
+
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
887
|
+
|
|
888
|
+
|
|
889
|
+
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
890
|
+
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
891
|
+
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
892
|
+
alias="monthlyAccordingTo", default=None
|
|
893
|
+
)
|
|
894
|
+
|
|
895
|
+
|
|
896
|
+
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
897
|
+
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
898
|
+
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
899
|
+
alias="weeklyAccordingTo", default=None
|
|
900
|
+
)
|
|
901
|
+
|
|
902
|
+
|
|
903
|
+
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
904
|
+
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
905
|
+
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
906
|
+
alias="yearlyAccordingTo", default=None
|
|
907
|
+
)
|
|
908
|
+
|
|
909
|
+
|
|
910
|
+
class EntitlementFragmentFeature(FeatureFragment):
|
|
911
|
+
pass
|
|
912
|
+
|
|
913
|
+
|
|
914
914
|
class ApplySubscriptionFragment(BaseModel):
|
|
915
915
|
subscription: Optional["ApplySubscriptionFragmentSubscription"] = Field(
|
|
916
916
|
default=None
|
|
@@ -1257,6 +1257,16 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1257
1257
|
pass
|
|
1258
1258
|
|
|
1259
1259
|
|
|
1260
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1261
|
+
display_name: str = Field(alias="displayName")
|
|
1262
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1263
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1264
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1265
|
+
period: PromotionalEntitlementPeriod
|
|
1266
|
+
start_date: Any = Field(alias="startDate")
|
|
1267
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1268
|
+
|
|
1269
|
+
|
|
1260
1270
|
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1261
1271
|
addon_id: str = Field(alias="addonId")
|
|
1262
1272
|
description: Optional[str] = Field(default=None)
|
|
@@ -1264,6 +1274,33 @@ class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
|
1264
1274
|
quantity: int
|
|
1265
1275
|
|
|
1266
1276
|
|
|
1277
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1278
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1279
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1280
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1281
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1282
|
+
default=None
|
|
1283
|
+
)
|
|
1284
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1285
|
+
default=None
|
|
1286
|
+
)
|
|
1287
|
+
|
|
1288
|
+
|
|
1289
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1290
|
+
amount: float
|
|
1291
|
+
currency: Currency
|
|
1292
|
+
|
|
1293
|
+
|
|
1294
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1295
|
+
id: str
|
|
1296
|
+
ref_id: str = Field(alias="refId")
|
|
1297
|
+
display_name: str = Field(alias="displayName")
|
|
1298
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1299
|
+
feature_units_plural: Optional[str] = Field(
|
|
1300
|
+
alias="featureUnitsPlural", default=None
|
|
1301
|
+
)
|
|
1302
|
+
|
|
1303
|
+
|
|
1267
1304
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1268
1305
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1269
1306
|
alias="subscriptionScheduleType"
|
|
@@ -1433,33 +1470,6 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1433
1470
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1434
1471
|
|
|
1435
1472
|
|
|
1436
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1437
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1438
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1439
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1440
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1441
|
-
default=None
|
|
1442
|
-
)
|
|
1443
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1444
|
-
default=None
|
|
1445
|
-
)
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1449
|
-
amount: float
|
|
1450
|
-
currency: Currency
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1454
|
-
id: str
|
|
1455
|
-
ref_id: str = Field(alias="refId")
|
|
1456
|
-
display_name: str = Field(alias="displayName")
|
|
1457
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1458
|
-
feature_units_plural: Optional[str] = Field(
|
|
1459
|
-
alias="featureUnitsPlural", default=None
|
|
1460
|
-
)
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
1473
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1464
1474
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1465
1475
|
plan_id: str = Field(alias="planId")
|
|
@@ -1556,16 +1566,6 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1556
1566
|
pass
|
|
1557
1567
|
|
|
1558
1568
|
|
|
1559
|
-
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1560
|
-
display_name: str = Field(alias="displayName")
|
|
1561
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1562
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1563
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1564
|
-
period: PromotionalEntitlementPeriod
|
|
1565
|
-
start_date: Any = Field(alias="startDate")
|
|
1566
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
1569
|
class CustomerPortalFragment(BaseModel):
|
|
1570
1570
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1571
1571
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -2770,24 +2770,24 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2770
2770
|
|
|
2771
2771
|
|
|
2772
2772
|
AddonDependencyFragment.model_rebuild()
|
|
2773
|
-
PackageEntitlementFragment.model_rebuild()
|
|
2774
2773
|
PriceTierFragment.model_rebuild()
|
|
2775
|
-
PriceFragment.model_rebuild()
|
|
2776
2774
|
OveragePriceFragment.model_rebuild()
|
|
2775
|
+
PackageEntitlementFragment.model_rebuild()
|
|
2776
|
+
PriceFragment.model_rebuild()
|
|
2777
2777
|
AddonFragment.model_rebuild()
|
|
2778
|
-
FeatureFragment.model_rebuild()
|
|
2779
|
-
EntitlementFragment.model_rebuild()
|
|
2780
|
-
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2781
|
-
ProductFragment.model_rebuild()
|
|
2782
|
-
PlanFragment.model_rebuild()
|
|
2783
2778
|
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2784
2779
|
CustomerResourceFragment.model_rebuild()
|
|
2785
2780
|
SubscriptionFutureUpdateData.model_rebuild()
|
|
2781
|
+
TotalPriceFragment.model_rebuild()
|
|
2786
2782
|
SlimCustomerFragment.model_rebuild()
|
|
2783
|
+
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2784
|
+
ProductFragment.model_rebuild()
|
|
2785
|
+
PlanFragment.model_rebuild()
|
|
2787
2786
|
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2788
|
-
TotalPriceFragment.model_rebuild()
|
|
2789
2787
|
SubscriptionInvoiceFragment.model_rebuild()
|
|
2790
2788
|
SubscriptionFragment.model_rebuild()
|
|
2789
|
+
FeatureFragment.model_rebuild()
|
|
2790
|
+
EntitlementFragment.model_rebuild()
|
|
2791
2791
|
ApplySubscriptionFragment.model_rebuild()
|
|
2792
2792
|
FontVariantFragment.model_rebuild()
|
|
2793
2793
|
TypographyConfigurationFragment.model_rebuild()
|
|
@@ -2799,11 +2799,11 @@ CheckoutStateFragment.model_rebuild()
|
|
|
2799
2799
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2800
2800
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2801
2801
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2802
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2802
2803
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2803
|
-
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2804
2804
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2805
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2805
2806
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2806
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2807
2807
|
CustomerPortalFragment.model_rebuild()
|
|
2808
2808
|
CustomerStatisticsFragment.model_rebuild()
|
|
2809
2809
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
stigg/generated/input_types.py
CHANGED
|
@@ -4244,6 +4244,7 @@ class TriggerSubscriptionUsageSyncInput(BaseModel):
|
|
|
4244
4244
|
|
|
4245
4245
|
|
|
4246
4246
|
class TriggerWorkflowInput(BaseModel):
|
|
4247
|
+
is_test: Optional[bool] = Field(alias="isTest", default=None)
|
|
4247
4248
|
payload: Optional[Any] = None
|
|
4248
4249
|
trigger_id: str = Field(alias="triggerId")
|
|
4249
4250
|
|
|
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=t6q4y-5cKBmgLTrf_2YWXkNvmclEjnvBos1Ycd0aomI,3521
|
|
|
123
123
|
stigg/generated/estimate_subscription.py,sha256=c0_vg0A_Hi8fdjeGudWZ0WziUF9jcjX5rlRitGMAMaQ,479
|
|
124
124
|
stigg/generated/estimate_subscription_update.py,sha256=ZYIFqqHHDfzhrOn95QnMmPNTXZ7JrKWRlUFzk8fWwKA,528
|
|
125
125
|
stigg/generated/exceptions.py,sha256=OQu-ZYCCV4VyMWTd1HR8gIjIK2CrA_JMlFxqOAJugWY,2411
|
|
126
|
-
stigg/generated/fragments.py,sha256=
|
|
126
|
+
stigg/generated/fragments.py,sha256=SoO8U2qxhkPn9klNNjO4z6I0Izl7a2ButNmIn9bDfmU,100917
|
|
127
127
|
stigg/generated/get_active_subscriptions.py,sha256=ngZ9jr8vzGI59wT8FhUFl46a8j9waoNjeZ1_lrcu2ww,513
|
|
128
128
|
stigg/generated/get_active_subscriptions_list.py,sha256=Awi9al2MXxdt_y7ZnWYZh8U3R9XiX50c7TyO4WZxyhw,541
|
|
129
129
|
stigg/generated/get_checkout_state.py,sha256=SAOXGAND879dwb7R5mr5LPZuPVuMUDwNR5M4mgmHv6w,409
|
|
@@ -144,7 +144,7 @@ stigg/generated/grant_promotional_entitlements.py,sha256=72PRYuqecL-0SkWb7deygkh
|
|
|
144
144
|
stigg/generated/import_customer.py,sha256=yEtrEB7T-Aykv3AUl-rAQz2XL6hKL0j-7JL3h-xi87o,403
|
|
145
145
|
stigg/generated/import_customer_bulk.py,sha256=miLn2ScWlPOH1IipltY5Vgd-ZQ_BkBk9t3-EsLvU5ZQ,284
|
|
146
146
|
stigg/generated/import_subscriptions_bulk.py,sha256=QgitpZkjE7eBhP1o5W0PTVAbKOvz61dNoeBAWupIcgU,297
|
|
147
|
-
stigg/generated/input_types.py,sha256=
|
|
147
|
+
stigg/generated/input_types.py,sha256=0czItr1JmXfxzqpja48HT31L1IiExTw5lmpEmFNUQJ8,193634
|
|
148
148
|
stigg/generated/migrate_subscription_to_latest.py,sha256=qQDwH7EodYAeJFb62IIl-MAEB5MbthgCJ0v1RMxpdYk,516
|
|
149
149
|
stigg/generated/preview_next_invoice.py,sha256=MiQ4Gv7Ve1Hv60xhaQi7uj82aq0xLP2UB-gjvcQdOL8,478
|
|
150
150
|
stigg/generated/preview_subscription.py,sha256=Qo2vlFs7sFzqaE8J_e-EHTRfLvG46lko-dcJMxDSCR0,475
|
|
@@ -160,7 +160,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
|
|
|
160
160
|
stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
|
|
161
161
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
162
162
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
163
|
-
stigg_api_client_v2-2.
|
|
164
|
-
stigg_api_client_v2-2.
|
|
165
|
-
stigg_api_client_v2-2.
|
|
166
|
-
stigg_api_client_v2-2.
|
|
163
|
+
stigg_api_client_v2-2.367.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.367.0.dist-info/METADATA,sha256=7O7RSfua6fZs4V8PeRefaUQ6xce5CGiRdGXzD0e-N9s,2258
|
|
165
|
+
stigg_api_client_v2-2.367.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.367.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|