stigg-api-client-v2 2.296.1__py3-none-any.whl → 2.298.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 +371 -371
- {stigg_api_client_v2-2.296.1.dist-info → stigg_api_client_v2-2.298.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.296.1.dist-info → stigg_api_client_v2-2.298.0.dist-info}/RECORD +5 -5
- {stigg_api_client_v2-2.296.1.dist-info → stigg_api_client_v2-2.298.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.296.1.dist-info → stigg_api_client_v2-2.298.0.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -59,39 +59,6 @@ class AddonDependencyFragment(BaseModel):
|
|
|
59
59
|
description: Optional[str] = Field(default=None)
|
|
60
60
|
|
|
61
61
|
|
|
62
|
-
class PackageEntitlementFragment(BaseModel):
|
|
63
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
64
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
65
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
66
|
-
feature_id: str = Field(alias="featureId")
|
|
67
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
68
|
-
alias="resetPeriod", default=None
|
|
69
|
-
)
|
|
70
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
71
|
-
alias="hiddenFromWidgets", default=None
|
|
72
|
-
)
|
|
73
|
-
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
74
|
-
display_name_override: Optional[str] = Field(
|
|
75
|
-
alias="displayNameOverride", default=None
|
|
76
|
-
)
|
|
77
|
-
feature: "PackageEntitlementFragmentFeature"
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
class PackageEntitlementFragmentFeature(BaseModel):
|
|
81
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
82
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
83
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
84
|
-
feature_units_plural: Optional[str] = Field(
|
|
85
|
-
alias="featureUnitsPlural", default=None
|
|
86
|
-
)
|
|
87
|
-
display_name: str = Field(alias="displayName")
|
|
88
|
-
description: Optional[str] = Field(default=None)
|
|
89
|
-
ref_id: str = Field(alias="refId")
|
|
90
|
-
additional_meta_data: Optional[Any] = Field(
|
|
91
|
-
alias="additionalMetaData", default=None
|
|
92
|
-
)
|
|
93
|
-
|
|
94
|
-
|
|
95
62
|
class PriceTierFragment(BaseModel):
|
|
96
63
|
up_to: Optional[float] = Field(alias="upTo", default=None)
|
|
97
64
|
unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
|
|
@@ -112,29 +79,33 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
112
79
|
currency: Currency
|
|
113
80
|
|
|
114
81
|
|
|
115
|
-
class
|
|
82
|
+
class PriceFragment(BaseModel):
|
|
116
83
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
117
84
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
85
|
+
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
118
86
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
87
|
+
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
88
|
+
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
119
89
|
billing_country_code: Optional[str] = Field(
|
|
120
90
|
alias="billingCountryCode", default=None
|
|
121
91
|
)
|
|
122
|
-
price: Optional["
|
|
92
|
+
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
123
93
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
124
|
-
tiers: Optional[List["
|
|
125
|
-
feature: Optional["
|
|
94
|
+
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
95
|
+
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
96
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
126
97
|
|
|
127
98
|
|
|
128
|
-
class
|
|
99
|
+
class PriceFragmentPrice(BaseModel):
|
|
129
100
|
amount: float
|
|
130
101
|
currency: Currency
|
|
131
102
|
|
|
132
103
|
|
|
133
|
-
class
|
|
104
|
+
class PriceFragmentTiers(PriceTierFragment):
|
|
134
105
|
pass
|
|
135
106
|
|
|
136
107
|
|
|
137
|
-
class
|
|
108
|
+
class PriceFragmentFeature(BaseModel):
|
|
138
109
|
ref_id: str = Field(alias="refId")
|
|
139
110
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
140
111
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -144,33 +115,62 @@ class OveragePriceFragmentFeature(BaseModel):
|
|
|
144
115
|
description: Optional[str] = Field(default=None)
|
|
145
116
|
|
|
146
117
|
|
|
147
|
-
class
|
|
118
|
+
class PackageEntitlementFragment(BaseModel):
|
|
119
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
120
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
121
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
122
|
+
feature_id: str = Field(alias="featureId")
|
|
123
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
124
|
+
alias="resetPeriod", default=None
|
|
125
|
+
)
|
|
126
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
127
|
+
alias="hiddenFromWidgets", default=None
|
|
128
|
+
)
|
|
129
|
+
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
130
|
+
display_name_override: Optional[str] = Field(
|
|
131
|
+
alias="displayNameOverride", default=None
|
|
132
|
+
)
|
|
133
|
+
feature: "PackageEntitlementFragmentFeature"
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
class PackageEntitlementFragmentFeature(BaseModel):
|
|
137
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
138
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
139
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
140
|
+
feature_units_plural: Optional[str] = Field(
|
|
141
|
+
alias="featureUnitsPlural", default=None
|
|
142
|
+
)
|
|
143
|
+
display_name: str = Field(alias="displayName")
|
|
144
|
+
description: Optional[str] = Field(default=None)
|
|
145
|
+
ref_id: str = Field(alias="refId")
|
|
146
|
+
additional_meta_data: Optional[Any] = Field(
|
|
147
|
+
alias="additionalMetaData", default=None
|
|
148
|
+
)
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
class OveragePriceFragment(BaseModel):
|
|
148
152
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
149
153
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
150
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
151
154
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
152
|
-
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
153
|
-
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
154
155
|
billing_country_code: Optional[str] = Field(
|
|
155
156
|
alias="billingCountryCode", default=None
|
|
156
157
|
)
|
|
157
|
-
price: Optional["
|
|
158
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
158
159
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
159
|
-
tiers: Optional[List["
|
|
160
|
-
feature: Optional["
|
|
161
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
160
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
161
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
162
162
|
|
|
163
163
|
|
|
164
|
-
class
|
|
164
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
165
165
|
amount: float
|
|
166
166
|
currency: Currency
|
|
167
167
|
|
|
168
168
|
|
|
169
|
-
class
|
|
169
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
170
170
|
pass
|
|
171
171
|
|
|
172
172
|
|
|
173
|
-
class
|
|
173
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
174
174
|
ref_id: str = Field(alias="refId")
|
|
175
175
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
176
176
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -215,6 +215,190 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
215
215
|
pass
|
|
216
216
|
|
|
217
217
|
|
|
218
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
219
|
+
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
220
|
+
alias="subscriptionScheduleType"
|
|
221
|
+
)
|
|
222
|
+
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
223
|
+
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
224
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
225
|
+
alias="targetPackage", default=None
|
|
226
|
+
)
|
|
227
|
+
schedule_variables: Optional[
|
|
228
|
+
Annotated[
|
|
229
|
+
Union[
|
|
230
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
231
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
232
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
233
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
234
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
235
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
236
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
237
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
238
|
+
],
|
|
239
|
+
Field(discriminator="typename__"),
|
|
240
|
+
]
|
|
241
|
+
] = Field(alias="scheduleVariables", default=None)
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
245
|
+
id: str
|
|
246
|
+
ref_id: str = Field(alias="refId")
|
|
247
|
+
display_name: str = Field(alias="displayName")
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
251
|
+
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
252
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
253
|
+
new_quantity: float = Field(alias="newQuantity")
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
257
|
+
BaseModel
|
|
258
|
+
):
|
|
259
|
+
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
260
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
261
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
265
|
+
BaseModel
|
|
266
|
+
):
|
|
267
|
+
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
268
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
272
|
+
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
273
|
+
|
|
274
|
+
|
|
275
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
276
|
+
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
277
|
+
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
278
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
279
|
+
billable_features: Optional[
|
|
280
|
+
List[
|
|
281
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
282
|
+
]
|
|
283
|
+
] = Field(alias="billableFeatures", default=None)
|
|
284
|
+
addons: Optional[
|
|
285
|
+
List[
|
|
286
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
287
|
+
]
|
|
288
|
+
] = Field(default=None)
|
|
289
|
+
price_overrides: Optional[
|
|
290
|
+
List[
|
|
291
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
292
|
+
]
|
|
293
|
+
] = Field(alias="priceOverrides", default=None)
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
297
|
+
BaseModel
|
|
298
|
+
):
|
|
299
|
+
feature_id: str = Field(alias="featureId")
|
|
300
|
+
quantity: float
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
304
|
+
BaseModel
|
|
305
|
+
):
|
|
306
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
307
|
+
quantity: float
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
311
|
+
BaseModel
|
|
312
|
+
):
|
|
313
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
314
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
315
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
319
|
+
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
320
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
321
|
+
change_type: PlanChangeType = Field(alias="changeType")
|
|
322
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
323
|
+
billable_features: Optional[
|
|
324
|
+
List[
|
|
325
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
326
|
+
]
|
|
327
|
+
] = Field(alias="billableFeatures", default=None)
|
|
328
|
+
addons: Optional[
|
|
329
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
330
|
+
] = Field(default=None)
|
|
331
|
+
price_overrides: Optional[
|
|
332
|
+
List[
|
|
333
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
334
|
+
]
|
|
335
|
+
] = Field(alias="priceOverrides", default=None)
|
|
336
|
+
|
|
337
|
+
|
|
338
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
339
|
+
BaseModel
|
|
340
|
+
):
|
|
341
|
+
feature_id: str = Field(alias="featureId")
|
|
342
|
+
quantity: float
|
|
343
|
+
|
|
344
|
+
|
|
345
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
346
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
347
|
+
quantity: float
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
351
|
+
BaseModel
|
|
352
|
+
):
|
|
353
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
354
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
355
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
359
|
+
BaseModel
|
|
360
|
+
):
|
|
361
|
+
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
362
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
363
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
367
|
+
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
368
|
+
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
369
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
373
|
+
billing_id: str = Field(alias="billingId")
|
|
374
|
+
status: SubscriptionInvoiceStatus
|
|
375
|
+
created_at: Any = Field(alias="createdAt")
|
|
376
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
377
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
378
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
379
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
380
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
381
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
382
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
383
|
+
alias="billingReason", default=None
|
|
384
|
+
)
|
|
385
|
+
currency: Optional[str] = Field(default=None)
|
|
386
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
387
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
388
|
+
alias="subTotalExcludingTax", default=None
|
|
389
|
+
)
|
|
390
|
+
total: Optional[float] = Field(default=None)
|
|
391
|
+
total_excluding_tax: Optional[float] = Field(
|
|
392
|
+
alias="totalExcludingTax", default=None
|
|
393
|
+
)
|
|
394
|
+
tax: Optional[float] = Field(default=None)
|
|
395
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
396
|
+
|
|
397
|
+
|
|
398
|
+
class CustomerResourceFragment(BaseModel):
|
|
399
|
+
resource_id: str = Field(alias="resourceId")
|
|
400
|
+
|
|
401
|
+
|
|
218
402
|
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
219
403
|
package_group_id: str = Field(alias="packageGroupId")
|
|
220
404
|
display_name: str = Field(alias="displayName")
|
|
@@ -335,6 +519,27 @@ class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
|
335
519
|
limit: float
|
|
336
520
|
|
|
337
521
|
|
|
522
|
+
class SlimCustomerFragment(BaseModel):
|
|
523
|
+
id: str
|
|
524
|
+
name: Optional[str] = Field(default=None)
|
|
525
|
+
email: Optional[str] = Field(default=None)
|
|
526
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
527
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
528
|
+
ref_id: str = Field(alias="refId")
|
|
529
|
+
customer_id: str = Field(alias="customerId")
|
|
530
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
531
|
+
additional_meta_data: Optional[Any] = Field(
|
|
532
|
+
alias="additionalMetaData", default=None
|
|
533
|
+
)
|
|
534
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
535
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
536
|
+
)
|
|
537
|
+
|
|
538
|
+
|
|
539
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
540
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
541
|
+
|
|
542
|
+
|
|
338
543
|
class TotalPriceFragment(BaseModel):
|
|
339
544
|
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
340
545
|
total: "TotalPriceFragmentTotal"
|
|
@@ -474,198 +679,21 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseMo
|
|
|
474
679
|
] = Field(alias="priceOverrides", default=None)
|
|
475
680
|
|
|
476
681
|
|
|
477
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
478
|
-
BaseModel
|
|
479
|
-
):
|
|
480
|
-
feature_id: str = Field(alias="featureId")
|
|
481
|
-
quantity: float
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
485
|
-
BaseModel
|
|
486
|
-
):
|
|
487
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
488
|
-
quantity: float
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
492
|
-
BaseModel
|
|
493
|
-
):
|
|
494
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
495
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
496
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
500
|
-
BaseModel
|
|
501
|
-
):
|
|
502
|
-
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
503
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
504
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
508
|
-
BaseModel
|
|
509
|
-
):
|
|
510
|
-
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
511
|
-
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
512
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
class SlimCustomerFragment(BaseModel):
|
|
516
|
-
id: str
|
|
517
|
-
name: Optional[str] = Field(default=None)
|
|
518
|
-
email: Optional[str] = Field(default=None)
|
|
519
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
520
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
521
|
-
ref_id: str = Field(alias="refId")
|
|
522
|
-
customer_id: str = Field(alias="customerId")
|
|
523
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
524
|
-
additional_meta_data: Optional[Any] = Field(
|
|
525
|
-
alias="additionalMetaData", default=None
|
|
526
|
-
)
|
|
527
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
528
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
529
|
-
)
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
533
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
class SubscriptionFutureUpdateData(BaseModel):
|
|
537
|
-
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
538
|
-
alias="subscriptionScheduleType"
|
|
539
|
-
)
|
|
540
|
-
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
541
|
-
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
542
|
-
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
543
|
-
alias="targetPackage", default=None
|
|
544
|
-
)
|
|
545
|
-
schedule_variables: Optional[
|
|
546
|
-
Annotated[
|
|
547
|
-
Union[
|
|
548
|
-
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
549
|
-
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
550
|
-
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
551
|
-
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
552
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
553
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
554
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
555
|
-
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
556
|
-
],
|
|
557
|
-
Field(discriminator="typename__"),
|
|
558
|
-
]
|
|
559
|
-
] = Field(alias="scheduleVariables", default=None)
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
563
|
-
id: str
|
|
564
|
-
ref_id: str = Field(alias="refId")
|
|
565
|
-
display_name: str = Field(alias="displayName")
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
569
|
-
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
570
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
571
|
-
new_quantity: float = Field(alias="newQuantity")
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
575
|
-
BaseModel
|
|
576
|
-
):
|
|
577
|
-
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
578
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
579
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
583
|
-
BaseModel
|
|
584
|
-
):
|
|
585
|
-
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
586
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
590
|
-
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
594
|
-
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
595
|
-
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
596
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
597
|
-
billable_features: Optional[
|
|
598
|
-
List[
|
|
599
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
600
|
-
]
|
|
601
|
-
] = Field(alias="billableFeatures", default=None)
|
|
602
|
-
addons: Optional[
|
|
603
|
-
List[
|
|
604
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
605
|
-
]
|
|
606
|
-
] = Field(default=None)
|
|
607
|
-
price_overrides: Optional[
|
|
608
|
-
List[
|
|
609
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
610
|
-
]
|
|
611
|
-
] = Field(alias="priceOverrides", default=None)
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
615
|
-
BaseModel
|
|
616
|
-
):
|
|
617
|
-
feature_id: str = Field(alias="featureId")
|
|
618
|
-
quantity: float
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
622
|
-
BaseModel
|
|
623
|
-
):
|
|
624
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
625
|
-
quantity: float
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
629
|
-
BaseModel
|
|
630
|
-
):
|
|
631
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
632
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
633
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
637
|
-
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
638
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
639
|
-
change_type: PlanChangeType = Field(alias="changeType")
|
|
640
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
641
|
-
billable_features: Optional[
|
|
642
|
-
List[
|
|
643
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
644
|
-
]
|
|
645
|
-
] = Field(alias="billableFeatures", default=None)
|
|
646
|
-
addons: Optional[
|
|
647
|
-
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
648
|
-
] = Field(default=None)
|
|
649
|
-
price_overrides: Optional[
|
|
650
|
-
List[
|
|
651
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
652
|
-
]
|
|
653
|
-
] = Field(alias="priceOverrides", default=None)
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
682
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
657
683
|
BaseModel
|
|
658
684
|
):
|
|
659
685
|
feature_id: str = Field(alias="featureId")
|
|
660
686
|
quantity: float
|
|
661
687
|
|
|
662
688
|
|
|
663
|
-
class
|
|
689
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
690
|
+
BaseModel
|
|
691
|
+
):
|
|
664
692
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
665
693
|
quantity: float
|
|
666
694
|
|
|
667
695
|
|
|
668
|
-
class
|
|
696
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
669
697
|
BaseModel
|
|
670
698
|
):
|
|
671
699
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -673,7 +701,7 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverr
|
|
|
673
701
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
674
702
|
|
|
675
703
|
|
|
676
|
-
class
|
|
704
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
677
705
|
BaseModel
|
|
678
706
|
):
|
|
679
707
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -681,42 +709,14 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariab
|
|
|
681
709
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
682
710
|
|
|
683
711
|
|
|
684
|
-
class
|
|
712
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
713
|
+
BaseModel
|
|
714
|
+
):
|
|
685
715
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
686
716
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
687
717
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
688
718
|
|
|
689
719
|
|
|
690
|
-
class SubscriptionInvoiceFragment(BaseModel):
|
|
691
|
-
billing_id: str = Field(alias="billingId")
|
|
692
|
-
status: SubscriptionInvoiceStatus
|
|
693
|
-
created_at: Any = Field(alias="createdAt")
|
|
694
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
695
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
696
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
697
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
698
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
699
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
700
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
701
|
-
alias="billingReason", default=None
|
|
702
|
-
)
|
|
703
|
-
currency: Optional[str] = Field(default=None)
|
|
704
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
705
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
706
|
-
alias="subTotalExcludingTax", default=None
|
|
707
|
-
)
|
|
708
|
-
total: Optional[float] = Field(default=None)
|
|
709
|
-
total_excluding_tax: Optional[float] = Field(
|
|
710
|
-
alias="totalExcludingTax", default=None
|
|
711
|
-
)
|
|
712
|
-
tax: Optional[float] = Field(default=None)
|
|
713
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
class CustomerResourceFragment(BaseModel):
|
|
717
|
-
resource_id: str = Field(alias="resourceId")
|
|
718
|
-
|
|
719
|
-
|
|
720
720
|
class SubscriptionFragment(BaseModel):
|
|
721
721
|
id: str
|
|
722
722
|
subscription_id: str = Field(alias="subscriptionId")
|
|
@@ -986,35 +986,6 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
986
986
|
)
|
|
987
987
|
|
|
988
988
|
|
|
989
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
990
|
-
status: PromotionalEntitlementStatus
|
|
991
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
992
|
-
feature_id: str = Field(alias="featureId")
|
|
993
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
994
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
995
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
996
|
-
alias="resetPeriod", default=None
|
|
997
|
-
)
|
|
998
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
999
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1000
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1004
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1005
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1006
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1007
|
-
feature_units_plural: Optional[str] = Field(
|
|
1008
|
-
alias="featureUnitsPlural", default=None
|
|
1009
|
-
)
|
|
1010
|
-
display_name: str = Field(alias="displayName")
|
|
1011
|
-
description: Optional[str] = Field(default=None)
|
|
1012
|
-
ref_id: str = Field(alias="refId")
|
|
1013
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1014
|
-
alias="additionalMetaData", default=None
|
|
1015
|
-
)
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
989
|
class CouponFragment(BaseModel):
|
|
1019
990
|
id: str
|
|
1020
991
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1049,6 +1020,35 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1049
1020
|
status: SyncStatus
|
|
1050
1021
|
|
|
1051
1022
|
|
|
1023
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
1024
|
+
status: PromotionalEntitlementStatus
|
|
1025
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1026
|
+
feature_id: str = Field(alias="featureId")
|
|
1027
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1028
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1029
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1030
|
+
alias="resetPeriod", default=None
|
|
1031
|
+
)
|
|
1032
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1033
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1034
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1035
|
+
|
|
1036
|
+
|
|
1037
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1038
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1039
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1040
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1041
|
+
feature_units_plural: Optional[str] = Field(
|
|
1042
|
+
alias="featureUnitsPlural", default=None
|
|
1043
|
+
)
|
|
1044
|
+
display_name: str = Field(alias="displayName")
|
|
1045
|
+
description: Optional[str] = Field(default=None)
|
|
1046
|
+
ref_id: str = Field(alias="refId")
|
|
1047
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1048
|
+
alias="additionalMetaData", default=None
|
|
1049
|
+
)
|
|
1050
|
+
|
|
1051
|
+
|
|
1052
1052
|
class CustomerFragment(SlimCustomerFragment):
|
|
1053
1053
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1054
1054
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1249,6 +1249,40 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1249
1249
|
pass
|
|
1250
1250
|
|
|
1251
1251
|
|
|
1252
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1253
|
+
addon_id: str = Field(alias="addonId")
|
|
1254
|
+
description: Optional[str] = Field(default=None)
|
|
1255
|
+
display_name: str = Field(alias="displayName")
|
|
1256
|
+
quantity: int
|
|
1257
|
+
|
|
1258
|
+
|
|
1259
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1260
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1261
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1262
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1263
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1264
|
+
default=None
|
|
1265
|
+
)
|
|
1266
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1267
|
+
default=None
|
|
1268
|
+
)
|
|
1269
|
+
|
|
1270
|
+
|
|
1271
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1272
|
+
amount: float
|
|
1273
|
+
currency: Currency
|
|
1274
|
+
|
|
1275
|
+
|
|
1276
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1277
|
+
id: str
|
|
1278
|
+
ref_id: str = Field(alias="refId")
|
|
1279
|
+
display_name: str = Field(alias="displayName")
|
|
1280
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1281
|
+
feature_units_plural: Optional[str] = Field(
|
|
1282
|
+
alias="featureUnitsPlural", default=None
|
|
1283
|
+
)
|
|
1284
|
+
|
|
1285
|
+
|
|
1252
1286
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1253
1287
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1254
1288
|
alias="subscriptionScheduleType"
|
|
@@ -1418,40 +1452,6 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1418
1452
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1419
1453
|
|
|
1420
1454
|
|
|
1421
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1422
|
-
addon_id: str = Field(alias="addonId")
|
|
1423
|
-
description: Optional[str] = Field(default=None)
|
|
1424
|
-
display_name: str = Field(alias="displayName")
|
|
1425
|
-
quantity: int
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1429
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1430
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1431
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1432
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1433
|
-
default=None
|
|
1434
|
-
)
|
|
1435
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1436
|
-
default=None
|
|
1437
|
-
)
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1441
|
-
amount: float
|
|
1442
|
-
currency: Currency
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1446
|
-
id: str
|
|
1447
|
-
ref_id: str = Field(alias="refId")
|
|
1448
|
-
display_name: str = Field(alias="displayName")
|
|
1449
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1450
|
-
feature_units_plural: Optional[str] = Field(
|
|
1451
|
-
alias="featureUnitsPlural", default=None
|
|
1452
|
-
)
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
1455
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1456
1456
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1457
1457
|
plan_id: str = Field(alias="planId")
|
|
@@ -1785,39 +1785,6 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1785
1785
|
description: Optional[str] = Field(default=None)
|
|
1786
1786
|
|
|
1787
1787
|
|
|
1788
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1789
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1790
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1791
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1792
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1793
|
-
alias="resetPeriod", default=None
|
|
1794
|
-
)
|
|
1795
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1796
|
-
alias="hiddenFromWidgets", default=None
|
|
1797
|
-
)
|
|
1798
|
-
display_name_override: Optional[str] = Field(
|
|
1799
|
-
alias="displayNameOverride", default=None
|
|
1800
|
-
)
|
|
1801
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1802
|
-
default=None
|
|
1803
|
-
)
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1807
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1808
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1809
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1810
|
-
feature_units_plural: Optional[str] = Field(
|
|
1811
|
-
alias="featureUnitsPlural", default=None
|
|
1812
|
-
)
|
|
1813
|
-
display_name: str = Field(alias="displayName")
|
|
1814
|
-
description: Optional[str] = Field(default=None)
|
|
1815
|
-
ref_id: str = Field(alias="refId")
|
|
1816
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1817
|
-
alias="additionalMetaData", default=None
|
|
1818
|
-
)
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
1788
|
class MockPaywallPriceFragment(BaseModel):
|
|
1822
1789
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1823
1790
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1852,6 +1819,39 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1852
1819
|
display_name: str = Field(alias="displayName")
|
|
1853
1820
|
|
|
1854
1821
|
|
|
1822
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1823
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1824
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1825
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1826
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1827
|
+
alias="resetPeriod", default=None
|
|
1828
|
+
)
|
|
1829
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1830
|
+
alias="hiddenFromWidgets", default=None
|
|
1831
|
+
)
|
|
1832
|
+
display_name_override: Optional[str] = Field(
|
|
1833
|
+
alias="displayNameOverride", default=None
|
|
1834
|
+
)
|
|
1835
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1836
|
+
default=None
|
|
1837
|
+
)
|
|
1838
|
+
|
|
1839
|
+
|
|
1840
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1841
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1842
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1843
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1844
|
+
feature_units_plural: Optional[str] = Field(
|
|
1845
|
+
alias="featureUnitsPlural", default=None
|
|
1846
|
+
)
|
|
1847
|
+
display_name: str = Field(alias="displayName")
|
|
1848
|
+
description: Optional[str] = Field(default=None)
|
|
1849
|
+
ref_id: str = Field(alias="refId")
|
|
1850
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1851
|
+
alias="additionalMetaData", default=None
|
|
1852
|
+
)
|
|
1853
|
+
|
|
1854
|
+
|
|
1855
1855
|
class MockPaywallAddonFragment(BaseModel):
|
|
1856
1856
|
ref_id: str = Field(alias="refId")
|
|
1857
1857
|
display_name: str = Field(alias="displayName")
|
|
@@ -2762,21 +2762,21 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2762
2762
|
|
|
2763
2763
|
|
|
2764
2764
|
AddonDependencyFragment.model_rebuild()
|
|
2765
|
-
PackageEntitlementFragment.model_rebuild()
|
|
2766
2765
|
PriceTierFragment.model_rebuild()
|
|
2767
|
-
OveragePriceFragment.model_rebuild()
|
|
2768
2766
|
PriceFragment.model_rebuild()
|
|
2767
|
+
PackageEntitlementFragment.model_rebuild()
|
|
2768
|
+
OveragePriceFragment.model_rebuild()
|
|
2769
2769
|
AddonFragment.model_rebuild()
|
|
2770
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2771
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2772
|
+
CustomerResourceFragment.model_rebuild()
|
|
2770
2773
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2771
2774
|
ProductFragment.model_rebuild()
|
|
2772
2775
|
PlanFragment.model_rebuild()
|
|
2773
|
-
TotalPriceFragment.model_rebuild()
|
|
2774
|
-
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2775
2776
|
SlimCustomerFragment.model_rebuild()
|
|
2776
2777
|
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2777
|
-
|
|
2778
|
-
|
|
2779
|
-
CustomerResourceFragment.model_rebuild()
|
|
2778
|
+
TotalPriceFragment.model_rebuild()
|
|
2779
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2780
2780
|
SubscriptionFragment.model_rebuild()
|
|
2781
2781
|
FeatureFragment.model_rebuild()
|
|
2782
2782
|
EntitlementFragment.model_rebuild()
|
|
@@ -2784,16 +2784,16 @@ ApplySubscriptionFragment.model_rebuild()
|
|
|
2784
2784
|
FontVariantFragment.model_rebuild()
|
|
2785
2785
|
TypographyConfigurationFragment.model_rebuild()
|
|
2786
2786
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2787
|
-
PromotionalEntitlementFragment.model_rebuild()
|
|
2788
2787
|
CouponFragment.model_rebuild()
|
|
2788
|
+
PromotionalEntitlementFragment.model_rebuild()
|
|
2789
2789
|
CustomerFragment.model_rebuild()
|
|
2790
2790
|
CheckoutStateFragment.model_rebuild()
|
|
2791
2791
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2792
2792
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2793
2793
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2794
|
-
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2795
2794
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2796
2795
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2796
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2797
2797
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2798
2798
|
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2799
2799
|
CustomerPortalFragment.model_rebuild()
|
|
@@ -2805,8 +2805,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
2805
2805
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
2806
2806
|
LayoutConfigurationFragment.model_rebuild()
|
|
2807
2807
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
2808
|
-
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2809
2808
|
MockPaywallPriceFragment.model_rebuild()
|
|
2809
|
+
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2810
2810
|
MockPaywallAddonFragment.model_rebuild()
|
|
2811
2811
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2812
2812
|
MockPaywallPlanFragment.model_rebuild()
|
|
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=sAWkIRKUluDgemnIRIPpRnCf49mbnaTUKOc_OxDO3NY,3415
|
|
|
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=0SkJf-vjeOJH_Pf7Y5R3B8-0oXfnv-5nKZbEk5VFgO4,100553
|
|
127
127
|
stigg/generated/get_active_subscriptions.py,sha256=ngZ9jr8vzGI59wT8FhUFl46a8j9waoNjeZ1_lrcu2ww,513
|
|
128
128
|
stigg/generated/get_active_subscriptions_list.py,sha256=Awi9al2MXxdt_y7ZnWYZh8U3R9XiX50c7TyO4WZxyhw,541
|
|
129
129
|
stigg/generated/get_checkout_state.py,sha256=SAOXGAND879dwb7R5mr5LPZuPVuMUDwNR5M4mgmHv6w,409
|
|
@@ -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.298.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.298.0.dist-info/METADATA,sha256=l5HH2UA0DSOdDLl2sdfzzYeVxlr6MeB5mT2F7S7ftzw,2258
|
|
165
|
+
stigg_api_client_v2-2.298.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.298.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|