stigg-api-client-v2 2.497.0__py3-none-any.whl → 2.503.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/enums.py +2 -0
- stigg/generated/fragments.py +239 -239
- {stigg_api_client_v2-2.497.0.dist-info → stigg_api_client_v2-2.503.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.497.0.dist-info → stigg_api_client_v2-2.503.0.dist-info}/RECORD +6 -6
- {stigg_api_client_v2-2.497.0.dist-info → stigg_api_client_v2-2.503.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.497.0.dist-info → stigg_api_client_v2-2.503.0.dist-info}/WHEEL +0 -0
stigg/generated/enums.py
CHANGED
|
@@ -637,6 +637,8 @@ class EventLogType(str, Enum):
|
|
|
637
637
|
COUPON_CREATED = "COUPON_CREATED"
|
|
638
638
|
COUPON_UPDATED = "COUPON_UPDATED"
|
|
639
639
|
CREATE_SUBSCRIPTION_FAILED = "CREATE_SUBSCRIPTION_FAILED"
|
|
640
|
+
CREDITS_EXPIRED = "CREDITS_EXPIRED"
|
|
641
|
+
CREDITS_GRANTED = "CREDITS_GRANTED"
|
|
640
642
|
CUSTOMER_CREATED = "CUSTOMER_CREATED"
|
|
641
643
|
CUSTOMER_DELETED = "CUSTOMER_DELETED"
|
|
642
644
|
CUSTOMER_ENTITLEMENT_CALCULATION_TRIGGERED = (
|
stigg/generated/fragments.py
CHANGED
|
@@ -60,58 +60,6 @@ class AddonDependencyFragment(BaseModel):
|
|
|
60
60
|
description: Optional[str] = Field(default=None)
|
|
61
61
|
|
|
62
62
|
|
|
63
|
-
class PriceTierFragment(BaseModel):
|
|
64
|
-
up_to: Optional[float] = Field(alias="upTo", default=None)
|
|
65
|
-
unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
|
|
66
|
-
alias="unitPrice", default=None
|
|
67
|
-
)
|
|
68
|
-
flat_price: Optional["PriceTierFragmentFlatPrice"] = Field(
|
|
69
|
-
alias="flatPrice", default=None
|
|
70
|
-
)
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
class PriceTierFragmentUnitPrice(BaseModel):
|
|
74
|
-
amount: float
|
|
75
|
-
currency: Currency
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
class PriceTierFragmentFlatPrice(BaseModel):
|
|
79
|
-
amount: float
|
|
80
|
-
currency: Currency
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
class OveragePriceFragment(BaseModel):
|
|
84
|
-
billing_model: BillingModel = Field(alias="billingModel")
|
|
85
|
-
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
86
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
87
|
-
billing_country_code: Optional[str] = Field(
|
|
88
|
-
alias="billingCountryCode", default=None
|
|
89
|
-
)
|
|
90
|
-
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
91
|
-
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
92
|
-
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
93
|
-
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
class OveragePriceFragmentPrice(BaseModel):
|
|
97
|
-
amount: float
|
|
98
|
-
currency: Currency
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
102
|
-
pass
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
class OveragePriceFragmentFeature(BaseModel):
|
|
106
|
-
ref_id: str = Field(alias="refId")
|
|
107
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
108
|
-
feature_units_plural: Optional[str] = Field(
|
|
109
|
-
alias="featureUnitsPlural", default=None
|
|
110
|
-
)
|
|
111
|
-
display_name: str = Field(alias="displayName")
|
|
112
|
-
description: Optional[str] = Field(default=None)
|
|
113
|
-
|
|
114
|
-
|
|
115
63
|
class PackageEntitlementFragment(BaseModel):
|
|
116
64
|
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
117
65
|
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
@@ -146,6 +94,26 @@ class PackageEntitlementFragmentFeature(BaseModel):
|
|
|
146
94
|
)
|
|
147
95
|
|
|
148
96
|
|
|
97
|
+
class PriceTierFragment(BaseModel):
|
|
98
|
+
up_to: Optional[float] = Field(alias="upTo", default=None)
|
|
99
|
+
unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
|
|
100
|
+
alias="unitPrice", default=None
|
|
101
|
+
)
|
|
102
|
+
flat_price: Optional["PriceTierFragmentFlatPrice"] = Field(
|
|
103
|
+
alias="flatPrice", default=None
|
|
104
|
+
)
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
class PriceTierFragmentUnitPrice(BaseModel):
|
|
108
|
+
amount: float
|
|
109
|
+
currency: Currency
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
class PriceTierFragmentFlatPrice(BaseModel):
|
|
113
|
+
amount: float
|
|
114
|
+
currency: Currency
|
|
115
|
+
|
|
116
|
+
|
|
149
117
|
class PriceFragment(BaseModel):
|
|
150
118
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
151
119
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -182,6 +150,38 @@ class PriceFragmentFeature(BaseModel):
|
|
|
182
150
|
description: Optional[str] = Field(default=None)
|
|
183
151
|
|
|
184
152
|
|
|
153
|
+
class OveragePriceFragment(BaseModel):
|
|
154
|
+
billing_model: BillingModel = Field(alias="billingModel")
|
|
155
|
+
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
156
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
157
|
+
billing_country_code: Optional[str] = Field(
|
|
158
|
+
alias="billingCountryCode", default=None
|
|
159
|
+
)
|
|
160
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
161
|
+
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
162
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
163
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
167
|
+
amount: float
|
|
168
|
+
currency: Currency
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
172
|
+
pass
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
176
|
+
ref_id: str = Field(alias="refId")
|
|
177
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
178
|
+
feature_units_plural: Optional[str] = Field(
|
|
179
|
+
alias="featureUnitsPlural", default=None
|
|
180
|
+
)
|
|
181
|
+
display_name: str = Field(alias="displayName")
|
|
182
|
+
description: Optional[str] = Field(default=None)
|
|
183
|
+
|
|
184
|
+
|
|
185
185
|
class AddonFragment(BaseModel):
|
|
186
186
|
id: Any
|
|
187
187
|
ref_id: str = Field(alias="refId")
|
|
@@ -220,45 +220,49 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
220
220
|
pass
|
|
221
221
|
|
|
222
222
|
|
|
223
|
-
class
|
|
223
|
+
class CustomerResourceFragment(BaseModel):
|
|
224
|
+
resource_id: str = Field(alias="resourceId")
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
224
228
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
225
229
|
alias="subscriptionScheduleType"
|
|
226
230
|
)
|
|
227
231
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
228
232
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
229
|
-
target_package: Optional["
|
|
233
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
230
234
|
alias="targetPackage", default=None
|
|
231
235
|
)
|
|
232
236
|
schedule_variables: Optional[
|
|
233
237
|
Annotated[
|
|
234
238
|
Union[
|
|
235
|
-
"
|
|
236
|
-
"
|
|
237
|
-
"
|
|
238
|
-
"
|
|
239
|
-
"
|
|
240
|
-
"
|
|
241
|
-
"
|
|
242
|
-
"
|
|
239
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
240
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
241
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
242
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
243
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
244
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
245
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
246
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
243
247
|
],
|
|
244
248
|
Field(discriminator="typename__"),
|
|
245
249
|
]
|
|
246
250
|
] = Field(alias="scheduleVariables", default=None)
|
|
247
251
|
|
|
248
252
|
|
|
249
|
-
class
|
|
253
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
250
254
|
id: Any
|
|
251
255
|
ref_id: str = Field(alias="refId")
|
|
252
256
|
display_name: str = Field(alias="displayName")
|
|
253
257
|
|
|
254
258
|
|
|
255
|
-
class
|
|
259
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
256
260
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
257
261
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
258
262
|
new_quantity: float = Field(alias="newQuantity")
|
|
259
263
|
|
|
260
264
|
|
|
261
|
-
class
|
|
265
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
262
266
|
BaseModel
|
|
263
267
|
):
|
|
264
268
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -266,55 +270,53 @@ class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVa
|
|
|
266
270
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
267
271
|
|
|
268
272
|
|
|
269
|
-
class
|
|
273
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
270
274
|
BaseModel
|
|
271
275
|
):
|
|
272
276
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
273
277
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
274
278
|
|
|
275
279
|
|
|
276
|
-
class
|
|
280
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
277
281
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
278
282
|
|
|
279
283
|
|
|
280
|
-
class
|
|
281
|
-
BaseModel
|
|
282
|
-
):
|
|
284
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
283
285
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
284
286
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
285
287
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
286
288
|
billable_features: Optional[
|
|
287
289
|
List[
|
|
288
|
-
"
|
|
290
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
289
291
|
]
|
|
290
292
|
] = Field(alias="billableFeatures", default=None)
|
|
291
293
|
addons: Optional[
|
|
292
294
|
List[
|
|
293
|
-
"
|
|
295
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
294
296
|
]
|
|
295
297
|
] = Field(default=None)
|
|
296
298
|
price_overrides: Optional[
|
|
297
299
|
List[
|
|
298
|
-
"
|
|
300
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
299
301
|
]
|
|
300
302
|
] = Field(alias="priceOverrides", default=None)
|
|
301
303
|
|
|
302
304
|
|
|
303
|
-
class
|
|
305
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
304
306
|
BaseModel
|
|
305
307
|
):
|
|
306
308
|
feature_id: str = Field(alias="featureId")
|
|
307
309
|
quantity: float
|
|
308
310
|
|
|
309
311
|
|
|
310
|
-
class
|
|
312
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
311
313
|
BaseModel
|
|
312
314
|
):
|
|
313
315
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
314
316
|
quantity: float
|
|
315
317
|
|
|
316
318
|
|
|
317
|
-
class
|
|
319
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
318
320
|
BaseModel
|
|
319
321
|
):
|
|
320
322
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -322,43 +324,39 @@ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPr
|
|
|
322
324
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
323
325
|
|
|
324
326
|
|
|
325
|
-
class
|
|
327
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
326
328
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
327
329
|
plan_ref_id: str = Field(alias="planRefId")
|
|
328
330
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
329
331
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
330
332
|
billable_features: Optional[
|
|
331
333
|
List[
|
|
332
|
-
"
|
|
334
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
333
335
|
]
|
|
334
336
|
] = Field(alias="billableFeatures", default=None)
|
|
335
337
|
addons: Optional[
|
|
336
|
-
List[
|
|
337
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
338
|
-
]
|
|
338
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
339
339
|
] = Field(default=None)
|
|
340
340
|
price_overrides: Optional[
|
|
341
341
|
List[
|
|
342
|
-
"
|
|
342
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
343
343
|
]
|
|
344
344
|
] = Field(alias="priceOverrides", default=None)
|
|
345
345
|
|
|
346
346
|
|
|
347
|
-
class
|
|
347
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
348
348
|
BaseModel
|
|
349
349
|
):
|
|
350
350
|
feature_id: str = Field(alias="featureId")
|
|
351
351
|
quantity: float
|
|
352
352
|
|
|
353
353
|
|
|
354
|
-
class
|
|
355
|
-
BaseModel
|
|
356
|
-
):
|
|
354
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
357
355
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
358
356
|
quantity: float
|
|
359
357
|
|
|
360
358
|
|
|
361
|
-
class
|
|
359
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
362
360
|
BaseModel
|
|
363
361
|
):
|
|
364
362
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -366,7 +364,7 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOv
|
|
|
366
364
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
367
365
|
|
|
368
366
|
|
|
369
|
-
class
|
|
367
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
370
368
|
BaseModel
|
|
371
369
|
):
|
|
372
370
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -374,57 +372,51 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVar
|
|
|
374
372
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
375
373
|
|
|
376
374
|
|
|
377
|
-
class
|
|
378
|
-
BaseModel
|
|
379
|
-
):
|
|
375
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
380
376
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
381
377
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
382
378
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
383
379
|
|
|
384
380
|
|
|
385
|
-
class
|
|
386
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
class SubscriptionFutureUpdateData(BaseModel):
|
|
381
|
+
class SubscriptionScheduledUpdateData(BaseModel):
|
|
390
382
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
391
383
|
alias="subscriptionScheduleType"
|
|
392
384
|
)
|
|
393
385
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
394
386
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
395
|
-
target_package: Optional["
|
|
387
|
+
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
396
388
|
alias="targetPackage", default=None
|
|
397
389
|
)
|
|
398
390
|
schedule_variables: Optional[
|
|
399
391
|
Annotated[
|
|
400
392
|
Union[
|
|
401
|
-
"
|
|
402
|
-
"
|
|
403
|
-
"
|
|
404
|
-
"
|
|
405
|
-
"
|
|
406
|
-
"
|
|
407
|
-
"
|
|
408
|
-
"
|
|
393
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
394
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
395
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
396
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
397
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
398
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
399
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
400
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
409
401
|
],
|
|
410
402
|
Field(discriminator="typename__"),
|
|
411
403
|
]
|
|
412
404
|
] = Field(alias="scheduleVariables", default=None)
|
|
413
405
|
|
|
414
406
|
|
|
415
|
-
class
|
|
407
|
+
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
416
408
|
id: Any
|
|
417
409
|
ref_id: str = Field(alias="refId")
|
|
418
410
|
display_name: str = Field(alias="displayName")
|
|
419
411
|
|
|
420
412
|
|
|
421
|
-
class
|
|
413
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
422
414
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
423
415
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
424
416
|
new_quantity: float = Field(alias="newQuantity")
|
|
425
417
|
|
|
426
418
|
|
|
427
|
-
class
|
|
419
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
428
420
|
BaseModel
|
|
429
421
|
):
|
|
430
422
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -432,53 +424,55 @@ class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVaria
|
|
|
432
424
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
433
425
|
|
|
434
426
|
|
|
435
|
-
class
|
|
427
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
436
428
|
BaseModel
|
|
437
429
|
):
|
|
438
430
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
439
431
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
440
432
|
|
|
441
433
|
|
|
442
|
-
class
|
|
434
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
443
435
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
444
436
|
|
|
445
437
|
|
|
446
|
-
class
|
|
438
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
439
|
+
BaseModel
|
|
440
|
+
):
|
|
447
441
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
448
442
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
449
443
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
450
444
|
billable_features: Optional[
|
|
451
445
|
List[
|
|
452
|
-
"
|
|
446
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
453
447
|
]
|
|
454
448
|
] = Field(alias="billableFeatures", default=None)
|
|
455
449
|
addons: Optional[
|
|
456
450
|
List[
|
|
457
|
-
"
|
|
451
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
458
452
|
]
|
|
459
453
|
] = Field(default=None)
|
|
460
454
|
price_overrides: Optional[
|
|
461
455
|
List[
|
|
462
|
-
"
|
|
456
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
463
457
|
]
|
|
464
458
|
] = Field(alias="priceOverrides", default=None)
|
|
465
459
|
|
|
466
460
|
|
|
467
|
-
class
|
|
461
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
468
462
|
BaseModel
|
|
469
463
|
):
|
|
470
464
|
feature_id: str = Field(alias="featureId")
|
|
471
465
|
quantity: float
|
|
472
466
|
|
|
473
467
|
|
|
474
|
-
class
|
|
468
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
475
469
|
BaseModel
|
|
476
470
|
):
|
|
477
471
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
478
472
|
quantity: float
|
|
479
473
|
|
|
480
474
|
|
|
481
|
-
class
|
|
475
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
482
476
|
BaseModel
|
|
483
477
|
):
|
|
484
478
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -486,39 +480,43 @@ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPrice
|
|
|
486
480
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
487
481
|
|
|
488
482
|
|
|
489
|
-
class
|
|
483
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
490
484
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
491
485
|
plan_ref_id: str = Field(alias="planRefId")
|
|
492
486
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
493
487
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
494
488
|
billable_features: Optional[
|
|
495
489
|
List[
|
|
496
|
-
"
|
|
490
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
497
491
|
]
|
|
498
492
|
] = Field(alias="billableFeatures", default=None)
|
|
499
493
|
addons: Optional[
|
|
500
|
-
List[
|
|
494
|
+
List[
|
|
495
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
496
|
+
]
|
|
501
497
|
] = Field(default=None)
|
|
502
498
|
price_overrides: Optional[
|
|
503
499
|
List[
|
|
504
|
-
"
|
|
500
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
505
501
|
]
|
|
506
502
|
] = Field(alias="priceOverrides", default=None)
|
|
507
503
|
|
|
508
504
|
|
|
509
|
-
class
|
|
505
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
510
506
|
BaseModel
|
|
511
507
|
):
|
|
512
508
|
feature_id: str = Field(alias="featureId")
|
|
513
509
|
quantity: float
|
|
514
510
|
|
|
515
511
|
|
|
516
|
-
class
|
|
512
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
513
|
+
BaseModel
|
|
514
|
+
):
|
|
517
515
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
518
516
|
quantity: float
|
|
519
517
|
|
|
520
518
|
|
|
521
|
-
class
|
|
519
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
522
520
|
BaseModel
|
|
523
521
|
):
|
|
524
522
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -526,7 +524,7 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverr
|
|
|
526
524
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
527
525
|
|
|
528
526
|
|
|
529
|
-
class
|
|
527
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
530
528
|
BaseModel
|
|
531
529
|
):
|
|
532
530
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -534,30 +532,14 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariab
|
|
|
534
532
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
535
533
|
|
|
536
534
|
|
|
537
|
-
class
|
|
535
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
536
|
+
BaseModel
|
|
537
|
+
):
|
|
538
538
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
539
539
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
540
540
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
541
541
|
|
|
542
542
|
|
|
543
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
544
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
545
|
-
display_name: str = Field(alias="displayName")
|
|
546
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
547
|
-
default=None
|
|
548
|
-
)
|
|
549
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
553
|
-
pass
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
557
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
558
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
559
|
-
|
|
560
|
-
|
|
561
543
|
class ProductFragment(BaseModel):
|
|
562
544
|
ref_id: str = Field(alias="refId")
|
|
563
545
|
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
@@ -579,6 +561,24 @@ class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
|
579
561
|
display_name: str = Field(alias="displayName")
|
|
580
562
|
|
|
581
563
|
|
|
564
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
565
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
566
|
+
display_name: str = Field(alias="displayName")
|
|
567
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
568
|
+
default=None
|
|
569
|
+
)
|
|
570
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
571
|
+
|
|
572
|
+
|
|
573
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
574
|
+
pass
|
|
575
|
+
|
|
576
|
+
|
|
577
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
578
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
579
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
580
|
+
|
|
581
|
+
|
|
582
582
|
class PlanFragment(BaseModel):
|
|
583
583
|
id: Any
|
|
584
584
|
ref_id: str = Field(alias="refId")
|
|
@@ -660,25 +660,8 @@ class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
|
660
660
|
limit: float
|
|
661
661
|
|
|
662
662
|
|
|
663
|
-
class
|
|
664
|
-
|
|
665
|
-
name: Optional[str] = Field(default=None)
|
|
666
|
-
email: Optional[str] = Field(default=None)
|
|
667
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
668
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
669
|
-
ref_id: str = Field(alias="refId")
|
|
670
|
-
customer_id: str = Field(alias="customerId")
|
|
671
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
672
|
-
additional_meta_data: Optional[Any] = Field(
|
|
673
|
-
alias="additionalMetaData", default=None
|
|
674
|
-
)
|
|
675
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
676
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
677
|
-
)
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
class CustomerResourceFragment(BaseModel):
|
|
681
|
-
resource_id: str = Field(alias="resourceId")
|
|
663
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
664
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
682
665
|
|
|
683
666
|
|
|
684
667
|
class SubscriptionInvoiceFragment(BaseModel):
|
|
@@ -723,6 +706,23 @@ class TotalPriceFragmentTotal(BaseModel):
|
|
|
723
706
|
currency: Currency
|
|
724
707
|
|
|
725
708
|
|
|
709
|
+
class SlimCustomerFragment(BaseModel):
|
|
710
|
+
id: Any
|
|
711
|
+
name: Optional[str] = Field(default=None)
|
|
712
|
+
email: Optional[str] = Field(default=None)
|
|
713
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
714
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
715
|
+
ref_id: str = Field(alias="refId")
|
|
716
|
+
customer_id: str = Field(alias="customerId")
|
|
717
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
718
|
+
additional_meta_data: Optional[Any] = Field(
|
|
719
|
+
alias="additionalMetaData", default=None
|
|
720
|
+
)
|
|
721
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
722
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
723
|
+
)
|
|
724
|
+
|
|
725
|
+
|
|
726
726
|
class SubscriptionFragment(BaseModel):
|
|
727
727
|
id: Any
|
|
728
728
|
subscription_id: str = Field(alias="subscriptionId")
|
|
@@ -994,35 +994,6 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
994
994
|
)
|
|
995
995
|
|
|
996
996
|
|
|
997
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
998
|
-
status: PromotionalEntitlementStatus
|
|
999
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1000
|
-
feature_id: Any = Field(alias="featureId")
|
|
1001
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1002
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1003
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1004
|
-
alias="resetPeriod", default=None
|
|
1005
|
-
)
|
|
1006
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1007
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1008
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1012
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1013
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1014
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1015
|
-
feature_units_plural: Optional[str] = Field(
|
|
1016
|
-
alias="featureUnitsPlural", default=None
|
|
1017
|
-
)
|
|
1018
|
-
display_name: str = Field(alias="displayName")
|
|
1019
|
-
description: Optional[str] = Field(default=None)
|
|
1020
|
-
ref_id: str = Field(alias="refId")
|
|
1021
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1022
|
-
alias="additionalMetaData", default=None
|
|
1023
|
-
)
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
997
|
class CouponFragment(BaseModel):
|
|
1027
998
|
id: Any
|
|
1028
999
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1057,6 +1028,35 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1057
1028
|
status: SyncStatus
|
|
1058
1029
|
|
|
1059
1030
|
|
|
1031
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
1032
|
+
status: PromotionalEntitlementStatus
|
|
1033
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1034
|
+
feature_id: Any = Field(alias="featureId")
|
|
1035
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1036
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1037
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1038
|
+
alias="resetPeriod", default=None
|
|
1039
|
+
)
|
|
1040
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1041
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1042
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1043
|
+
|
|
1044
|
+
|
|
1045
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1046
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1047
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1048
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1049
|
+
feature_units_plural: Optional[str] = Field(
|
|
1050
|
+
alias="featureUnitsPlural", default=None
|
|
1051
|
+
)
|
|
1052
|
+
display_name: str = Field(alias="displayName")
|
|
1053
|
+
description: Optional[str] = Field(default=None)
|
|
1054
|
+
ref_id: str = Field(alias="refId")
|
|
1055
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1056
|
+
alias="additionalMetaData", default=None
|
|
1057
|
+
)
|
|
1058
|
+
|
|
1059
|
+
|
|
1060
1060
|
class CustomerFragment(SlimCustomerFragment):
|
|
1061
1061
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1062
1062
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1263,16 +1263,6 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1263
1263
|
pass
|
|
1264
1264
|
|
|
1265
1265
|
|
|
1266
|
-
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1267
|
-
display_name: str = Field(alias="displayName")
|
|
1268
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1269
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1270
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1271
|
-
period: PromotionalEntitlementPeriod
|
|
1272
|
-
start_date: Any = Field(alias="startDate")
|
|
1273
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
1266
|
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1277
1267
|
addon_id: str = Field(alias="addonId")
|
|
1278
1268
|
description: Optional[str] = Field(default=None)
|
|
@@ -1280,6 +1270,33 @@ class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
|
1280
1270
|
quantity: int
|
|
1281
1271
|
|
|
1282
1272
|
|
|
1273
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1274
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1275
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1276
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1277
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1278
|
+
default=None
|
|
1279
|
+
)
|
|
1280
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1281
|
+
default=None
|
|
1282
|
+
)
|
|
1283
|
+
|
|
1284
|
+
|
|
1285
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1286
|
+
amount: float
|
|
1287
|
+
currency: Currency
|
|
1288
|
+
|
|
1289
|
+
|
|
1290
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1291
|
+
id: Any
|
|
1292
|
+
ref_id: str = Field(alias="refId")
|
|
1293
|
+
display_name: str = Field(alias="displayName")
|
|
1294
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1295
|
+
feature_units_plural: Optional[str] = Field(
|
|
1296
|
+
alias="featureUnitsPlural", default=None
|
|
1297
|
+
)
|
|
1298
|
+
|
|
1299
|
+
|
|
1283
1300
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1284
1301
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1285
1302
|
alias="subscriptionScheduleType"
|
|
@@ -1449,33 +1466,6 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1449
1466
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1450
1467
|
|
|
1451
1468
|
|
|
1452
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1453
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1454
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1455
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1456
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1457
|
-
default=None
|
|
1458
|
-
)
|
|
1459
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1460
|
-
default=None
|
|
1461
|
-
)
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1465
|
-
amount: float
|
|
1466
|
-
currency: Currency
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1470
|
-
id: Any
|
|
1471
|
-
ref_id: str = Field(alias="refId")
|
|
1472
|
-
display_name: str = Field(alias="displayName")
|
|
1473
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1474
|
-
feature_units_plural: Optional[str] = Field(
|
|
1475
|
-
alias="featureUnitsPlural", default=None
|
|
1476
|
-
)
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
1469
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1480
1470
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1481
1471
|
plan_id: str = Field(alias="planId")
|
|
@@ -1572,6 +1562,16 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1572
1562
|
pass
|
|
1573
1563
|
|
|
1574
1564
|
|
|
1565
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1566
|
+
display_name: str = Field(alias="displayName")
|
|
1567
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1568
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1569
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1570
|
+
period: PromotionalEntitlementPeriod
|
|
1571
|
+
start_date: Any = Field(alias="startDate")
|
|
1572
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1573
|
+
|
|
1574
|
+
|
|
1575
1575
|
class CustomerPortalFragment(BaseModel):
|
|
1576
1576
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1577
1577
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -2840,21 +2840,21 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2840
2840
|
|
|
2841
2841
|
|
|
2842
2842
|
AddonDependencyFragment.model_rebuild()
|
|
2843
|
-
PriceTierFragment.model_rebuild()
|
|
2844
|
-
OveragePriceFragment.model_rebuild()
|
|
2845
2843
|
PackageEntitlementFragment.model_rebuild()
|
|
2844
|
+
PriceTierFragment.model_rebuild()
|
|
2846
2845
|
PriceFragment.model_rebuild()
|
|
2846
|
+
OveragePriceFragment.model_rebuild()
|
|
2847
2847
|
AddonFragment.model_rebuild()
|
|
2848
|
-
|
|
2849
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2848
|
+
CustomerResourceFragment.model_rebuild()
|
|
2850
2849
|
SubscriptionFutureUpdateData.model_rebuild()
|
|
2851
|
-
|
|
2850
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2852
2851
|
ProductFragment.model_rebuild()
|
|
2852
|
+
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2853
2853
|
PlanFragment.model_rebuild()
|
|
2854
|
-
|
|
2855
|
-
CustomerResourceFragment.model_rebuild()
|
|
2854
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2856
2855
|
SubscriptionInvoiceFragment.model_rebuild()
|
|
2857
2856
|
TotalPriceFragment.model_rebuild()
|
|
2857
|
+
SlimCustomerFragment.model_rebuild()
|
|
2858
2858
|
SubscriptionFragment.model_rebuild()
|
|
2859
2859
|
FeatureFragment.model_rebuild()
|
|
2860
2860
|
EntitlementFragment.model_rebuild()
|
|
@@ -2862,18 +2862,18 @@ ApplySubscriptionFragment.model_rebuild()
|
|
|
2862
2862
|
FontVariantFragment.model_rebuild()
|
|
2863
2863
|
TypographyConfigurationFragment.model_rebuild()
|
|
2864
2864
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2865
|
-
PromotionalEntitlementFragment.model_rebuild()
|
|
2866
2865
|
CouponFragment.model_rebuild()
|
|
2866
|
+
PromotionalEntitlementFragment.model_rebuild()
|
|
2867
2867
|
CustomerFragment.model_rebuild()
|
|
2868
2868
|
CheckoutStateFragment.model_rebuild()
|
|
2869
2869
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2870
2870
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2871
2871
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2872
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2873
2872
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2874
|
-
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2875
2873
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2874
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2876
2875
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2876
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2877
2877
|
CustomerPortalFragment.model_rebuild()
|
|
2878
2878
|
CustomerStatisticsFragment.model_rebuild()
|
|
2879
2879
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
|
@@ -119,11 +119,11 @@ stigg/generated/client.py,sha256=tGqbCewOFV2YP6igue7hQZghW3XraHyV0OXcoKfsssE,173
|
|
|
119
119
|
stigg/generated/create_subscription.py,sha256=vbpBJ_daXHcQDtvU3vbwSr2E7s4VGRHxqPavyTV3Mtk,457
|
|
120
120
|
stigg/generated/delegate_subscription_to_customer.py,sha256=0TgQDO0Hk-z7X7PGtqhvciqa8IjkToK9cpiX3Kqu_UY,561
|
|
121
121
|
stigg/generated/detach_customer_payment_method.py,sha256=ACXlC2xsGaUP723OrayFZQ9SbXxe8TtVUYdG1gqcYFc,523
|
|
122
|
-
stigg/generated/enums.py,sha256=
|
|
122
|
+
stigg/generated/enums.py,sha256=Q8Po8_Wmdxjpc5xevWh2mBx2SoemvHwq5jGyLn8QwUg,37296
|
|
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=wRGpQ_1WQWofoFqm4G_MvEcXncosLRuzVVGoMAMZB-g,103850
|
|
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
|
|
@@ -161,7 +161,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
|
|
|
161
161
|
stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
|
|
162
162
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
163
163
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
164
|
-
stigg_api_client_v2-2.
|
|
165
|
-
stigg_api_client_v2-2.
|
|
166
|
-
stigg_api_client_v2-2.
|
|
167
|
-
stigg_api_client_v2-2.
|
|
164
|
+
stigg_api_client_v2-2.503.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
165
|
+
stigg_api_client_v2-2.503.0.dist-info/METADATA,sha256=w5xNBVVtYDtqCQi0wvnSsP2deweJQhPr4cdt_WsrB3s,2258
|
|
166
|
+
stigg_api_client_v2-2.503.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
167
|
+
stigg_api_client_v2-2.503.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|